mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-03 20:12:58 +00:00
6c448b336a
This commit implements a unified Docker deployment strategy, moving from separate frontend and backend images to a single, multi-stage build image containing both services. It also introduces a major reorganization of the frontend directory structure and simplifies the environment configuration. Key changes: - **Deployment**: Added a multi-stage `Dockerfile` and `docker-entrypoint.sh` to package the Go backend and Nginx-served frontend into a single container. - **CI/CD**: Updated GitHub Actions workflows (`ci-cd.yml`, `release.yml`) to build and push the new unified image instead of separate ones. - **Frontend Refactor**: Reorganized `frontend/src/pages` into a domain-driven directory structure (e.g., `auth/`, `admin/`, `content/`, `communication/`, `productivity/`, `settings/`, `misc/`). - **Configuration**: Simplified `.env.example` and updated `docker-compose.yml` to reflect the unified service model and single host port. - **Cleanup**: Removed deprecated `docker-compose.demo.yml`, `docker-compose.prod.yml`, and various unused frontend components and services. - **Backend**: Refactored configuration loading to use exported `GetDurationEnv` for better consistency.
276 lines
1.8 MiB
Plaintext
276 lines
1.8 MiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>graphify - /home/tdvorak/Desktop/PROG+HTML/Trackeep/graphify-out/graph.html</title>
|
|
<script src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></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; gap: 6px; margin-bottom: 8px; }
|
|
#legend-controls button { flex: 1; background: #0f0f1a; border: 1px solid #3a3a5e; color: #aaa; padding: 4px 0; border-radius: 4px; font-size: 11px; cursor: pointer; }
|
|
#legend-controls button:hover { border-color: #4E79A7; color: #e0e0e0; }
|
|
</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">
|
|
<button onclick="toggleAllCommunities(false)">Show All</button>
|
|
<button onclick="toggleAllCommunities(true)">Hide All</button>
|
|
</div>
|
|
<div id="legend"></div>
|
|
</div>
|
|
<div id="stats">2549 nodes · 3694 edges · 221 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "browser_extension_background_js", "label": "background.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "background.js", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 14}, {"id": "browser_extension_background_storagesyncget", "label": "storageSyncGet()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "storageSyncGet()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_background_storagelocalget", "label": "storageLocalGet()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "storageLocalGet()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_background_storagelocalset", "label": "storageLocalSet()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "storageLocalSet()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_background_parseresponseerror", "label": "parseResponseError()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parseResponseError()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_background_parseyoutubevideometa", "label": "parseYouTubeVideoMeta()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parseYouTubeVideoMeta()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_background_cleanuphistory", "label": "cleanupHistory()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "cleanupHistory()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_background_getyoutubehistory", "label": "getYouTubeHistory()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getYouTubeHistory()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 4}, {"id": "browser_extension_background_updateyoutubehistory", "label": "updateYouTubeHistory()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "updateYouTubeHistory()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 6}, {"id": "browser_extension_background_gettrackeepconfig", "label": "getTrackeepConfig()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getTrackeepConfig()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 4}, {"id": "browser_extension_background_shouldpromptforyoutubevideo", "label": "shouldPromptForYouTubeVideo()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "shouldPromptForYouTubeVideo()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 4}, {"id": "browser_extension_background_saveyoutubebookmark", "label": "saveYouTubeBookmark()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "saveYouTubeBookmark()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 4}, {"id": "browser_extension_background_openpopupwithcontext", "label": "openPopupWithContext()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "openPopupWithContext()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_background_setcontextandopenpopup", "label": "setContextAndOpenPopup()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "setContextAndOpenPopup()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_background_detectcontenttype", "label": "detectContentType()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "detectContentType()", "community": 43, "community_name": "Community 43", "source_file": "browser-extension/background.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_popup_js", "label": "popup.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.1, "font": {"size": 12, "color": "#ffffff"}, "title": "popup.js", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 16}, {"id": "browser_extension_popup_inittabs", "label": "initTabs()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "initTabs()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_popup_updatestatus", "label": "updateStatus()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "updateStatus()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_popup_showmessage", "label": "showMessage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "showMessage()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 4}, {"id": "browser_extension_popup_hidemessage", "label": "hideMessage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "hideMessage()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_popup_setbuttonloading", "label": "setButtonLoading()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "setButtonLoading()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_popup_disableforms", "label": "disableForms()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "disableForms()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_popup_loadconfig", "label": "loadConfig()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadConfig()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_popup_detecttrackeepdomain", "label": "detectTrackeepDomain()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "detectTrackeepDomain()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_popup_initactivetab", "label": "initActiveTab()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "initActiveTab()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_popup_detectandapplysmartdata", "label": "detectAndApplySmartData()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "detectAndApplySmartData()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_popup_applysmartsuggestions", "label": "applySmartSuggestions()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "applySmartSuggestions()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_popup_addsuggestedtag", "label": "addSuggestedTag()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "addSuggestedTag()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_popup_handlequicksave", "label": "handleQuickSave()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "handleQuickSave()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_popup_savebookmark", "label": "saveBookmark()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "saveBookmark()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 5}, {"id": "browser_extension_popup_uploadfile", "label": "uploadFile()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "uploadFile()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 4}, {"id": "browser_extension_popup_openoptions", "label": "openOptions()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openOptions()", "community": 1, "community_name": "Community 1", "source_file": "browser-extension/popup.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_options_js", "label": "options.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "options.js", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 15}, {"id": "browser_extension_options_showmessage", "label": "showMessage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "showMessage()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 4}, {"id": "browser_extension_options_hidemessage", "label": "hideMessage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hideMessage()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_options_showconnectionstatus", "label": "showConnectionStatus()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "showConnectionStatus()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_options_hideconnectionstatus", "label": "hideConnectionStatus()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hideConnectionStatus()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_options_setbuttonloading", "label": "setButtonLoading()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "setButtonLoading()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_options_detectandprefillapibaseurl", "label": "detectAndPrefillApiBaseUrl()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "detectAndPrefillApiBaseUrl()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_options_loadsettings", "label": "loadSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadSettings()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_options_savesettings", "label": "saveSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "saveSettings()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_options_validateconnectiontoken", "label": "validateConnectionToken()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "validateConnectionToken()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_options_testconnection", "label": "testConnection()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "testConnection()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_options_generateapikey", "label": "generateApiKey()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateApiKey()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_options_testsetupconnection", "label": "testSetupConnection()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "testSetupConnection()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_options_completesetup", "label": "completeSetup()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "completeSetup()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_options_showsetupconnectionstatus", "label": "showSetupConnectionStatus()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "showSetupConnectionStatus()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_options_hidesetupconnectionstatus", "label": "hideSetupConnectionStatus()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hideSetupConnectionStatus()", "community": 38, "community_name": "Community 38", "source_file": "browser-extension/options.js", "file_type": "code", "degree": 1}, {"id": "browser_extension_youtube_content_js", "label": "youtube-content.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "youtube-content.js", "community": 63, "community_name": "Community 63", "source_file": "browser-extension/youtube-content.js", "file_type": "code", "degree": 7}, {"id": "browser_extension_youtube_content_parseyoutubevideo", "label": "parseYouTubeVideo()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parseYouTubeVideo()", "community": 63, "community_name": "Community 63", "source_file": "browser-extension/youtube-content.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_youtube_content_sendmessage", "label": "sendMessage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "sendMessage()", "community": 63, "community_name": "Community 63", "source_file": "browser-extension/youtube-content.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_youtube_content_closeprompt", "label": "closePrompt()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "closePrompt()", "community": 63, "community_name": "Community 63", "source_file": "browser-extension/youtube-content.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_youtube_content_renderprompt", "label": "renderPrompt()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "renderPrompt()", "community": 63, "community_name": "Community 63", "source_file": "browser-extension/youtube-content.js", "file_type": "code", "degree": 3}, {"id": "browser_extension_youtube_content_escapehtml", "label": "escapeHtml()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "escapeHtml()", "community": 63, "community_name": "Community 63", "source_file": "browser-extension/youtube-content.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_youtube_content_detectandnotify", "label": "detectAndNotify()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "detectAndNotify()", "community": 63, "community_name": "Community 63", "source_file": "browser-extension/youtube-content.js", "file_type": "code", "degree": 5}, {"id": "browser_extension_youtube_content_initdetection", "label": "initDetection()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "initDetection()", "community": 63, "community_name": "Community 63", "source_file": "browser-extension/youtube-content.js", "file_type": "code", "degree": 2}, {"id": "browser_extension_browser_polyfill_js", "label": "browser-polyfill.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "browser-polyfill.js", "community": 166, "community_name": "Community 166", "source_file": "browser-extension/browser-polyfill.js", "file_type": "code", "degree": 0}, {"id": "mobile_index_ts", "label": "index.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 167, "community_name": "Community 167", "source_file": "mobile/index.ts", "file_type": "code", "degree": 0}, {"id": "mobile_app_tsx", "label": "App.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "App.tsx", "community": 168, "community_name": "Community 168", "source_file": "mobile/App.tsx", "file_type": "code", "degree": 0}, {"id": "mobile_src_types_ts", "label": "types.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "types.ts", "community": 169, "community_name": "Community 169", "source_file": "mobile/src/types.ts", "file_type": "code", "degree": 0}, {"id": "mobile_src_screens_maintabs_tsx", "label": "MainTabs.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MainTabs.tsx", "community": 170, "community_name": "Community 170", "source_file": "mobile/src/screens/MainTabs.tsx", "file_type": "code", "degree": 0}, {"id": "mobile_src_screens_tasksscreen_tsx", "label": "TasksScreen.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TasksScreen.tsx", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/TasksScreen.tsx", "file_type": "code", "degree": 3}, {"id": "screens_tasksscreen_createtask", "label": "createTask()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createTask()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/TasksScreen.tsx", "file_type": "code", "degree": 2}, {"id": "screens_tasksscreen_toggletaskstatus", "label": "toggleTaskStatus()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleTaskStatus()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/TasksScreen.tsx", "file_type": "code", "degree": 2}, {"id": "screens_tasksscreen_deletetask", "label": "deleteTask()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteTask()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/TasksScreen.tsx", "file_type": "code", "degree": 2}, {"id": "mobile_src_screens_notesscreen_tsx", "label": "NotesScreen.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NotesScreen.tsx", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/NotesScreen.tsx", "file_type": "code", "degree": 4}, {"id": "screens_notesscreen_resetform", "label": "resetForm()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "resetForm()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/NotesScreen.tsx", "file_type": "code", "degree": 3}, {"id": "screens_notesscreen_savenote", "label": "saveNote()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "saveNote()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/NotesScreen.tsx", "file_type": "code", "degree": 3}, {"id": "screens_notesscreen_beginedit", "label": "beginEdit()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "beginEdit()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/NotesScreen.tsx", "file_type": "code", "degree": 1}, {"id": "screens_notesscreen_deletenote", "label": "deleteNote()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteNote()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/NotesScreen.tsx", "file_type": "code", "degree": 3}, {"id": "mobile_src_screens_settingsscreen_tsx", "label": "SettingsScreen.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingsScreen.tsx", "community": 127, "community_name": "Community 127", "source_file": "mobile/src/screens/SettingsScreen.tsx", "file_type": "code", "degree": 1}, {"id": "screens_settingsscreen_settingsscreen", "label": "SettingsScreen()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingsScreen()", "community": 127, "community_name": "Community 127", "source_file": "mobile/src/screens/SettingsScreen.tsx", "file_type": "code", "degree": 1}, {"id": "mobile_src_screens_webappscreen_tsx", "label": "WebAppScreen.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "WebAppScreen.tsx", "community": 30, "community_name": "Community 30", "source_file": "mobile/src/screens/WebAppScreen.tsx", "file_type": "code", "degree": 8}, {"id": "screens_webappscreen_isinternalurl", "label": "isInternalUrl()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isInternalUrl()", "community": 30, "community_name": "Community 30", "source_file": "mobile/src/screens/WebAppScreen.tsx", "file_type": "code", "degree": 1}, {"id": "screens_webappscreen_pathfromurl", "label": "pathFromUrl()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pathFromUrl()", "community": 30, "community_name": "Community 30", "source_file": "mobile/src/screens/WebAppScreen.tsx", "file_type": "code", "degree": 1}, {"id": "screens_webappscreen_toabsolute", "label": "toAbsolute()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toAbsolute()", "community": 30, "community_name": "Community 30", "source_file": "mobile/src/screens/WebAppScreen.tsx", "file_type": "code", "degree": 1}, {"id": "screens_webappscreen_isgenericsharetitle", "label": "isGenericShareTitle()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isGenericShareTitle()", "community": 30, "community_name": "Community 30", "source_file": "mobile/src/screens/WebAppScreen.tsx", "file_type": "code", "degree": 1}, {"id": "screens_webappscreen_uniquefiles", "label": "uniqueFiles()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "uniqueFiles()", "community": 30, "community_name": "Community 30", "source_file": "mobile/src/screens/WebAppScreen.tsx", "file_type": "code", "degree": 1}, {"id": "screens_webappscreen_savebookmark", "label": "saveBookmark()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "saveBookmark()", "community": 30, "community_name": "Community 30", "source_file": "mobile/src/screens/WebAppScreen.tsx", "file_type": "code", "degree": 3}, {"id": "screens_webappscreen_uploadincomingfiles", "label": "uploadIncomingFiles()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "uploadIncomingFiles()", "community": 30, "community_name": "Community 30", "source_file": "mobile/src/screens/WebAppScreen.tsx", "file_type": "code", "degree": 1}, {"id": "screens_webappscreen_submitmanualshare", "label": "submitManualShare()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "submitManualShare()", "community": 30, "community_name": "Community 30", "source_file": "mobile/src/screens/WebAppScreen.tsx", "file_type": "code", "degree": 3}, {"id": "mobile_src_screens_filesscreen_tsx", "label": "FilesScreen.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FilesScreen.tsx", "community": 128, "community_name": "Community 128", "source_file": "mobile/src/screens/FilesScreen.tsx", "file_type": "code", "degree": 1}, {"id": "screens_filesscreen_filesscreen", "label": "FilesScreen()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FilesScreen()", "community": 128, "community_name": "Community 128", "source_file": "mobile/src/screens/FilesScreen.tsx", "file_type": "code", "degree": 1}, {"id": "mobile_src_screens_connectionsetupscreen_tsx", "label": "ConnectionSetupScreen.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ConnectionSetupScreen.tsx", "community": 8, "community_name": "Community 8", "source_file": "mobile/src/screens/ConnectionSetupScreen.tsx", "file_type": "code", "degree": 1}, {"id": "screens_connectionsetupscreen_connectionsetupscreen", "label": "ConnectionSetupScreen()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ConnectionSetupScreen()", "community": 8, "community_name": "Community 8", "source_file": "mobile/src/screens/ConnectionSetupScreen.tsx", "file_type": "code", "degree": 2}, {"id": "mobile_src_screens_timeentriesscreen_tsx", "label": "TimeEntriesScreen.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TimeEntriesScreen.tsx", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/TimeEntriesScreen.tsx", "file_type": "code", "degree": 4}, {"id": "screens_timeentriesscreen_resolvedurationseconds", "label": "resolveDurationSeconds()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveDurationSeconds()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/TimeEntriesScreen.tsx", "file_type": "code", "degree": 1}, {"id": "screens_timeentriesscreen_startentry", "label": "startEntry()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "startEntry()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/TimeEntriesScreen.tsx", "file_type": "code", "degree": 2}, {"id": "screens_timeentriesscreen_stopentry", "label": "stopEntry()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "stopEntry()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/TimeEntriesScreen.tsx", "file_type": "code", "degree": 2}, {"id": "screens_timeentriesscreen_deleteentry", "label": "deleteEntry()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteEntry()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/screens/TimeEntriesScreen.tsx", "file_type": "code", "degree": 2}, {"id": "mobile_src_screens_authscreen_tsx", "label": "AuthScreen.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthScreen.tsx", "community": 129, "community_name": "Community 129", "source_file": "mobile/src/screens/AuthScreen.tsx", "file_type": "code", "degree": 1}, {"id": "screens_authscreen_authscreen", "label": "AuthScreen()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthScreen()", "community": 129, "community_name": "Community 129", "source_file": "mobile/src/screens/AuthScreen.tsx", "file_type": "code", "degree": 1}, {"id": "mobile_src_components_ui_tsx", "label": "UI.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UI.tsx", "community": 94, "community_name": "Community 94", "source_file": "mobile/src/components/UI.tsx", "file_type": "code", "degree": 3}, {"id": "components_ui_screenshell", "label": "ScreenShell()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScreenShell()", "community": 94, "community_name": "Community 94", "source_file": "mobile/src/components/UI.tsx", "file_type": "code", "degree": 1}, {"id": "components_ui_sectioncard", "label": "SectionCard()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SectionCard()", "community": 94, "community_name": "Community 94", "source_file": "mobile/src/components/UI.tsx", "file_type": "code", "degree": 1}, {"id": "components_ui_errortext", "label": "ErrorText()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorText()", "community": 94, "community_name": "Community 94", "source_file": "mobile/src/components/UI.tsx", "file_type": "code", "degree": 1}, {"id": "mobile_src_context_appcontext_tsx", "label": "AppContext.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AppContext.tsx", "community": 84, "community_name": "Community 84", "source_file": "mobile/src/context/AppContext.tsx", "file_type": "code", "degree": 4}, {"id": "context_appcontext_savetoken", "label": "saveToken()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "saveToken()", "community": 84, "community_name": "Community 84", "source_file": "mobile/src/context/AppContext.tsx", "file_type": "code", "degree": 1}, {"id": "context_appcontext_loadtoken", "label": "loadToken()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadToken()", "community": 84, "community_name": "Community 84", "source_file": "mobile/src/context/AppContext.tsx", "file_type": "code", "degree": 1}, {"id": "context_appcontext_cleartoken", "label": "clearToken()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clearToken()", "community": 84, "community_name": "Community 84", "source_file": "mobile/src/context/AppContext.tsx", "file_type": "code", "degree": 1}, {"id": "context_appcontext_appprovider", "label": "AppProvider()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AppProvider()", "community": 84, "community_name": "Community 84", "source_file": "mobile/src/context/AppContext.tsx", "file_type": "code", "degree": 1}, {"id": "mobile_src_lib_format_ts", "label": "format.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "format.ts", "community": 85, "community_name": "Community 85", "source_file": "mobile/src/lib/format.ts", "file_type": "code", "degree": 4}, {"id": "lib_format_formatdate", "label": "formatDate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDate()", "community": 85, "community_name": "Community 85", "source_file": "mobile/src/lib/format.ts", "file_type": "code", "degree": 1}, {"id": "lib_format_formatduration", "label": "formatDuration()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDuration()", "community": 85, "community_name": "Community 85", "source_file": "mobile/src/lib/format.ts", "file_type": "code", "degree": 1}, {"id": "lib_format_formatfilesize", "label": "formatFileSize()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatFileSize()", "community": 85, "community_name": "Community 85", "source_file": "mobile/src/lib/format.ts", "file_type": "code", "degree": 1}, {"id": "lib_format_tagstotext", "label": "tagsToText()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tagsToText()", "community": 85, "community_name": "Community 85", "source_file": "mobile/src/lib/format.ts", "file_type": "code", "degree": 1}, {"id": "mobile_src_lib_api_ts", "label": "api.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "api.ts", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/lib/api.ts", "file_type": "code", "degree": 4}, {"id": "lib_api_parseresponse", "label": "parseResponse()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "parseResponse()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/lib/api.ts", "file_type": "code", "degree": 3}, {"id": "lib_api_parseerror", "label": "parseError()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "parseError()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/lib/api.ts", "file_type": "code", "degree": 3}, {"id": "lib_api_request", "label": "request()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "request()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/lib/api.ts", "file_type": "code", "degree": 4}, {"id": "lib_api_requestpublic", "label": "requestPublic()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "requestPublic()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/lib/api.ts", "file_type": "code", "degree": 3}, {"id": "mobile_src_lib_url_ts", "label": "url.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "url.ts", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/lib/url.ts", "file_type": "code", "degree": 3}, {"id": "lib_url_hasprotocol", "label": "hasProtocol()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hasProtocol()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/lib/url.ts", "file_type": "code", "degree": 2}, {"id": "lib_url_normalizeinstanceurl", "label": "normalizeInstanceUrl()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeInstanceUrl()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/lib/url.ts", "file_type": "code", "degree": 3}, {"id": "lib_url_getapibaseurl", "label": "getApiBaseUrl()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getApiBaseUrl()", "community": 7, "community_name": "Community 7", "source_file": "mobile/src/lib/url.ts", "file_type": "code", "degree": 5}, {"id": "mobile_src_lib_share_ts", "label": "share.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "share.ts", "community": 66, "community_name": "Community 66", "source_file": "mobile/src/lib/share.ts", "file_type": "code", "degree": 6}, {"id": "lib_share_firsturlfromtext", "label": "firstUrlFromText()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "firstUrlFromText()", "community": 66, "community_name": "Community 66", "source_file": "mobile/src/lib/share.ts", "file_type": "code", "degree": 2}, {"id": "lib_share_firstcandidatetitlefromtext", "label": "firstCandidateTitleFromText()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "firstCandidateTitleFromText()", "community": 66, "community_name": "Community 66", "source_file": "mobile/src/lib/share.ts", "file_type": "code", "degree": 2}, {"id": "lib_share_normalizeurl", "label": "normalizeUrl()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeUrl()", "community": 66, "community_name": "Community 66", "source_file": "mobile/src/lib/share.ts", "file_type": "code", "degree": 2}, {"id": "lib_share_titlefromurl", "label": "titleFromUrl()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "titleFromUrl()", "community": 66, "community_name": "Community 66", "source_file": "mobile/src/lib/share.ts", "file_type": "code", "degree": 2}, {"id": "lib_share_buildsharedraft", "label": "buildShareDraft()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildShareDraft()", "community": 66, "community_name": "Community 66", "source_file": "mobile/src/lib/share.ts", "file_type": "code", "degree": 5}, {"id": "lib_share_lookslikeyoutube", "label": "looksLikeYouTube()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "looksLikeYouTube()", "community": 66, "community_name": "Community 66", "source_file": "mobile/src/lib/share.ts", "file_type": "code", "degree": 1}, {"id": "backend_main_go", "label": "main.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main.go", "community": 3, "community_name": "Community 3", "source_file": "backend/main.go", "file_type": "code", "degree": 4}, {"id": "backend_main_isdemomode", "label": "IsDemoMode()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsDemoMode()", "community": 3, "community_name": "Community 3", "source_file": "backend/main.go", "file_type": "code", "degree": 1}, {"id": "backend_main_initializesecuritysecrets", "label": "initializeSecuritySecrets()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "initializeSecuritySecrets()", "community": 12, "community_name": "Community 12", "source_file": "backend/main.go", "file_type": "code", "degree": 4}, {"id": "backend_main_initializedragonflydb", "label": "initializeDragonflyDB()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "initializeDragonflyDB()", "community": 3, "community_name": "Community 3", "source_file": "backend/main.go", "file_type": "code", "degree": 2}, {"id": "backend_main_main", "label": "main()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 22.9, "font": {"size": 12, "color": "#ffffff"}, "title": "main()", "community": 3, "community_name": "Community 3", "source_file": "backend/main.go", "file_type": "code", "degree": 41}, {"id": "backend_seed_go", "label": "seed.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "seed.go", "community": 4, "community_name": "Community 4", "source_file": "backend/seed.go", "file_type": "code", "degree": 1}, {"id": "backend_seed_seeddata", "label": "SeedData()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SeedData()", "community": 4, "community_name": "Community 4", "source_file": "backend/seed.go", "file_type": "code", "degree": 2}, {"id": "backend_examples_user_service_example_go", "label": "user_service_example.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "user_service_example.go", "community": 67, "community_name": "Community 67", "source_file": "backend/examples/user_service_example.go", "file_type": "code", "degree": 2}, {"id": "examples_userserviceexample", "label": "UserServiceExample", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UserServiceExample", "community": 67, "community_name": "Community 67", "source_file": "backend/examples/user_service_example.go", "file_type": "code", "degree": 5}, {"id": "examples_user_service_example_newuserserviceexample", "label": "NewUserServiceExample()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewUserServiceExample()", "community": 67, "community_name": "Community 67", "source_file": "backend/examples/user_service_example.go", "file_type": "code", "degree": 1}, {"id": "examples_userserviceexample_createuserexample", "label": ".CreateUserExample()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateUserExample()", "community": 67, "community_name": "Community 67", "source_file": "backend/examples/user_service_example.go", "file_type": "code", "degree": 1}, {"id": "examples_userserviceexample_getuserexample", "label": ".GetUserExample()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetUserExample()", "community": 67, "community_name": "Community 67", "source_file": "backend/examples/user_service_example.go", "file_type": "code", "degree": 1}, {"id": "examples_userserviceexample_searchusersexample", "label": ".SearchUsersExample()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".SearchUsersExample()", "community": 67, "community_name": "Community 67", "source_file": "backend/examples/user_service_example.go", "file_type": "code", "degree": 1}, {"id": "examples_userserviceexample_transactionexample", "label": ".TransactionExample()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".TransactionExample()", "community": 67, "community_name": "Community 67", "source_file": "backend/examples/user_service_example.go", "file_type": "code", "degree": 1}, {"id": "backend_tools_favicon_cli_go", "label": "favicon_cli.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "favicon_cli.go", "community": 26, "community_name": "Community 26", "source_file": "backend/tools/favicon_cli.go", "file_type": "code", "degree": 1}, {"id": "tools_favicon_cli_main", "label": "main()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 26, "community_name": "Community 26", "source_file": "backend/tools/favicon_cli.go", "file_type": "code", "degree": 3}, {"id": "backend_services_youtube_channels_go", "label": "youtube_channels.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "youtube_channels.go", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 11}, {"id": "services_youtubechannelservice", "label": "YouTubeChannelService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeChannelService", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 4}, {"id": "services_youtube_channels_newyoutubechannelservice", "label": "NewYouTubeChannelService()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewYouTubeChannelService()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 4}, {"id": "services_youtube_channels_getpredefinedchannels", "label": "GetPredefinedChannels()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetPredefinedChannels()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 2}, {"id": "services_channel", "label": "Channel", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Channel", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 1}, {"id": "services_youtubechannelservice_getfireshipvideos", "label": ".GetFireshipVideos()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetFireshipVideos()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 1}, {"id": "services_youtubechannelservice_getnetworkchuckvideos", "label": ".GetNetworkChuckVideos()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetNetworkChuckVideos()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 1}, {"id": "services_youtubechannelservice_getchannelinfo", "label": ".GetChannelInfo()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetChannelInfo()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 2}, {"id": "services_channelinfo", "label": "ChannelInfo", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ChannelInfo", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 1}, {"id": "services_youtube_channels_parseyoutubeduration", "label": "parseYouTubeDuration()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "parseYouTubeDuration()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 1}, {"id": "services_youtube_channels_containsignorecase", "label": "containsIgnoreCase()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "containsIgnoreCase()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 2}, {"id": "services_youtube_channels_containssubstringignorecase", "label": "containsSubstringIgnoreCase()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "containsSubstringIgnoreCase()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 4}, {"id": "services_youtube_channels_tolower", "label": "toLower()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.7, "font": {"size": 12, "color": "#ffffff"}, "title": "toLower()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 34}, {"id": "services_youtube_channels_contains", "label": "contains()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 23.3, "font": {"size": 12, "color": "#ffffff"}, "title": "contains()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 42}, {"id": "services_youtube_channels_isrecentvideo", "label": "isRecentVideo()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isRecentVideo()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_channels.go", "file_type": "code", "degree": 1}, {"id": "backend_services_message_detector_go", "label": "message_detector.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "message_detector.go", "community": 1, "community_name": "Community 1", "source_file": "backend/services/message_detector.go", "file_type": "code", "degree": 4}, {"id": "services_detectedsuggestion", "label": "DetectedSuggestion", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DetectedSuggestion", "community": 1, "community_name": "Community 1", "source_file": "backend/services/message_detector.go", "file_type": "code", "degree": 1}, {"id": "services_detectedattachment", "label": "DetectedAttachment", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DetectedAttachment", "community": 1, "community_name": "Community 1", "source_file": "backend/services/message_detector.go", "file_type": "code", "degree": 1}, {"id": "services_message_detector_detectmessagecontent", "label": "DetectMessageContent()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DetectMessageContent()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/message_detector.go", "file_type": "code", "degree": 8}, {"id": "services_message_detector_buildcompacttitle", "label": "buildCompactTitle()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildCompactTitle()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/message_detector.go", "file_type": "code", "degree": 2}, {"id": "backend_services_youtube_cache_go", "label": "youtube_cache.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "youtube_cache.go", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube_cache.go", "file_type": "code", "degree": 3}, {"id": "services_youtubecacheservice", "label": "YouTubeCacheService", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeCacheService", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube_cache.go", "file_type": "code", "degree": 5}, {"id": "services_cacheentry", "label": "CacheEntry", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CacheEntry", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube_cache.go", "file_type": "code", "degree": 1}, {"id": "services_youtube_cache_newyoutubecacheservice", "label": "NewYouTubeCacheService()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewYouTubeCacheService()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube_cache.go", "file_type": "code", "degree": 4}, {"id": "services_youtubecacheservice_getcachedchannelvideos", "label": ".GetCachedChannelVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetCachedChannelVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube_cache.go", "file_type": "code", "degree": 2}, {"id": "services_youtubecacheservice_getinmemorycachedvideos", "label": ".getInMemoryCachedVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getInMemoryCachedVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube_cache.go", "file_type": "code", "degree": 2}, {"id": "services_youtubecacheservice_fetchandcachevideos", "label": ".fetchAndCacheVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetchAndCacheVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube_cache.go", "file_type": "code", "degree": 5}, {"id": "services_youtubecacheservice_clearexpiredcache", "label": ".ClearExpiredCache()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ClearExpiredCache()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube_cache.go", "file_type": "code", "degree": 1}, {"id": "backend_services_favicon_fetcher_go", "label": "favicon_fetcher.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "favicon_fetcher.go", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 5}, {"id": "services_faviconfetcher", "label": "FaviconFetcher", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FaviconFetcher", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 10}, {"id": "services_favicon_fetcher_newfaviconfetcher", "label": "NewFaviconFetcher()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "NewFaviconFetcher()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 7}, {"id": "services_faviconfetcher_fetchfavicon", "label": ".FetchFavicon()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".FetchFavicon()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 6}, {"id": "services_faviconfetcher_extractfromhtml", "label": ".extractFromHTML()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractFromHTML()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 5}, {"id": "services_faviconfetcher_extractheadsection", "label": ".extractHeadSection()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractHeadSection()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 2}, {"id": "services_faviconfetcher_findfaviconinhead", "label": ".findFaviconInHead()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findFaviconInHead()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 3}, {"id": "services_faviconfetcher_makeabsoluteurl", "label": ".makeAbsoluteURL()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".makeAbsoluteURL()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 2}, {"id": "services_faviconfetcher_trycommonlocations", "label": ".tryCommonLocations()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".tryCommonLocations()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 3}, {"id": "services_faviconfetcher_verifyfaviconexists", "label": ".verifyFaviconExists()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".verifyFaviconExists()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 4}, {"id": "services_faviconfetcher_getgooglefavicon", "label": ".getGoogleFavicon()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getGoogleFavicon()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 3}, {"id": "services_faviconfetcher_fetchmultiplefavicons", "label": ".FetchMultipleFavicons()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".FetchMultipleFavicons()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 6}, {"id": "services_favicon_fetcher_containsstring", "label": "containsString()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "containsString()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 2}, {"id": "services_favicon_fetcher_getfavicon", "label": "GetFavicon()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetFavicon()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 3}, {"id": "services_favicon_fetcher_getallfavicons", "label": "GetAllFavicons()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetAllFavicons()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher.go", "file_type": "code", "degree": 2}, {"id": "backend_services_performance_go", "label": "performance.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "performance.go", "community": 3, "community_name": "Community 3", "source_file": "backend/services/performance.go", "file_type": "code", "degree": 2}, {"id": "services_performanceservice", "label": "PerformanceService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PerformanceService", "community": 3, "community_name": "Community 3", "source_file": "backend/services/performance.go", "file_type": "code", "degree": 9}, {"id": "services_performance_newperformanceservice", "label": "NewPerformanceService()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewPerformanceService()", "community": 3, "community_name": "Community 3", "source_file": "backend/services/performance.go", "file_type": "code", "degree": 2}, {"id": "services_performanceservice_optimizedatabase", "label": ".OptimizeDatabase()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".OptimizeDatabase()", "community": 3, "community_name": "Community 3", "source_file": "backend/services/performance.go", "file_type": "code", "degree": 1}, {"id": "services_performanceservice_cleanupoldauditlogs", "label": ".CleanupOldAuditLogs()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CleanupOldAuditLogs()", "community": 3, "community_name": "Community 3", "source_file": "backend/services/performance.go", "file_type": "code", "degree": 1}, {"id": "services_performanceservice_getdatabasestats", "label": ".GetDatabaseStats()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetDatabaseStats()", "community": 3, "community_name": "Community 3", "source_file": "backend/services/performance.go", "file_type": "code", "degree": 1}, {"id": "services_performanceservice_optimizequeries", "label": ".OptimizeQueries()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".OptimizeQueries()", "community": 3, "community_name": "Community 3", "source_file": "backend/services/performance.go", "file_type": "code", "degree": 1}, {"id": "services_performanceservice_monitorperformance", "label": ".MonitorPerformance()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".MonitorPerformance()", "community": 3, "community_name": "Community 3", "source_file": "backend/services/performance.go", "file_type": "code", "degree": 1}, {"id": "services_performanceservice_warmupcache", "label": ".WarmupCache()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".WarmupCache()", "community": 3, "community_name": "Community 3", "source_file": "backend/services/performance.go", "file_type": "code", "degree": 1}, {"id": "services_performanceservice_clearcache", "label": ".ClearCache()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ClearCache()", "community": 3, "community_name": "Community 3", "source_file": "backend/services/performance.go", "file_type": "code", "degree": 1}, {"id": "services_performanceservice_getcachestats", "label": ".GetCacheStats()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetCacheStats()", "community": 3, "community_name": "Community 3", "source_file": "backend/services/performance.go", "file_type": "code", "degree": 1}, {"id": "backend_services_ai_recommendation_service_go", "label": "ai_recommendation_service.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ai_recommendation_service.go", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 4}, {"id": "services_airecommendationservice", "label": "AIRecommendationService", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "AIRecommendationService", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 15}, {"id": "services_ai_recommendation_service_newairecommendationservice", "label": "NewAIRecommendationService()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewAIRecommendationService()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 2}, {"id": "services_recommendationrequest", "label": "RecommendationRequest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RecommendationRequest", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 1}, {"id": "services_recommendationscore", "label": "RecommendationScore", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RecommendationScore", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 1}, {"id": "services_airecommendationservice_getrecommendations", "label": ".GetRecommendations()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetRecommendations()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 6}, {"id": "services_airecommendationservice_generatecontentrecommendations", "label": ".generateContentRecommendations()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateContentRecommendations()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 7}, {"id": "services_airecommendationservice_generatetaskrecommendations", "label": ".generateTaskRecommendations()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateTaskRecommendations()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 3}, {"id": "services_airecommendationservice_generatelearningrecommendations", "label": ".generateLearningRecommendations()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateLearningRecommendations()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 3}, {"id": "services_airecommendationservice_generateconnectionrecommendations", "label": ".generateConnectionRecommendations()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateConnectionRecommendations()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 6}, {"id": "services_airecommendationservice_generatemixedrecommendations", "label": ".generateMixedRecommendations()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateMixedRecommendations()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 6}, {"id": "services_airecommendationservice_getuserinterests", "label": ".getUserInterests()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUserInterests()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 2}, {"id": "services_airecommendationservice_getusercategories", "label": ".getUserCategories()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUserCategories()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 2}, {"id": "services_airecommendationservice_calculatecontentscore", "label": ".calculateContentScore()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".calculateContentScore()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 2}, {"id": "services_airecommendationservice_getpriorityfromscore", "label": ".getPriorityFromScore()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPriorityFromScore()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 2}, {"id": "services_airecommendationservice_getskillnames", "label": ".getSkillNames()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSkillNames()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 2}, {"id": "services_airecommendationservice_calculateusersimilarity", "label": ".calculateUserSimilarity()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".calculateUserSimilarity()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 2}, {"id": "services_airecommendationservice_getsharedinterests", "label": ".getSharedInterests()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSharedInterests()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 2}, {"id": "services_airecommendationservice_recordinteraction", "label": ".RecordInteraction()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".RecordInteraction()", "community": 20, "community_name": "Community 20", "source_file": "backend/services/ai_recommendation_service.go", "file_type": "code", "degree": 1}, {"id": "backend_services_metadata_go", "label": "metadata.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata.go", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 10}, {"id": "services_websitemetadata", "label": "WebsiteMetadata", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WebsiteMetadata", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 1}, {"id": "services_metadata_fetchwebsitemetadata", "label": "FetchWebsiteMetadata()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "FetchWebsiteMetadata()", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 9}, {"id": "services_metadata_extractopengraphmetadata", "label": "extractOpenGraphMetadata()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "extractOpenGraphMetadata()", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 2}, {"id": "services_metadata_extracttwittermetadata", "label": "extractTwitterMetadata()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "extractTwitterMetadata()", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 2}, {"id": "services_metadata_extractbasichtmlmetadata", "label": "extractBasicHTMLMetadata()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "extractBasicHTMLMetadata()", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 2}, {"id": "services_metadata_extractfavicon", "label": "extractFavicon()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "extractFavicon()", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 1}, {"id": "services_metadata_getdefaultfavicon", "label": "getDefaultFavicon()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getDefaultFavicon()", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 3}, {"id": "services_cacheservice", "label": "CacheService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CacheService", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 3}, {"id": "services_metadata_newcacheservice", "label": "NewCacheService()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewCacheService()", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 1}, {"id": "services_cacheservice_get", "label": ".Get()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".Get()", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 3}, {"id": "services_cacheservice_set", "label": ".Set()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".Set()", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 3}, {"id": "services_metadata_getcachedmetadata", "label": "GetCachedMetadata()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "GetCachedMetadata()", "community": 4, "community_name": "Community 4", "source_file": "backend/services/metadata.go", "file_type": "code", "degree": 7}, {"id": "backend_services_favicon_fetcher_test_go", "label": "favicon_fetcher_test.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "favicon_fetcher_test.go", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher_test.go", "file_type": "code", "degree": 5}, {"id": "services_favicon_fetcher_test_testfaviconfetcher", "label": "TestFaviconFetcher()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestFaviconFetcher()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher_test.go", "file_type": "code", "degree": 2}, {"id": "services_favicon_fetcher_test_testmultiplefavicons", "label": "TestMultipleFavicons()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestMultipleFavicons()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher_test.go", "file_type": "code", "degree": 2}, {"id": "services_favicon_fetcher_test_testmakeabsoluteurl", "label": "TestMakeAbsoluteURL()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestMakeAbsoluteURL()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher_test.go", "file_type": "code", "degree": 2}, {"id": "services_favicon_fetcher_test_testextractheadsection", "label": "TestExtractHeadSection()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TestExtractHeadSection()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher_test.go", "file_type": "code", "degree": 3}, {"id": "services_favicon_fetcher_test_benchmarkfaviconfetch", "label": "BenchmarkFaviconFetch()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BenchmarkFaviconFetch()", "community": 26, "community_name": "Community 26", "source_file": "backend/services/favicon_fetcher_test.go", "file_type": "code", "degree": 2}, {"id": "backend_services_youtube_go", "label": "youtube.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "youtube.go", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 17}, {"id": "services_youtubevideo", "label": "YouTubeVideo", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeVideo", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 1}, {"id": "services_videoitem", "label": "VideoItem", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoItem", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 1}, {"id": "services_youtubesearchresponse", "label": "YouTubeSearchResponse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeSearchResponse", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 1}, {"id": "services_youtubeservice", "label": "YouTubeService", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeService", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 9}, {"id": "services_youtube_newyoutubeservice", "label": "NewYouTubeService()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewYouTubeService()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 5}, {"id": "services_youtubeservice_searchvideos", "label": ".SearchVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".SearchVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 2}, {"id": "services_youtubeservice_fetchyoutubevideoidandchannel", "label": ".fetchYouTubeVideoIDAndChannel()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetchYouTubeVideoIDAndChannel()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 2}, {"id": "services_youtubeservice_getchannelvideosfromurl", "label": ".GetChannelVideosFromURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetChannelVideosFromURL()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 3}, {"id": "services_youtubeservice_extractchannelhandle", "label": ".extractChannelHandle()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractChannelHandle()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 3}, {"id": "services_youtubeservice_fetchchannelvideos", "label": ".fetchChannelVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetchChannelVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 3}, {"id": "services_youtubeservice_getvideodetails", "label": ".GetVideoDetails()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetVideoDetails()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 2}, {"id": "services_youtubeservice_getchannelvideos", "label": ".GetChannelVideos()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetChannelVideos()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 2}, {"id": "services_youtube_searchyoutubevideos", "label": "SearchYouTubeVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchYouTubeVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 5}, {"id": "services_youtubesearchvideo", "label": "YouTubeSearchVideo", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeSearchVideo", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 1}, {"id": "services_youtube_fetchyoutubevideosreal", "label": "fetchYouTubeVideosReal()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchYouTubeVideosReal()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 3}, {"id": "services_youtube_min", "label": "min()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "min()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 1}, {"id": "services_youtube_htmlunescape", "label": "htmlUnescape()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "htmlUnescape()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 1}, {"id": "services_youtube_searchyoutubevideosreal", "label": "searchYouTubeVideosReal()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "searchYouTubeVideosReal()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 2}, {"id": "services_youtube_getyoutubevideodetails", "label": "GetYouTubeVideoDetails()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetYouTubeVideoDetails()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 2}, {"id": "services_youtube_getyoutubechannelvideos", "label": "GetYouTubeChannelVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetYouTubeChannelVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 3}, {"id": "services_youtube_getyoutubechannelvideosreal", "label": "getYouTubeChannelVideosReal()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getYouTubeChannelVideosReal()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 2}, {"id": "services_predefinedchannel", "label": "PredefinedChannel", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PredefinedChannel", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 1}, {"id": "services_youtube_getpredefinedchannelvideos", "label": "GetPredefinedChannelVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetPredefinedChannelVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 2}, {"id": "services_youtubeservice_getmockvideodetails", "label": ".getMockVideoDetails()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getMockVideoDetails()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 1}, {"id": "services_youtube_getmockyoutubevideos", "label": "getMockYouTubeVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getMockYouTubeVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/services/youtube.go", "file_type": "code", "degree": 1}, {"id": "backend_services_ai_service_go", "label": "ai_service.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ai_service.go", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 10}, {"id": "services_aiprovider", "label": "AIProvider", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AIProvider", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 1}, {"id": "services_airequest", "label": "AIRequest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AIRequest", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 1}, {"id": "services_message", "label": "Message", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Message", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 1}, {"id": "services_airesponse", "label": "AIResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AIResponse", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 1}, {"id": "services_choice", "label": "Choice", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Choice", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 1}, {"id": "services_usage", "label": "Usage", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Usage", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 1}, {"id": "services_aiservice", "label": "AIService", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "AIService", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 13}, {"id": "services_ai_service_newaiservice", "label": "NewAIService()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "NewAIService()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 6}, {"id": "services_ai_service_getavailableproviders", "label": "GetAvailableProviders()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetAvailableProviders()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 2}, {"id": "services_aiservice_chatcompletion", "label": ".ChatCompletion()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".ChatCompletion()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 9}, {"id": "services_aiservice_chatcompletionwiththinking", "label": ".ChatCompletionWithThinking()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".ChatCompletionWithThinking()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 3}, {"id": "services_aiservice_chatcompletionwithupgradedthinking", "label": ".ChatCompletionWithUpgradedThinking()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".ChatCompletionWithUpgradedThinking()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 2}, {"id": "services_ai_service_parsethinkingresponse", "label": "ParseThinkingResponse()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ParseThinkingResponse()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 7}, {"id": "services_aiservice_getthinkingmodel", "label": ".getThinkingModel()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getThinkingModel()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 2}, {"id": "services_aiservice_callopenrouter", "label": ".callOpenRouter()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".callOpenRouter()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 2}, {"id": "services_aiservice_callmistral", "label": ".callMistral()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".callMistral()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 2}, {"id": "services_aiservice_calllongcat", "label": ".callLongCat()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".callLongCat()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 2}, {"id": "services_aiservice_callgrok", "label": ".callGrok()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".callGrok()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 2}, {"id": "services_aiservice_calldeepseek", "label": ".callDeepSeek()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".callDeepSeek()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 2}, {"id": "services_aiservice_callollama", "label": ".callOllama()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".callOllama()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 2}, {"id": "services_aiservice_setprovider", "label": ".SetProvider()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".SetProvider()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 1}, {"id": "services_aiservice_getprovider", "label": ".GetProvider()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetProvider()", "community": 6, "community_name": "Community 6", "source_file": "backend/services/ai_service.go", "file_type": "code", "degree": 1}, {"id": "backend_services_computer_vision_service_go", "label": "computer_vision_service.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "computer_vision_service.go", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 11}, {"id": "services_computervisionservice", "label": "ComputerVisionService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.1, "font": {"size": 12, "color": "#ffffff"}, "title": "ComputerVisionService", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 16}, {"id": "services_computer_vision_service_newcomputervisionservice", "label": "NewComputerVisionService()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewComputerVisionService()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 1}, {"id": "services_imageanalysisrequest", "label": "ImageAnalysisRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ImageAnalysisRequest", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 1}, {"id": "services_imageanalysisresponse", "label": "ImageAnalysisResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ImageAnalysisResponse", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 1}, {"id": "services_objectdetection", "label": "ObjectDetection", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ObjectDetection", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 1}, {"id": "services_facedetection", "label": "FaceDetection", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FaceDetection", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 1}, {"id": "services_boundingbox", "label": "BoundingBox", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BoundingBox", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 1}, {"id": "services_imagemetadata", "label": "ImageMetadata", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ImageMetadata", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 1}, {"id": "services_computervisionservice_analyzeimage", "label": ".AnalyzeImage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".AnalyzeImage()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 6}, {"id": "services_computervisionservice_extracttext", "label": ".extractText()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractText()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 3}, {"id": "services_computervisionservice_detectobjects", "label": ".detectObjects()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".detectObjects()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 2}, {"id": "services_computervisionservice_detectfaces", "label": ".detectFaces()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".detectFaces()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 2}, {"id": "services_computervisionservice_extractdominantcolors", "label": ".extractDominantColors()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractDominantColors()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 2}, {"id": "services_computervisionservice_saveimageanalysis", "label": ".saveImageAnalysis()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".saveImageAnalysis()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 2}, {"id": "services_computervisionservice_processdocumentimage", "label": ".ProcessDocumentImage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".ProcessDocumentImage()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 9}, {"id": "services_documentanalysis", "label": "DocumentAnalysis", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DocumentAnalysis", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 1}, {"id": "services_documentsection", "label": "DocumentSection", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DocumentSection", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 1}, {"id": "services_documenttable", "label": "DocumentTable", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DocumentTable", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 1}, {"id": "services_computervisionservice_detectlanguage", "label": ".detectLanguage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".detectLanguage()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 4}, {"id": "services_computervisionservice_detectdocumenttype", "label": ".detectDocumentType()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".detectDocumentType()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 4}, {"id": "services_computervisionservice_extractsections", "label": ".extractSections()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractSections()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 2}, {"id": "services_computervisionservice_extracttables", "label": ".extractTables()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractTables()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 3}, {"id": "services_computervisionservice_extractlinks", "label": ".extractLinks()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractLinks()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 2}, {"id": "services_computervisionservice_extractemails", "label": ".extractEmails()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractEmails()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 2}, {"id": "services_computervisionservice_extractphonenumbers", "label": ".extractPhoneNumbers()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractPhoneNumbers()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 2}, {"id": "services_computervisionservice_createfileanalysis", "label": ".CreateFileAnalysis()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateFileAnalysis()", "community": 21, "community_name": "Community 21", "source_file": "backend/services/computer_vision_service.go", "file_type": "code", "degree": 1}, {"id": "backend_services_messages_realtime_go", "label": "messages_realtime.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "messages_realtime.go", "community": 5, "community_name": "Community 5", "source_file": "backend/services/messages_realtime.go", "file_type": "code", "degree": 6}, {"id": "services_wsevent", "label": "WsEvent", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WsEvent", "community": 5, "community_name": "Community 5", "source_file": "backend/services/messages_realtime.go", "file_type": "code", "degree": 1}, {"id": "services_messageswsclient", "label": "MessagesWSClient", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MessagesWSClient", "community": 5, "community_name": "Community 5", "source_file": "backend/services/messages_realtime.go", "file_type": "code", "degree": 1}, {"id": "services_messageshub", "label": "MessagesHub", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MessagesHub", "community": 11, "community_name": "Community 11", "source_file": "backend/services/messages_realtime.go", "file_type": "code", "degree": 6}, {"id": "services_messages_realtime_getmessageshub", "label": "GetMessagesHub()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "GetMessagesHub()", "community": 5, "community_name": "Community 5", "source_file": "backend/services/messages_realtime.go", "file_type": "code", "degree": 13}, {"id": "services_messages_realtime_newmessageshub", "label": "NewMessagesHub()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewMessagesHub()", "community": 5, "community_name": "Community 5", "source_file": "backend/services/messages_realtime.go", "file_type": "code", "degree": 1}, {"id": "services_messages_realtime_newwsclient", "label": "NewWSClient()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewWSClient()", "community": 5, "community_name": "Community 5", "source_file": "backend/services/messages_realtime.go", "file_type": "code", "degree": 2}, {"id": "services_messageshub_addclienttoconversation", "label": ".AddClientToConversation()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".AddClientToConversation()", "community": 11, "community_name": "Community 11", "source_file": "backend/services/messages_realtime.go", "file_type": "code", "degree": 1}, {"id": "services_messageshub_removeclientfromconversation", "label": ".RemoveClientFromConversation()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".RemoveClientFromConversation()", "community": 11, "community_name": "Community 11", "source_file": "backend/services/messages_realtime.go", "file_type": "code", "degree": 2}, {"id": "services_messageshub_removeclient", "label": ".RemoveClient()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".RemoveClient()", "community": 11, "community_name": "Community 11", "source_file": "backend/services/messages_realtime.go", "file_type": "code", "degree": 5}, {"id": "services_messageshub_broadcast", "label": ".Broadcast()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".Broadcast()", "community": 11, "community_name": "Community 11", "source_file": "backend/services/messages_realtime.go", "file_type": "code", "degree": 2}, {"id": "services_messageshub_sendtouser", "label": ".SendToUser()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".SendToUser()", "community": 11, "community_name": "Community 11", "source_file": "backend/services/messages_realtime.go", "file_type": "code", "degree": 2}, {"id": "backend_services_video_bookmark_go", "label": "video_bookmark.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "video_bookmark.go", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 4}, {"id": "services_videobookmarkservice", "label": "VideoBookmarkService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoBookmarkService", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 11}, {"id": "services_video_bookmark_newvideobookmarkservice", "label": "NewVideoBookmarkService()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewVideoBookmarkService()", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 2}, {"id": "services_videoinfo", "label": "VideoInfo", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoInfo", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "services_savevideorequest", "label": "SaveVideoRequest", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SaveVideoRequest", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "services_videobookmarkservice_savevideobookmark", "label": ".SaveVideoBookmark()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".SaveVideoBookmark()", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 2}, {"id": "services_videobookmarkservice_getuserbookmarks", "label": ".GetUserBookmarks()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetUserBookmarks()", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "services_videobookmarkservice_getbookmarkbyid", "label": ".GetBookmarkByID()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetBookmarkByID()", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 4}, {"id": "services_videobookmarkservice_updatebookmark", "label": ".UpdateBookmark()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateBookmark()", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 2}, {"id": "services_videobookmarkservice_deletebookmark", "label": ".DeleteBookmark()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteBookmark()", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "services_videobookmarkservice_togglewatched", "label": ".ToggleWatched()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".ToggleWatched()", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 2}, {"id": "services_videobookmarkservice_togglefavorite", "label": ".ToggleFavorite()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".ToggleFavorite()", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 2}, {"id": "services_videobookmarkservice_searchbookmarks", "label": ".SearchBookmarks()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".SearchBookmarks()", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "services_videobookmarkservice_getbookmarkstats", "label": ".GetBookmarkStats()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetBookmarkStats()", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "services_videobookmarkservice_extractvideoinfo", "label": ".extractVideoInfo()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractVideoInfo()", "community": 22, "community_name": "Community 22", "source_file": "backend/services/video_bookmark.go", "file_type": "code", "degree": 2}, {"id": "backend_services_youtube_integrated_go", "label": "youtube_integrated.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "youtube_integrated.go", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 11}, {"id": "services_youtubeintegratedservice", "label": "YouTubeIntegratedService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeIntegratedService", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 4}, {"id": "services_youtube_integrated_newyoutubeintegratedservice", "label": "NewYouTubeIntegratedService()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewYouTubeIntegratedService()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 1}, {"id": "services_youtubeintegratedservice_searchvideosintegrated", "label": ".SearchVideosIntegrated()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".SearchVideosIntegrated()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 3}, {"id": "services_channelvideosresponse", "label": "ChannelVideosResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ChannelVideosResponse", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 1}, {"id": "services_youtubeintegratedservice_getchannelvideosintegrated", "label": ".GetChannelVideosIntegrated()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetChannelVideosIntegrated()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 6}, {"id": "services_integratedvideoinfo", "label": "IntegratedVideoInfo", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IntegratedVideoInfo", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 1}, {"id": "services_youtubeintegratedservice_getvideodetailsintegrated", "label": ".GetVideoDetailsIntegrated()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetVideoDetailsIntegrated()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 3}, {"id": "services_youtube_integrated_normalizechannelinput", "label": "normalizeChannelInput()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeChannelInput()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 4}, {"id": "services_youtube_integrated_unescapeyt", "label": "unescapeYT()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "unescapeYT()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 3}, {"id": "services_youtube_integrated_parserelativetoiso", "label": "parseRelativeToISO()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "parseRelativeToISO()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 3}, {"id": "services_youtube_integrated_parsecounttext", "label": "parseCountText()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "parseCountText()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 3}, {"id": "services_youtube_integrated_extractvideoid", "label": "extractVideoID()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "extractVideoID()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 3}, {"id": "services_youtube_integrated_searchyoutubevideosintegrated", "label": "SearchYouTubeVideosIntegrated()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchYouTubeVideosIntegrated()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 3}, {"id": "services_youtube_integrated_getyoutubechannelvideosintegrated", "label": "GetYouTubeChannelVideosIntegrated()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetYouTubeChannelVideosIntegrated()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/youtube_integrated.go", "file_type": "code", "degree": 4}, {"id": "backend_services_message_detector_test_go", "label": "message_detector_test.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "message_detector_test.go", "community": 1, "community_name": "Community 1", "source_file": "backend/services/message_detector_test.go", "file_type": "code", "degree": 3}, {"id": "services_message_detector_test_testdetectmessagecontent_urlsandsuggestions", "label": "TestDetectMessageContent_URLsAndSuggestions()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestDetectMessageContent_URLsAndSuggestions()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/message_detector_test.go", "file_type": "code", "degree": 2}, {"id": "services_message_detector_test_testdetectmessagecontent_taskandeventintents", "label": "TestDetectMessageContent_TaskAndEventIntents()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestDetectMessageContent_TaskAndEventIntents()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/message_detector_test.go", "file_type": "code", "degree": 2}, {"id": "services_message_detector_test_testdetectmessagecontent_passwordwarning", "label": "TestDetectMessageContent_PasswordWarning()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestDetectMessageContent_PasswordWarning()", "community": 1, "community_name": "Community 1", "source_file": "backend/services/message_detector_test.go", "file_type": "code", "degree": 2}, {"id": "backend_models_ai_features_go", "label": "ai_features.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ai_features.go", "community": 68, "community_name": "Community 68", "source_file": "backend/models/ai_features.go", "file_type": "code", "degree": 6}, {"id": "models_aisummary", "label": "AISummary", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AISummary", "community": 68, "community_name": "Community 68", "source_file": "backend/models/ai_features.go", "file_type": "code", "degree": 1}, {"id": "models_aitasksuggestion", "label": "AITaskSuggestion", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AITaskSuggestion", "community": 68, "community_name": "Community 68", "source_file": "backend/models/ai_features.go", "file_type": "code", "degree": 1}, {"id": "models_aitagsuggestion", "label": "AITagSuggestion", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AITagSuggestion", "community": 68, "community_name": "Community 68", "source_file": "backend/models/ai_features.go", "file_type": "code", "degree": 1}, {"id": "models_aicontentgeneration", "label": "AIContentGeneration", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AIContentGeneration", "community": 68, "community_name": "Community 68", "source_file": "backend/models/ai_features.go", "file_type": "code", "degree": 1}, {"id": "models_aicodereview", "label": "AICodeReview", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AICodeReview", "community": 68, "community_name": "Community 68", "source_file": "backend/models/ai_features.go", "file_type": "code", "degree": 1}, {"id": "models_ailearningrecommendation", "label": "AILearningRecommendation", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AILearningRecommendation", "community": 68, "community_name": "Community 68", "source_file": "backend/models/ai_features.go", "file_type": "code", "degree": 1}, {"id": "backend_models_search_settings_go", "label": "search_settings.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "search_settings.go", "community": 18, "community_name": "Community 18", "source_file": "backend/models/search_settings.go", "file_type": "code", "degree": 3}, {"id": "models_usersearchsettings", "label": "UserSearchSettings", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserSearchSettings", "community": 18, "community_name": "Community 18", "source_file": "backend/models/search_settings.go", "file_type": "code", "degree": 1}, {"id": "models_search_settings_getusersearchsettings", "label": "GetUserSearchSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetUserSearchSettings()", "community": 18, "community_name": "Community 18", "source_file": "backend/models/search_settings.go", "file_type": "code", "degree": 4}, {"id": "models_search_settings_saveusersearchsettings", "label": "SaveUserSearchSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SaveUserSearchSettings()", "community": 18, "community_name": "Community 18", "source_file": "backend/models/search_settings.go", "file_type": "code", "degree": 2}, {"id": "backend_models_community_go", "label": "community.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "community.go", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 12}, {"id": "models_challenge", "label": "Challenge", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Challenge", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 2}, {"id": "models_challengeparticipant", "label": "ChallengeParticipant", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ChallengeParticipant", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 2}, {"id": "models_challengeteam", "label": "ChallengeTeam", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ChallengeTeam", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 2}, {"id": "models_challengemilestone", "label": "ChallengeMilestone", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ChallengeMilestone", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 1}, {"id": "models_challengemilestonecompletion", "label": "ChallengeMilestoneCompletion", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ChallengeMilestoneCompletion", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 1}, {"id": "models_challengeresource", "label": "ChallengeResource", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ChallengeResource", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 1}, {"id": "models_challengetag", "label": "ChallengeTag", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ChallengeTag", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 1}, {"id": "models_mentorship", "label": "Mentorship", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Mentorship", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 2}, {"id": "models_mentorshipsession", "label": "MentorshipSession", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MentorshipSession", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 2}, {"id": "models_mentorshipreview", "label": "MentorshipReview", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MentorshipReview", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 2}, {"id": "models_mentorshipmilestone", "label": "MentorshipMilestone", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MentorshipMilestone", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 2}, {"id": "models_mentorshiprequest", "label": "MentorshipRequest", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MentorshipRequest", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 2}, {"id": "models_challenge_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 1}, {"id": "models_challengeparticipant_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 1}, {"id": "models_challengeteam_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 1}, {"id": "models_mentorship_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 1}, {"id": "models_mentorshipsession_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 1}, {"id": "models_mentorshipreview_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 1}, {"id": "models_mentorshipmilestone_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 1}, {"id": "models_mentorshiprequest_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 28, "community_name": "Community 28", "source_file": "backend/models/community.go", "file_type": "code", "degree": 1}, {"id": "backend_models_audit_log_go", "label": "audit_log.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "audit_log.go", "community": 1, "community_name": "Community 1", "source_file": "backend/models/audit_log.go", "file_type": "code", "degree": 3}, {"id": "models_auditaction", "label": "AuditAction", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AuditAction", "community": 1, "community_name": "Community 1", "source_file": "backend/models/audit_log.go", "file_type": "code", "degree": 2}, {"id": "models_auditresource", "label": "AuditResource", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuditResource", "community": 1, "community_name": "Community 1", "source_file": "backend/models/audit_log.go", "file_type": "code", "degree": 1}, {"id": "models_auditlog", "label": "AuditLog", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AuditLog", "community": 1, "community_name": "Community 1", "source_file": "backend/models/audit_log.go", "file_type": "code", "degree": 3}, {"id": "models_auditlog_tablename", "label": ".TableName()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".TableName()", "community": 1, "community_name": "Community 1", "source_file": "backend/models/audit_log.go", "file_type": "code", "degree": 1}, {"id": "models_auditlog_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 1, "community_name": "Community 1", "source_file": "backend/models/audit_log.go", "file_type": "code", "degree": 1}, {"id": "backend_models_note_go", "label": "note.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "note.go", "community": 130, "community_name": "Community 130", "source_file": "backend/models/note.go", "file_type": "code", "degree": 1}, {"id": "models_note", "label": "Note", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Note", "community": 130, "community_name": "Community 130", "source_file": "backend/models/note.go", "file_type": "code", "degree": 1}, {"id": "backend_models_user_go", "label": "user.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "user.go", "community": 131, "community_name": "Community 131", "source_file": "backend/models/user.go", "file_type": "code", "degree": 1}, {"id": "models_user", "label": "User", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User", "community": 131, "community_name": "Community 131", "source_file": "backend/models/user.go", "file_type": "code", "degree": 1}, {"id": "backend_models_web_scraping_go", "label": "web_scraping.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "web_scraping.go", "community": 64, "community_name": "Community 64", "source_file": "backend/models/web_scraping.go", "file_type": "code", "degree": 5}, {"id": "models_scrapedcontent", "label": "ScrapedContent", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ScrapedContent", "community": 64, "community_name": "Community 64", "source_file": "backend/models/web_scraping.go", "file_type": "code", "degree": 2}, {"id": "models_scrapedimage", "label": "ScrapedImage", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScrapedImage", "community": 64, "community_name": "Community 64", "source_file": "backend/models/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "models_scrapedlink", "label": "ScrapedLink", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScrapedLink", "community": 64, "community_name": "Community 64", "source_file": "backend/models/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "models_scrapedvideo", "label": "ScrapedVideo", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScrapedVideo", "community": 64, "community_name": "Community 64", "source_file": "backend/models/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "models_scrapingjob", "label": "ScrapingJob", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ScrapingJob", "community": 64, "community_name": "Community 64", "source_file": "backend/models/web_scraping.go", "file_type": "code", "degree": 2}, {"id": "models_scrapedcontent_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 64, "community_name": "Community 64", "source_file": "backend/models/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "models_scrapingjob_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 64, "community_name": "Community 64", "source_file": "backend/models/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "backend_models_task_go", "label": "task.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "task.go", "community": 6, "community_name": "Community 6", "source_file": "backend/models/task.go", "file_type": "code", "degree": 3}, {"id": "models_taskstatus", "label": "TaskStatus", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TaskStatus", "community": 6, "community_name": "Community 6", "source_file": "backend/models/task.go", "file_type": "code", "degree": 1}, {"id": "models_taskpriority", "label": "TaskPriority", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TaskPriority", "community": 6, "community_name": "Community 6", "source_file": "backend/models/task.go", "file_type": "code", "degree": 2}, {"id": "models_task", "label": "Task", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task", "community": 6, "community_name": "Community 6", "source_file": "backend/models/task.go", "file_type": "code", "degree": 1}, {"id": "backend_models_knowledge_base_go", "label": "knowledge_base.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "knowledge_base.go", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 9}, {"id": "models_wikipage", "label": "WikiPage", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiPage", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 3}, {"id": "models_category", "label": "Category", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 2}, {"id": "models_wikiversion", "label": "WikiVersion", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiVersion", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 1}, {"id": "models_wikibacklink", "label": "WikiBacklink", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiBacklink", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 1}, {"id": "models_wikiattachment", "label": "WikiAttachment", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiAttachment", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 1}, {"id": "models_template", "label": "Template", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Template", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 2}, {"id": "models_templatevariable", "label": "TemplateVariable", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TemplateVariable", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 1}, {"id": "models_wikipage_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 2}, {"id": "models_category_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 2}, {"id": "models_template_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 2}, {"id": "models_wikipage_beforeupdate", "label": ".BeforeUpdate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeUpdate()", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 3}, {"id": "models_knowledge_base_generateslug", "label": "generateSlug()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateSlug()", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 6}, {"id": "models_knowledge_base_estimatereadingtime", "label": "estimateReadingTime()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "estimateReadingTime()", "community": 45, "community_name": "Community 45", "source_file": "backend/models/knowledge_base.go", "file_type": "code", "degree": 2}, {"id": "backend_models_teams_go", "label": "teams.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "teams.go", "community": 51, "community_name": "Community 51", "source_file": "backend/models/teams.go", "file_type": "code", "degree": 11}, {"id": "models_team", "label": "Team", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Team", "community": 51, "community_name": "Community 51", "source_file": "backend/models/teams.go", "file_type": "code", "degree": 1}, {"id": "models_teammember", "label": "TeamMember", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamMember", "community": 51, "community_name": "Community 51", "source_file": "backend/models/teams.go", "file_type": "code", "degree": 1}, {"id": "models_teaminvitation", "label": "TeamInvitation", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamInvitation", "community": 51, "community_name": "Community 51", "source_file": "backend/models/teams.go", "file_type": "code", "degree": 1}, {"id": "models_teamproject", "label": "TeamProject", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamProject", "community": 51, "community_name": "Community 51", "source_file": "backend/models/teams.go", "file_type": "code", "degree": 1}, {"id": "models_teamprojecttag", "label": "TeamProjectTag", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamProjectTag", "community": 51, "community_name": "Community 51", "source_file": "backend/models/teams.go", "file_type": "code", "degree": 1}, {"id": "models_teambookmark", "label": "TeamBookmark", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamBookmark", "community": 51, "community_name": "Community 51", "source_file": "backend/models/teams.go", "file_type": "code", "degree": 1}, {"id": "models_teamnote", "label": "TeamNote", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamNote", "community": 51, "community_name": "Community 51", "source_file": "backend/models/teams.go", "file_type": "code", "degree": 1}, {"id": "models_teamtask", "label": "TeamTask", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamTask", "community": 51, "community_name": "Community 51", "source_file": "backend/models/teams.go", "file_type": "code", "degree": 1}, {"id": "models_teamfile", "label": "TeamFile", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamFile", "community": 51, "community_name": "Community 51", "source_file": "backend/models/teams.go", "file_type": "code", "degree": 1}, {"id": "models_teamactivity", "label": "TeamActivity", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamActivity", "community": 51, "community_name": "Community 51", "source_file": "backend/models/teams.go", "file_type": "code", "degree": 1}, {"id": "models_teamstats", "label": "TeamStats", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamStats", "community": 51, "community_name": "Community 51", "source_file": "backend/models/teams.go", "file_type": "code", "degree": 1}, {"id": "backend_models_analytics_go", "label": "analytics.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "analytics.go", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 9}, {"id": "models_analytics", "label": "Analytics", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Analytics", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 2}, {"id": "models_productivitymetrics", "label": "ProductivityMetrics", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductivityMetrics", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 2}, {"id": "models_learninganalytics", "label": "LearningAnalytics", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LearningAnalytics", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 2}, {"id": "models_contentanalytics", "label": "ContentAnalytics", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentAnalytics", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 2}, {"id": "models_githubanalytics", "label": "GitHubAnalytics", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubAnalytics", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 2}, {"id": "models_habitanalytics", "label": "HabitAnalytics", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HabitAnalytics", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 2}, {"id": "models_goal", "label": "Goal", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Goal", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 2}, {"id": "models_milestone", "label": "Milestone", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Milestone", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 2}, {"id": "models_analyticsreport", "label": "AnalyticsReport", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AnalyticsReport", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 1}, {"id": "models_analytics_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 1}, {"id": "models_productivitymetrics_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 1}, {"id": "models_learninganalytics_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 1}, {"id": "models_contentanalytics_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 1}, {"id": "models_githubanalytics_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 1}, {"id": "models_habitanalytics_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 1}, {"id": "models_goal_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 1}, {"id": "models_milestone_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 32, "community_name": "Community 32", "source_file": "backend/models/analytics.go", "file_type": "code", "degree": 1}, {"id": "backend_models_bookmark_go", "label": "bookmark.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "bookmark.go", "community": 132, "community_name": "Community 132", "source_file": "backend/models/bookmark.go", "file_type": "code", "degree": 1}, {"id": "models_bookmark", "label": "Bookmark", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Bookmark", "community": 132, "community_name": "Community 132", "source_file": "backend/models/bookmark.go", "file_type": "code", "degree": 1}, {"id": "backend_models_messages_go", "label": "messages.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "messages.go", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 12}, {"id": "models_conversationtype", "label": "ConversationType", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ConversationType", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 2}, {"id": "models_conversationmemberrole", "label": "ConversationMemberRole", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ConversationMemberRole", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 2}, {"id": "models_suggestionstatus", "label": "SuggestionStatus", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SuggestionStatus", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 1}, {"id": "models_conversation", "label": "Conversation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Conversation", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 1}, {"id": "models_conversationmember", "label": "ConversationMember", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ConversationMember", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 1}, {"id": "models_message", "label": "Message", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Message", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 1}, {"id": "models_messageattachment", "label": "MessageAttachment", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MessageAttachment", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 1}, {"id": "models_messagereference", "label": "MessageReference", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MessageReference", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 1}, {"id": "models_messagesuggestion", "label": "MessageSuggestion", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MessageSuggestion", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 1}, {"id": "models_messagereaction", "label": "MessageReaction", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MessageReaction", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 1}, {"id": "models_passwordvaultitem", "label": "PasswordVaultItem", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PasswordVaultItem", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 1}, {"id": "models_passwordvaultshare", "label": "PasswordVaultShare", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PasswordVaultShare", "community": 5, "community_name": "Community 5", "source_file": "backend/models/messages.go", "file_type": "code", "degree": 1}, {"id": "backend_models_learning_path_go", "label": "learning_path.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "learning_path.go", "community": 77, "community_name": "Community 77", "source_file": "backend/models/learning_path.go", "file_type": "code", "degree": 5}, {"id": "models_learningpath", "label": "LearningPath", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LearningPath", "community": 77, "community_name": "Community 77", "source_file": "backend/models/learning_path.go", "file_type": "code", "degree": 1}, {"id": "models_learningmodule", "label": "LearningModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LearningModule", "community": 77, "community_name": "Community 77", "source_file": "backend/models/learning_path.go", "file_type": "code", "degree": 1}, {"id": "models_moduleresource", "label": "ModuleResource", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ModuleResource", "community": 77, "community_name": "Community 77", "source_file": "backend/models/learning_path.go", "file_type": "code", "degree": 1}, {"id": "models_enrollment", "label": "Enrollment", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Enrollment", "community": 77, "community_name": "Community 77", "source_file": "backend/models/learning_path.go", "file_type": "code", "degree": 1}, {"id": "models_progress", "label": "Progress", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Progress", "community": 77, "community_name": "Community 77", "source_file": "backend/models/learning_path.go", "file_type": "code", "degree": 1}, {"id": "backend_models_file_go", "label": "file.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "file.go", "community": 101, "community_name": "Community 101", "source_file": "backend/models/file.go", "file_type": "code", "degree": 2}, {"id": "models_filetype", "label": "FileType", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FileType", "community": 101, "community_name": "Community 101", "source_file": "backend/models/file.go", "file_type": "code", "degree": 1}, {"id": "models_file", "label": "File", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "File", "community": 101, "community_name": "Community 101", "source_file": "backend/models/file.go", "file_type": "code", "degree": 1}, {"id": "backend_models_browser_extension_go", "label": "browser_extension.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "browser_extension.go", "community": 102, "community_name": "Community 102", "source_file": "backend/models/browser_extension.go", "file_type": "code", "degree": 2}, {"id": "models_apikey", "label": "APIKey", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "APIKey", "community": 102, "community_name": "Community 102", "source_file": "backend/models/browser_extension.go", "file_type": "code", "degree": 1}, {"id": "models_browserextension", "label": "BrowserExtension", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrowserExtension", "community": 102, "community_name": "Community 102", "source_file": "backend/models/browser_extension.go", "file_type": "code", "degree": 1}, {"id": "backend_models_chat_go", "label": "chat.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "chat.go", "community": 103, "community_name": "Community 103", "source_file": "backend/models/chat.go", "file_type": "code", "degree": 2}, {"id": "models_chatmessage", "label": "ChatMessage", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ChatMessage", "community": 103, "community_name": "Community 103", "source_file": "backend/models/chat.go", "file_type": "code", "degree": 1}, {"id": "models_chatsession", "label": "ChatSession", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ChatSession", "community": 103, "community_name": "Community 103", "source_file": "backend/models/chat.go", "file_type": "code", "degree": 1}, {"id": "backend_models_tag_go", "label": "tag.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tag.go", "community": 133, "community_name": "Community 133", "source_file": "backend/models/tag.go", "file_type": "code", "degree": 1}, {"id": "models_tag", "label": "Tag", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tag", "community": 133, "community_name": "Community 133", "source_file": "backend/models/tag.go", "file_type": "code", "degree": 1}, {"id": "backend_models_github_user_auth_go", "label": "github_user_auth.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "github_user_auth.go", "community": 134, "community_name": "Community 134", "source_file": "backend/models/github_user_auth.go", "file_type": "code", "degree": 1}, {"id": "models_githubuserauth", "label": "GitHubUserAuth", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubUserAuth", "community": 134, "community_name": "Community 134", "source_file": "backend/models/github_user_auth.go", "file_type": "code", "degree": 1}, {"id": "backend_models_youtube_cache_go", "label": "youtube_cache.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "youtube_cache.go", "community": 95, "community_name": "Community 95", "source_file": "backend/models/youtube_cache.go", "file_type": "code", "degree": 1}, {"id": "models_youtubechannelcache", "label": "YouTubeChannelCache", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeChannelCache", "community": 95, "community_name": "Community 95", "source_file": "backend/models/youtube_cache.go", "file_type": "code", "degree": 3}, {"id": "models_youtubechannelcache_tablename", "label": ".TableName()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".TableName()", "community": 95, "community_name": "Community 95", "source_file": "backend/models/youtube_cache.go", "file_type": "code", "degree": 1}, {"id": "models_youtubechannelcache_isexpired", "label": ".IsExpired()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".IsExpired()", "community": 95, "community_name": "Community 95", "source_file": "backend/models/youtube_cache.go", "file_type": "code", "degree": 1}, {"id": "backend_models_goals_habits_go", "label": "goals_habits.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "goals_habits.go", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 6}, {"id": "models_habit", "label": "Habit", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Habit", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 6}, {"id": "models_habitentry", "label": "HabitEntry", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HabitEntry", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 2}, {"id": "models_goaltag", "label": "GoalTag", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GoalTag", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "models_habittag", "label": "HabitTag", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HabitTag", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "models_goaltemplate", "label": "GoalTemplate", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GoalTemplate", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "models_goaltemplatemilestone", "label": "GoalTemplateMilestone", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GoalTemplateMilestone", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "models_habit_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "models_habitentry_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "models_habit_beforeupdate", "label": ".BeforeUpdate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeUpdate()", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 2}, {"id": "models_habit_updatestreakandrate", "label": ".updateStreakAndRate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateStreakAndRate()", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 2}, {"id": "models_habit_gettodayentry", "label": ".GetTodayEntry()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTodayEntry()", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "models_habit_getweeklystreak", "label": ".GetWeeklyStreak()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetWeeklyStreak()", "community": 47, "community_name": "Community 47", "source_file": "backend/models/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "backend_models_integration_go", "label": "integration.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.1, "font": {"size": 12, "color": "#ffffff"}, "title": "integration.go", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 16}, {"id": "models_integrationtype", "label": "IntegrationType", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IntegrationType", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_integrationstatus", "label": "IntegrationStatus", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IntegrationStatus", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_integration", "label": "Integration", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Integration", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_integrationconfig", "label": "IntegrationConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IntegrationConfig", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_slackconfig", "label": "SlackConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SlackConfig", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_discordconfig", "label": "DiscordConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DiscordConfig", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_notionconfig", "label": "NotionConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NotionConfig", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_googleconfig", "label": "GoogleConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GoogleConfig", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_pocketconfig", "label": "PocketConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PocketConfig", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_todoistconfig", "label": "TodoistConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TodoistConfig", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_githubconfig", "label": "GitHubConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubConfig", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_twitterconfig", "label": "TwitterConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TwitterConfig", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_redditconfig", "label": "RedditConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RedditConfig", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_obsidianconfig", "label": "ObsidianConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ObsidianConfig", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_synclog", "label": "SyncLog", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SyncLog", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "models_webhookevent", "label": "WebhookEvent", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WebhookEvent", "community": 34, "community_name": "Community 34", "source_file": "backend/models/integration.go", "file_type": "code", "degree": 1}, {"id": "backend_models_models_go", "label": "models.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "models.go", "community": 3, "community_name": "Community 3", "source_file": "backend/models/models.go", "file_type": "code", "degree": 5}, {"id": "models_models_initdb", "label": "InitDB()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "InitDB()", "community": 3, "community_name": "Community 3", "source_file": "backend/models/models.go", "file_type": "code", "degree": 3}, {"id": "models_models_tablehascolumn", "label": "tableHasColumn()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tableHasColumn()", "community": 3, "community_name": "Community 3", "source_file": "backend/models/models.go", "file_type": "code", "degree": 2}, {"id": "models_models_tableexists", "label": "tableExists()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tableExists()", "community": 3, "community_name": "Community 3", "source_file": "backend/models/models.go", "file_type": "code", "degree": 2}, {"id": "models_models_repairlegacybootstrapschema", "label": "repairLegacyBootstrapSchema()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "repairLegacyBootstrapSchema()", "community": 3, "community_name": "Community 3", "source_file": "backend/models/models.go", "file_type": "code", "degree": 4}, {"id": "models_models_automigrate", "label": "AutoMigrate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoMigrate()", "community": 3, "community_name": "Community 3", "source_file": "backend/models/models.go", "file_type": "code", "degree": 4}, {"id": "backend_models_file_analysis_go", "label": "file_analysis.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "file_analysis.go", "community": 96, "community_name": "Community 96", "source_file": "backend/models/file_analysis.go", "file_type": "code", "degree": 1}, {"id": "models_fileanalysis", "label": "FileAnalysis", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "FileAnalysis", "community": 96, "community_name": "Community 96", "source_file": "backend/models/file_analysis.go", "file_type": "code", "degree": 3}, {"id": "models_fileanalysis_tablename", "label": ".TableName()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".TableName()", "community": 96, "community_name": "Community 96", "source_file": "backend/models/file_analysis.go", "file_type": "code", "degree": 1}, {"id": "models_fileanalysis_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 96, "community_name": "Community 96", "source_file": "backend/models/file_analysis.go", "file_type": "code", "degree": 1}, {"id": "backend_models_ai_recommendation_go", "label": "ai_recommendation.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ai_recommendation.go", "community": 61, "community_name": "Community 61", "source_file": "backend/models/ai_recommendation.go", "file_type": "code", "degree": 3}, {"id": "models_airecommendation", "label": "AIRecommendation", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AIRecommendation", "community": 61, "community_name": "Community 61", "source_file": "backend/models/ai_recommendation.go", "file_type": "code", "degree": 3}, {"id": "models_userpreference", "label": "UserPreference", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UserPreference", "community": 61, "community_name": "Community 61", "source_file": "backend/models/ai_recommendation.go", "file_type": "code", "degree": 3}, {"id": "models_recommendationinteraction", "label": "RecommendationInteraction", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RecommendationInteraction", "community": 61, "community_name": "Community 61", "source_file": "backend/models/ai_recommendation.go", "file_type": "code", "degree": 2}, {"id": "models_airecommendation_tablename", "label": ".TableName()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".TableName()", "community": 61, "community_name": "Community 61", "source_file": "backend/models/ai_recommendation.go", "file_type": "code", "degree": 1}, {"id": "models_userpreference_tablename", "label": ".TableName()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".TableName()", "community": 61, "community_name": "Community 61", "source_file": "backend/models/ai_recommendation.go", "file_type": "code", "degree": 1}, {"id": "models_recommendationinteraction_tablename", "label": ".TableName()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".TableName()", "community": 61, "community_name": "Community 61", "source_file": "backend/models/ai_recommendation.go", "file_type": "code", "degree": 1}, {"id": "models_airecommendation_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 61, "community_name": "Community 61", "source_file": "backend/models/ai_recommendation.go", "file_type": "code", "degree": 1}, {"id": "models_userpreference_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 61, "community_name": "Community 61", "source_file": "backend/models/ai_recommendation.go", "file_type": "code", "degree": 1}, {"id": "backend_models_github_backup_go", "label": "github_backup.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "github_backup.go", "community": 97, "community_name": "Community 97", "source_file": "backend/models/github_backup.go", "file_type": "code", "degree": 3}, {"id": "models_githubappinstallstate", "label": "GitHubAppInstallState", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubAppInstallState", "community": 97, "community_name": "Community 97", "source_file": "backend/models/github_backup.go", "file_type": "code", "degree": 1}, {"id": "models_githubappinstallation", "label": "GitHubAppInstallation", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubAppInstallation", "community": 97, "community_name": "Community 97", "source_file": "backend/models/github_backup.go", "file_type": "code", "degree": 1}, {"id": "models_githubrepobackup", "label": "GitHubRepoBackup", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubRepoBackup", "community": 97, "community_name": "Community 97", "source_file": "backend/models/github_backup.go", "file_type": "code", "degree": 1}, {"id": "backend_models_calendar_go", "label": "calendar.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "calendar.go", "community": 56, "community_name": "Community 56", "source_file": "backend/models/calendar.go", "file_type": "code", "degree": 3}, {"id": "models_calendarevent", "label": "CalendarEvent", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarEvent", "community": 56, "community_name": "Community 56", "source_file": "backend/models/calendar.go", "file_type": "code", "degree": 7}, {"id": "models_recurrencerule", "label": "RecurrenceRule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RecurrenceRule", "community": 56, "community_name": "Community 56", "source_file": "backend/models/calendar.go", "file_type": "code", "degree": 1}, {"id": "models_calendarsettings", "label": "CalendarSettings", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarSettings", "community": 56, "community_name": "Community 56", "source_file": "backend/models/calendar.go", "file_type": "code", "degree": 1}, {"id": "models_calendarevent_getduration", "label": ".GetDuration()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetDuration()", "community": 56, "community_name": "Community 56", "source_file": "backend/models/calendar.go", "file_type": "code", "degree": 1}, {"id": "models_calendarevent_isoverdue", "label": ".IsOverdue()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".IsOverdue()", "community": 56, "community_name": "Community 56", "source_file": "backend/models/calendar.go", "file_type": "code", "degree": 1}, {"id": "models_calendarevent_istoday", "label": ".IsToday()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".IsToday()", "community": 56, "community_name": "Community 56", "source_file": "backend/models/calendar.go", "file_type": "code", "degree": 1}, {"id": "models_calendarevent_isupcoming", "label": ".IsUpcoming()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".IsUpcoming()", "community": 56, "community_name": "Community 56", "source_file": "backend/models/calendar.go", "file_type": "code", "degree": 1}, {"id": "models_calendarevent_getprioritycolor", "label": ".GetPriorityColor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetPriorityColor()", "community": 56, "community_name": "Community 56", "source_file": "backend/models/calendar.go", "file_type": "code", "degree": 1}, {"id": "models_calendarevent_gettypecolor", "label": ".GetTypeColor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTypeColor()", "community": 56, "community_name": "Community 56", "source_file": "backend/models/calendar.go", "file_type": "code", "degree": 1}, {"id": "backend_models_social_go", "label": "social.go", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "social.go", "community": 69, "community_name": "Community 69", "source_file": "backend/models/social.go", "file_type": "code", "degree": 6}, {"id": "models_skill", "label": "Skill", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Skill", "community": 69, "community_name": "Community 69", "source_file": "backend/models/social.go", "file_type": "code", "degree": 1}, {"id": "models_project", "label": "Project", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Project", "community": 69, "community_name": "Community 69", "source_file": "backend/models/social.go", "file_type": "code", "degree": 1}, {"id": "models_projecttag", "label": "ProjectTag", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProjectTag", "community": 69, "community_name": "Community 69", "source_file": "backend/models/social.go", "file_type": "code", "degree": 1}, {"id": "models_sociallink", "label": "SocialLink", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SocialLink", "community": 69, "community_name": "Community 69", "source_file": "backend/models/social.go", "file_type": "code", "degree": 1}, {"id": "models_follow", "label": "Follow", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Follow", "community": 69, "community_name": "Community 69", "source_file": "backend/models/social.go", "file_type": "code", "degree": 1}, {"id": "models_userprofilestats", "label": "UserProfileStats", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserProfileStats", "community": 69, "community_name": "Community 69", "source_file": "backend/models/social.go", "file_type": "code", "degree": 1}, {"id": "backend_models_update_settings_go", "label": "update_settings.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "update_settings.go", "community": 18, "community_name": "Community 18", "source_file": "backend/models/update_settings.go", "file_type": "code", "degree": 3}, {"id": "models_userupdatesettings", "label": "UserUpdateSettings", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserUpdateSettings", "community": 18, "community_name": "Community 18", "source_file": "backend/models/update_settings.go", "file_type": "code", "degree": 1}, {"id": "models_update_settings_getuserupdatesettings", "label": "GetUserUpdateSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetUserUpdateSettings()", "community": 18, "community_name": "Community 18", "source_file": "backend/models/update_settings.go", "file_type": "code", "degree": 3}, {"id": "models_update_settings_saveuserupdatesettings", "label": "SaveUserUpdateSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SaveUserUpdateSettings()", "community": 18, "community_name": "Community 18", "source_file": "backend/models/update_settings.go", "file_type": "code", "degree": 2}, {"id": "backend_models_control_service_auth_go", "label": "control_service_auth.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "control_service_auth.go", "community": 135, "community_name": "Community 135", "source_file": "backend/models/control_service_auth.go", "file_type": "code", "degree": 1}, {"id": "models_controlservicesession", "label": "ControlServiceSession", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ControlServiceSession", "community": 135, "community_name": "Community 135", "source_file": "backend/models/control_service_auth.go", "file_type": "code", "degree": 1}, {"id": "backend_models_time_entry_go", "label": "time_entry.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "time_entry.go", "community": 70, "community_name": "Community 70", "source_file": "backend/models/time_entry.go", "file_type": "code", "degree": 1}, {"id": "models_timeentry", "label": "TimeEntry", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TimeEntry", "community": 70, "community_name": "Community 70", "source_file": "backend/models/time_entry.go", "file_type": "code", "degree": 6}, {"id": "models_timeentry_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 70, "community_name": "Community 70", "source_file": "backend/models/time_entry.go", "file_type": "code", "degree": 1}, {"id": "models_timeentry_beforeupdate", "label": ".BeforeUpdate()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeUpdate()", "community": 70, "community_name": "Community 70", "source_file": "backend/models/time_entry.go", "file_type": "code", "degree": 1}, {"id": "models_timeentry_stop", "label": ".Stop()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Stop()", "community": 70, "community_name": "Community 70", "source_file": "backend/models/time_entry.go", "file_type": "code", "degree": 1}, {"id": "models_timeentry_getduration", "label": ".GetDuration()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetDuration()", "community": 70, "community_name": "Community 70", "source_file": "backend/models/time_entry.go", "file_type": "code", "degree": 2}, {"id": "models_timeentry_getformattedduration", "label": ".GetFormattedDuration()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetFormattedDuration()", "community": 70, "community_name": "Community 70", "source_file": "backend/models/time_entry.go", "file_type": "code", "degree": 2}, {"id": "backend_models_ai_settings_go", "label": "ai_settings.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ai_settings.go", "community": 136, "community_name": "Community 136", "source_file": "backend/models/ai_settings.go", "file_type": "code", "degree": 1}, {"id": "models_useraisettings", "label": "UserAISettings", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserAISettings", "community": 136, "community_name": "Community 136", "source_file": "backend/models/ai_settings.go", "file_type": "code", "degree": 1}, {"id": "backend_models_video_bookmark_go", "label": "video_bookmark.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "video_bookmark.go", "community": 104, "community_name": "Community 104", "source_file": "backend/models/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "models_videobookmark", "label": "VideoBookmark", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoBookmark", "community": 104, "community_name": "Community 104", "source_file": "backend/models/video_bookmark.go", "file_type": "code", "degree": 2}, {"id": "models_videobookmark_tablename", "label": ".TableName()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".TableName()", "community": 104, "community_name": "Community 104", "source_file": "backend/models/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "backend_models_search_go", "label": "search.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "search.go", "community": 71, "community_name": "Community 71", "source_file": "backend/models/search.go", "file_type": "code", "degree": 5}, {"id": "models_contentembedding", "label": "ContentEmbedding", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentEmbedding", "community": 71, "community_name": "Community 71", "source_file": "backend/models/search.go", "file_type": "code", "degree": 2}, {"id": "models_savedsearch", "label": "SavedSearch", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SavedSearch", "community": 71, "community_name": "Community 71", "source_file": "backend/models/search.go", "file_type": "code", "degree": 1}, {"id": "models_savedsearchtag", "label": "SavedSearchTag", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SavedSearchTag", "community": 71, "community_name": "Community 71", "source_file": "backend/models/search.go", "file_type": "code", "degree": 1}, {"id": "models_searchanalytics", "label": "SearchAnalytics", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchAnalytics", "community": 71, "community_name": "Community 71", "source_file": "backend/models/search.go", "file_type": "code", "degree": 1}, {"id": "models_searchsuggestion", "label": "SearchSuggestion", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchSuggestion", "community": 71, "community_name": "Community 71", "source_file": "backend/models/search.go", "file_type": "code", "degree": 1}, {"id": "models_contentembedding_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 71, "community_name": "Community 71", "source_file": "backend/models/search.go", "file_type": "code", "degree": 1}, {"id": "backend_models_marketplace_go", "label": "marketplace.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "marketplace.go", "community": 53, "community_name": "Community 53", "source_file": "backend/models/marketplace.go", "file_type": "code", "degree": 6}, {"id": "models_marketplaceitem", "label": "MarketplaceItem", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MarketplaceItem", "community": 53, "community_name": "Community 53", "source_file": "backend/models/marketplace.go", "file_type": "code", "degree": 2}, {"id": "models_marketplacetag", "label": "MarketplaceTag", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MarketplaceTag", "community": 53, "community_name": "Community 53", "source_file": "backend/models/marketplace.go", "file_type": "code", "degree": 1}, {"id": "models_marketplacereview", "label": "MarketplaceReview", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MarketplaceReview", "community": 53, "community_name": "Community 53", "source_file": "backend/models/marketplace.go", "file_type": "code", "degree": 2}, {"id": "models_marketplacepurchase", "label": "MarketplacePurchase", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MarketplacePurchase", "community": 53, "community_name": "Community 53", "source_file": "backend/models/marketplace.go", "file_type": "code", "degree": 2}, {"id": "models_contentshare", "label": "ContentShare", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentShare", "community": 53, "community_name": "Community 53", "source_file": "backend/models/marketplace.go", "file_type": "code", "degree": 2}, {"id": "models_marketplaceitem_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 53, "community_name": "Community 53", "source_file": "backend/models/marketplace.go", "file_type": "code", "degree": 1}, {"id": "models_marketplacereview_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 53, "community_name": "Community 53", "source_file": "backend/models/marketplace.go", "file_type": "code", "degree": 1}, {"id": "models_marketplacepurchase_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 53, "community_name": "Community 53", "source_file": "backend/models/marketplace.go", "file_type": "code", "degree": 1}, {"id": "models_contentshare_beforecreate", "label": ".BeforeCreate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeforeCreate()", "community": 53, "community_name": "Community 53", "source_file": "backend/models/marketplace.go", "file_type": "code", "degree": 2}, {"id": "models_marketplace_generatesharetoken", "label": "generateShareToken()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateShareToken()", "community": 53, "community_name": "Community 53", "source_file": "backend/models/marketplace.go", "file_type": "code", "degree": 2}, {"id": "backend_models_course_go", "label": "course.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "course.go", "community": 105, "community_name": "Community 105", "source_file": "backend/models/course.go", "file_type": "code", "degree": 2}, {"id": "models_course", "label": "Course", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Course", "community": 105, "community_name": "Community 105", "source_file": "backend/models/course.go", "file_type": "code", "degree": 1}, {"id": "models_learningpathcourse", "label": "LearningPathCourse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LearningPathCourse", "community": 105, "community_name": "Community 105", "source_file": "backend/models/course.go", "file_type": "code", "degree": 1}, {"id": "backend_config_config_go", "label": "config.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "config.go", "community": 3, "community_name": "Community 3", "source_file": "backend/config/config.go", "file_type": "code", "degree": 7}, {"id": "config_serverconfig", "label": "ServerConfig", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ServerConfig", "community": 3, "community_name": "Community 3", "source_file": "backend/config/config.go", "file_type": "code", "degree": 1}, {"id": "config_config", "label": "Config", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Config", "community": 3, "community_name": "Community 3", "source_file": "backend/config/config.go", "file_type": "code", "degree": 3}, {"id": "config_databaseconfig", "label": "DatabaseConfig", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DatabaseConfig", "community": 3, "community_name": "Community 3", "source_file": "backend/config/config.go", "file_type": "code", "degree": 1}, {"id": "config_appconfig", "label": "AppConfig", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AppConfig", "community": 3, "community_name": "Community 3", "source_file": "backend/config/config.go", "file_type": "code", "degree": 1}, {"id": "config_config_load", "label": "Load()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Load()", "community": 3, "community_name": "Community 3", "source_file": "backend/config/config.go", "file_type": "code", "degree": 4}, {"id": "config_config_validate", "label": ".Validate()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".Validate()", "community": 4, "community_name": "Community 4", "source_file": "backend/config/config.go", "file_type": "code", "degree": 6}, {"id": "config_config_dsn", "label": ".DSN()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DSN()", "community": 3, "community_name": "Community 3", "source_file": "backend/config/config.go", "file_type": "code", "degree": 1}, {"id": "config_config_getenvwithdefault", "label": "getEnvWithDefault()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getEnvWithDefault()", "community": 3, "community_name": "Community 3", "source_file": "backend/config/config.go", "file_type": "code", "degree": 2}, {"id": "config_config_getdurationenv", "label": "getDurationEnv()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getDurationEnv()", "community": 3, "community_name": "Community 3", "source_file": "backend/config/config.go", "file_type": "code", "degree": 2}, {"id": "backend_config_database_go", "label": "database.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "database.go", "community": 14, "community_name": "Community 14", "source_file": "backend/config/database.go", "file_type": "code", "degree": 4}, {"id": "config_database_getjwtsecret", "label": "getJWTSecret()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getJWTSecret()", "community": 14, "community_name": "Community 14", "source_file": "backend/config/database.go", "file_type": "code", "degree": 1}, {"id": "config_database_shouldrunlegacysqlmigrations", "label": "shouldRunLegacySQLMigrations()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "shouldRunLegacySQLMigrations()", "community": 14, "community_name": "Community 14", "source_file": "backend/config/database.go", "file_type": "code", "degree": 2}, {"id": "config_database_initdatabase", "label": "InitDatabase()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "InitDatabase()", "community": 14, "community_name": "Community 14", "source_file": "backend/config/database.go", "file_type": "code", "degree": 7}, {"id": "config_database_getdb", "label": "GetDB()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "GetDB()", "community": 4, "community_name": "Community 4", "source_file": "backend/config/database.go", "file_type": "code", "degree": 95}, {"id": "backend_config_service_urls_go", "label": "service_urls.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "service_urls.go", "community": 171, "community_name": "Community 171", "source_file": "backend/config/service_urls.go", "file_type": "code", "degree": 0}, {"id": "backend_config_logger_go", "label": "logger.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "logger.go", "community": 14, "community_name": "Community 14", "source_file": "backend/config/logger.go", "file_type": "code", "degree": 3}, {"id": "config_logger_initlogger", "label": "InitLogger()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "InitLogger()", "community": 14, "community_name": "Community 14", "source_file": "backend/config/logger.go", "file_type": "code", "degree": 3}, {"id": "config_logger_getlogger", "label": "GetLogger()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetLogger()", "community": 14, "community_name": "Community 14", "source_file": "backend/config/logger.go", "file_type": "code", "degree": 1}, {"id": "config_logger_synclogger", "label": "SyncLogger()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SyncLogger()", "community": 14, "community_name": "Community 14", "source_file": "backend/config/logger.go", "file_type": "code", "degree": 1}, {"id": "backend_config_production_go", "label": "production.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "production.go", "community": 106, "community_name": "Community 106", "source_file": "backend/config/production.go", "file_type": "code", "degree": 2}, {"id": "config_productionconfig", "label": "ProductionConfig", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductionConfig", "community": 106, "community_name": "Community 106", "source_file": "backend/config/production.go", "file_type": "code", "degree": 1}, {"id": "config_production_defaultproductionconfig", "label": "DefaultProductionConfig()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DefaultProductionConfig()", "community": 106, "community_name": "Community 106", "source_file": "backend/config/production.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_ai_features_go", "label": "ai_features.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "ai_features.go", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 23}, {"id": "handlers_summarizecontentrequest", "label": "SummarizeContentRequest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SummarizeContentRequest", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 1}, {"id": "handlers_generatetasksuggestionsrequest", "label": "GenerateTaskSuggestionsRequest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateTaskSuggestionsRequest", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 1}, {"id": "handlers_generatetagsrequest", "label": "GenerateTagsRequest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateTagsRequest", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 1}, {"id": "handlers_generatecontentrequest", "label": "GenerateContentRequest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateContentRequest", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 1}, {"id": "handlers_ai_features_summarizecontent", "label": "SummarizeContent()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SummarizeContent()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 3}, {"id": "handlers_ai_features_gettasksuggestions", "label": "GetTaskSuggestions()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetTaskSuggestions()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 4}, {"id": "handlers_ai_features_generatetagsuggestions", "label": "GenerateTagSuggestions()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateTagSuggestions()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 4}, {"id": "handlers_ai_features_generatecontent", "label": "GenerateContent()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateContent()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 3}, {"id": "handlers_ai_features_getaiproviders", "label": "GetAIProviders()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetAIProviders()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 3}, {"id": "handlers_ai_features_getproviderdisplayname", "label": "getProviderDisplayName()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getProviderDisplayName()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 2}, {"id": "handlers_ai_features_getaisummaries", "label": "GetAISummaries()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetAISummaries()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 1}, {"id": "handlers_ai_features_gettasksuggestionslist", "label": "GetTaskSuggestionsList()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetTaskSuggestionsList()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 1}, {"id": "handlers_ai_features_accepttasksuggestion", "label": "AcceptTaskSuggestion()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AcceptTaskSuggestion()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 2}, {"id": "handlers_ai_features_dismisstasksuggestion", "label": "DismissTaskSuggestion()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DismissTaskSuggestion()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 1}, {"id": "handlers_aisummaryresponse", "label": "AISummaryResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AISummaryResponse", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 1}, {"id": "handlers_tasksuggestionresponse", "label": "TaskSuggestionResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TaskSuggestionResponse", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 1}, {"id": "handlers_tagsuggestionresponse", "label": "TagSuggestionResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TagSuggestionResponse", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 1}, {"id": "handlers_contentgenerationresponse", "label": "ContentGenerationResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentGenerationResponse", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 1}, {"id": "handlers_ai_features_generateaisummary", "label": "generateAISummary()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "generateAISummary()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 4}, {"id": "handlers_ai_features_generatetasksuggestions", "label": "generateTaskSuggestions()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "generateTaskSuggestions()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 4}, {"id": "handlers_ai_features_generateaicontent", "label": "generateAIContent()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "generateAIContent()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 4}, {"id": "handlers_ai_features_buildtaskcontext", "label": "buildTaskContext()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildTaskContext()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 2}, {"id": "handlers_ai_features_getprovidermodel", "label": "getProviderModel()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getProviderModel()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/ai_features.go", "file_type": "code", "degree": 5}, {"id": "backend_handlers_search_settings_go", "label": "search_settings.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "search_settings.go", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search_settings.go", "file_type": "code", "degree": 9}, {"id": "handlers_searchsettings", "label": "SearchSettings", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchSettings", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/search_settings.go", "file_type": "code", "degree": 2}, {"id": "handlers_search_settings_getsearchsettings", "label": "GetSearchSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetSearchSettings()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search_settings.go", "file_type": "code", "degree": 3}, {"id": "handlers_search_settings_updatesearchsettings", "label": "UpdateSearchSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateSearchSettings()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search_settings.go", "file_type": "code", "degree": 4}, {"id": "handlers_search_settings_gettestsearchsettings", "label": "GetTestSearchSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetTestSearchSettings()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search_settings.go", "file_type": "code", "degree": 2}, {"id": "handlers_search_settings_getsearchsettingsforapi", "label": "GetSearchSettingsForAPI()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetSearchSettingsForAPI()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search_settings.go", "file_type": "code", "degree": 5}, {"id": "handlers_search_settings_getdefaultsearchsettings", "label": "getDefaultSearchSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getDefaultSearchSettings()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search_settings.go", "file_type": "code", "degree": 5}, {"id": "handlers_search_settings_getenvwithdefault", "label": "getEnvWithDefault()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getEnvWithDefault()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search_settings.go", "file_type": "code", "degree": 3}, {"id": "handlers_search_settings_getintenvwithdefault", "label": "getIntEnvWithDefault()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getIntEnvWithDefault()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search_settings.go", "file_type": "code", "degree": 2}, {"id": "handlers_search_settings_getboolenvwithdefault", "label": "getBoolEnvWithDefault()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getBoolEnvWithDefault()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search_settings.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_youtube_channels_go", "label": "youtube_channels.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "youtube_channels.go", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube_channels.go", "file_type": "code", "degree": 4}, {"id": "handlers_youtubechannelrequest", "label": "YouTubeChannelRequest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeChannelRequest", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube_channels.go", "file_type": "code", "degree": 1}, {"id": "handlers_youtube_channels_getfireshipvideos", "label": "GetFireshipVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetFireshipVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube_channels.go", "file_type": "code", "degree": 5}, {"id": "handlers_youtube_channels_getnetworkchuckvideos", "label": "GetNetworkChuckVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetNetworkChuckVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube_channels.go", "file_type": "code", "degree": 5}, {"id": "handlers_youtube_channels_getchannelvideos", "label": "GetChannelVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetChannelVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube_channels.go", "file_type": "code", "degree": 5}, {"id": "backend_handlers_saved_search_go", "label": "saved_search.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "saved_search.go", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 15}, {"id": "handlers_savedsearchrequest", "label": "SavedSearchRequest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SavedSearchRequest", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_savedsearchresponse", "label": "SavedSearchResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SavedSearchResponse", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_saved_search_createsavedsearch", "label": "CreateSavedSearch()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateSavedSearch()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_saved_search_getusersavedsearches", "label": "GetUserSavedSearches()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetUserSavedSearches()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_saved_search_getsavedsearch", "label": "GetSavedSearch()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetSavedSearch()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_saved_search_updatesavedsearch", "label": "UpdateSavedSearch()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateSavedSearch()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_saved_search_deletesavedsearch", "label": "DeleteSavedSearch()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteSavedSearch()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_saved_search_runsavedsearch", "label": "RunSavedSearch()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RunSavedSearch()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 3}, {"id": "handlers_saved_search_getsavedsearchtags", "label": "GetSavedSearchTags()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetSavedSearchTags()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_saved_search_performsearchfromsavedsearch", "label": "performSearchFromSavedSearch()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "performSearchFromSavedSearch()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 5}, {"id": "handlers_saved_search_performenhancedsearch", "label": "performEnhancedSearch()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "performEnhancedSearch()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 3}, {"id": "handlers_saved_search_getstringvalue", "label": "getStringValue()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getStringValue()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 2}, {"id": "handlers_saved_search_getintvalue", "label": "getIntValue()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getIntValue()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 2}, {"id": "handlers_saved_search_min", "label": "min()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "min()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 4}, {"id": "handlers_saved_search_logsearchanalytics", "label": "logSearchAnalytics()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "logSearchAnalytics()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/saved_search.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_community_go", "label": "community.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "community.go", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 3}, {"id": "handlers_communityhandler", "label": "CommunityHandler", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CommunityHandler", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 14}, {"id": "handlers_community_newcommunityhandler", "label": "NewCommunityHandler()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewCommunityHandler()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 2}, {"id": "handlers_communityhandler_getchallenges", "label": ".GetChallenges()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetChallenges()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 1}, {"id": "handlers_communityhandler_getchallenge", "label": ".GetChallenge()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetChallenge()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 1}, {"id": "handlers_communityhandler_createchallenge", "label": ".CreateChallenge()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateChallenge()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 1}, {"id": "handlers_communityhandler_joinchallenge", "label": ".JoinChallenge()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".JoinChallenge()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 1}, {"id": "handlers_communityhandler_getmychallenges", "label": ".GetMyChallenges()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetMyChallenges()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 1}, {"id": "handlers_communityhandler_updatechallengeprogress", "label": ".UpdateChallengeProgress()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateChallengeProgress()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 1}, {"id": "handlers_communityhandler_getmentorshiprequests", "label": ".GetMentorshipRequests()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetMentorshipRequests()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 1}, {"id": "handlers_communityhandler_creatementorshiprequest", "label": ".CreateMentorshipRequest()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateMentorshipRequest()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 2}, {"id": "handlers_communityhandler_respondtomentorshiprequest", "label": ".RespondToMentorshipRequest()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".RespondToMentorshipRequest()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 1}, {"id": "handlers_communityhandler_getmymentorships", "label": ".GetMyMentorships()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetMyMentorships()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 1}, {"id": "handlers_communityhandler_creatementorshipsession", "label": ".CreateMentorshipSession()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateMentorshipSession()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 1}, {"id": "handlers_communityhandler_getmentorshipsessions", "label": ".GetMentorshipSessions()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetMentorshipSessions()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 1}, {"id": "handlers_communityhandler_getcommunitystats", "label": ".GetCommunityStats()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetCommunityStats()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 1}, {"id": "handlers_community_calculatematchscore", "label": "calculateMatchScore()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "calculateMatchScore()", "community": 35, "community_name": "Community 35", "source_file": "backend/handlers/community.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_learning_progress_go", "label": "learning_progress.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "learning_progress.go", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/learning_progress.go", "file_type": "code", "degree": 2}, {"id": "handlers_learningprogresshandler", "label": "LearningProgressHandler", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LearningProgressHandler", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/learning_progress.go", "file_type": "code", "degree": 7}, {"id": "handlers_learning_progress_newlearningprogresshandler", "label": "NewLearningProgressHandler()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewLearningProgressHandler()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/learning_progress.go", "file_type": "code", "degree": 2}, {"id": "handlers_learningprogresshandler_updatelearningprogress", "label": ".UpdateLearningProgress()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateLearningProgress()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/learning_progress.go", "file_type": "code", "degree": 2}, {"id": "handlers_learningprogresshandler_getlearningprogress", "label": ".GetLearningProgress()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetLearningProgress()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/learning_progress.go", "file_type": "code", "degree": 1}, {"id": "handlers_learningprogresshandler_getcourseprogress", "label": ".GetCourseProgress()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetCourseProgress()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/learning_progress.go", "file_type": "code", "degree": 2}, {"id": "handlers_learningprogresshandler_markcoursecompleted", "label": ".MarkCourseCompleted()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".MarkCourseCompleted()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/learning_progress.go", "file_type": "code", "degree": 1}, {"id": "handlers_learningprogresshandler_calculatelearningstreak", "label": ".calculateLearningStreak()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".calculateLearningStreak()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/learning_progress.go", "file_type": "code", "degree": 2}, {"id": "handlers_learningprogresshandler_generatelearninginsights", "label": ".generateLearningInsights()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateLearningInsights()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/learning_progress.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_note_go", "label": "note.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "note.go", "community": 72, "community_name": "Community 72", "source_file": "backend/handlers/note.go", "file_type": "code", "degree": 6}, {"id": "handlers_note_getnotes", "label": "GetNotes()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetNotes()", "community": 72, "community_name": "Community 72", "source_file": "backend/handlers/note.go", "file_type": "code", "degree": 1}, {"id": "handlers_note_createnote", "label": "CreateNote()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateNote()", "community": 72, "community_name": "Community 72", "source_file": "backend/handlers/note.go", "file_type": "code", "degree": 1}, {"id": "handlers_note_getnote", "label": "GetNote()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetNote()", "community": 72, "community_name": "Community 72", "source_file": "backend/handlers/note.go", "file_type": "code", "degree": 1}, {"id": "handlers_note_updatenote", "label": "UpdateNote()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateNote()", "community": 72, "community_name": "Community 72", "source_file": "backend/handlers/note.go", "file_type": "code", "degree": 1}, {"id": "handlers_note_deletenote", "label": "DeleteNote()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteNote()", "community": 72, "community_name": "Community 72", "source_file": "backend/handlers/note.go", "file_type": "code", "degree": 1}, {"id": "handlers_note_getnotestats", "label": "GetNoteStats()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetNoteStats()", "community": 72, "community_name": "Community 72", "source_file": "backend/handlers/note.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_web_scraping_go", "label": "web_scraping.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "web_scraping.go", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 2}, {"id": "handlers_webscrapinghandler", "label": "WebScrapingHandler", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "WebScrapingHandler", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 22}, {"id": "handlers_web_scraping_newwebscrapinghandler", "label": "NewWebScrapingHandler()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewWebScrapingHandler()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 2}, {"id": "handlers_webscrapinghandler_createscrapingjob", "label": ".CreateScrapingJob()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateScrapingJob()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 2}, {"id": "handlers_webscrapinghandler_getscrapingjobs", "label": ".GetScrapingJobs()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetScrapingJobs()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "handlers_webscrapinghandler_getscrapingjob", "label": ".GetScrapingJob()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetScrapingJob()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "handlers_webscrapinghandler_getscrapedcontent", "label": ".GetScrapedContent()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetScrapedContent()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "handlers_webscrapinghandler_getscrapedcontentlist", "label": ".GetScrapedContentList()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetScrapedContentList()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "handlers_webscrapinghandler_deletescrapingjob", "label": ".DeleteScrapingJob()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteScrapingJob()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "handlers_webscrapinghandler_deletescrapedcontent", "label": ".DeleteScrapedContent()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteScrapedContent()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "handlers_webscrapinghandler_searchscrapedcontent", "label": ".SearchScrapedContent()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".SearchScrapedContent()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "handlers_webscrapinghandler_processscrapingjob", "label": ".processScrapingJob()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".processScrapingJob()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 3}, {"id": "handlers_webscrapinghandler_scrapewebpage", "label": ".scrapeWebPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".scrapeWebPage()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 12}, {"id": "handlers_webscrapinghandler_extracttextfromhtml", "label": ".extractTextFromHTML()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractTextFromHTML()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 1}, {"id": "handlers_webscrapinghandler_estimatereadingtime", "label": ".estimateReadingTime()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".estimateReadingTime()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 2}, {"id": "handlers_webscrapinghandler_calculatequalityscore", "label": ".calculateQualityScore()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".calculateQualityScore()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 2}, {"id": "handlers_webscrapinghandler_getimageformat", "label": ".getImageFormat()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getImageFormat()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 3}, {"id": "handlers_webscrapinghandler_getdomainfromurl", "label": ".getDomainFromURL()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDomainFromURL()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 2}, {"id": "handlers_webscrapinghandler_getvideoplatform", "label": ".getVideoPlatform()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getVideoPlatform()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 4}, {"id": "handlers_webscrapinghandler_getvideoid", "label": ".getVideoID()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getVideoID()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 3}, {"id": "handlers_webscrapinghandler_extractkeywordsfromcontent", "label": ".extractKeywordsFromContent()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractKeywordsFromContent()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 4}, {"id": "handlers_webscrapinghandler_iscommonword", "label": ".isCommonWord()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".isCommonWord()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 2}, {"id": "handlers_webscrapinghandler_detectcontenttype", "label": ".detectContentType()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".detectContentType()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 5}, {"id": "handlers_webscrapinghandler_generatesummary", "label": ".generateSummary()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateSummary()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/web_scraping.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_task_go", "label": "task.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "task.go", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/task.go", "file_type": "code", "degree": 5}, {"id": "handlers_task_gettasks", "label": "GetTasks()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetTasks()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/task.go", "file_type": "code", "degree": 2}, {"id": "handlers_task_createtask", "label": "CreateTask()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateTask()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/task.go", "file_type": "code", "degree": 2}, {"id": "handlers_task_gettask", "label": "GetTask()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetTask()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/task.go", "file_type": "code", "degree": 2}, {"id": "handlers_task_updatetask", "label": "UpdateTask()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateTask()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/task.go", "file_type": "code", "degree": 2}, {"id": "handlers_task_deletetask", "label": "DeleteTask()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteTask()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/task.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_semantic_search_go", "label": "semantic_search.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "semantic_search.go", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 17}, {"id": "handlers_semanticsearchrequest", "label": "SemanticSearchRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SemanticSearchRequest", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_semanticsearchresponse", "label": "SemanticSearchResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SemanticSearchResponse", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_semanticsearchresult", "label": "SemanticSearchResult", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SemanticSearchResult", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_generateembeddingrequest", "label": "GenerateEmbeddingRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateEmbeddingRequest", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_generateembeddingresponse", "label": "GenerateEmbeddingResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateEmbeddingResponse", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 1}, {"id": "handlers_semantic_search_semanticsearch", "label": "SemanticSearch()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SemanticSearch()", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 4}, {"id": "handlers_semantic_search_generateembedding", "label": "GenerateEmbedding()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateEmbedding()", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 5}, {"id": "handlers_semantic_search_reindexcontent", "label": "ReindexContent()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ReindexContent()", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 3}, {"id": "handlers_semantic_search_simplehash", "label": "simpleHash()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "simpleHash()", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 2}, {"id": "handlers_semantic_search_findsimilarcontent", "label": "findSimilarContent()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "findSimilarContent()", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 5}, {"id": "handlers_semantic_search_cosinesimilarity", "label": "cosineSimilarity()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "cosineSimilarity()", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 2}, {"id": "handlers_semantic_search_buildsemanticsearchresult", "label": "buildSemanticSearchResult()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildSemanticSearchResult()", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 4}, {"id": "handlers_semantic_search_generatehighlights", "label": "generateHighlights()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateHighlights()", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 2}, {"id": "handlers_semantic_search_reindexusercontent", "label": "reindexUserContent()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "reindexUserContent()", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 3}, {"id": "handlers_semantic_search_upsertembedding", "label": "upsertEmbedding()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "upsertEmbedding()", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 3}, {"id": "handlers_semantic_search_normalizesemanticcontenttype", "label": "normalizeSemanticContentType()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeSemanticContentType()", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 3}, {"id": "handlers_semantic_search_compactsemantictext", "label": "compactSemanticText()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "compactSemanticText()", "community": 33, "community_name": "Community 33", "source_file": "backend/handlers/semantic_search.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_knowledge_base_go", "label": "knowledge_base.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "knowledge_base.go", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 4}, {"id": "handlers_knowledgebasehandler", "label": "KnowledgeBaseHandler", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "KnowledgeBaseHandler", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 15}, {"id": "handlers_knowledge_base_newknowledgebasehandler", "label": "NewKnowledgeBaseHandler()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewKnowledgeBaseHandler()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 2}, {"id": "handlers_knowledgebasehandler_createwikipage", "label": ".CreateWikiPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateWikiPage()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 7}, {"id": "handlers_knowledgebasehandler_getwikipages", "label": ".GetWikiPages()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetWikiPages()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 1}, {"id": "handlers_knowledgebasehandler_getwikipage", "label": ".GetWikiPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetWikiPage()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 1}, {"id": "handlers_knowledgebasehandler_updatewikipage", "label": ".UpdateWikiPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateWikiPage()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 7}, {"id": "handlers_knowledgebasehandler_deletewikipage", "label": ".DeleteWikiPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteWikiPage()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 1}, {"id": "handlers_knowledgebasehandler_createcategory", "label": ".CreateCategory()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateCategory()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 2}, {"id": "handlers_knowledgebasehandler_getcategories", "label": ".GetCategories()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetCategories()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 1}, {"id": "handlers_knowledgebasehandler_searchwikipages", "label": ".SearchWikiPages()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".SearchWikiPages()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 1}, {"id": "handlers_knowledge_base_generateslug", "label": "generateSlug()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateSlug()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 5}, {"id": "handlers_knowledge_base_estimatereadingtime", "label": "estimateReadingTime()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "estimateReadingTime()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 3}, {"id": "handlers_knowledgebasehandler_addtagstowikipage", "label": ".addTagsToWikiPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".addTagsToWikiPage()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 3}, {"id": "handlers_knowledgebasehandler_updatewikipagetags", "label": ".updateWikiPageTags()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateWikiPageTags()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 3}, {"id": "handlers_knowledgebasehandler_addcollaboratorstowikipage", "label": ".addCollaboratorsToWikiPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".addCollaboratorsToWikiPage()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 2}, {"id": "handlers_knowledgebasehandler_createwikiversion", "label": ".createWikiVersion()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createWikiVersion()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 5}, {"id": "handlers_knowledgebasehandler_getlastwikiversion", "label": ".getLastWikiVersion()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getLastWikiVersion()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 2}, {"id": "handlers_knowledgebasehandler_processbacklinks", "label": ".processBacklinks()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".processBacklinks()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/knowledge_base.go", "file_type": "code", "degree": 3}, {"id": "backend_handlers_teams_go", "label": "teams.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "teams.go", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 3}, {"id": "handlers_teamshandler", "label": "TeamsHandler", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamsHandler", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 12}, {"id": "handlers_teams_newteamshandler", "label": "NewTeamsHandler()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewTeamsHandler()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 2}, {"id": "handlers_teams_generateinvitationtoken", "label": "generateInvitationToken()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateInvitationToken()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 3}, {"id": "handlers_teamshandler_getteams", "label": ".GetTeams()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTeams()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 1}, {"id": "handlers_teamshandler_createteam", "label": ".CreateTeam()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateTeam()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 1}, {"id": "handlers_teamshandler_getteam", "label": ".GetTeam()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTeam()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 1}, {"id": "handlers_teamshandler_updateteam", "label": ".UpdateTeam()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateTeam()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 1}, {"id": "handlers_teamshandler_deleteteam", "label": ".DeleteTeam()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteTeam()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 1}, {"id": "handlers_teamshandler_invitemember", "label": ".InviteMember()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".InviteMember()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 2}, {"id": "handlers_teamshandler_acceptinvitation", "label": ".AcceptInvitation()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".AcceptInvitation()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 1}, {"id": "handlers_teamshandler_getteammembers", "label": ".GetTeamMembers()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTeamMembers()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 1}, {"id": "handlers_teamshandler_removemember", "label": ".RemoveMember()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".RemoveMember()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 1}, {"id": "handlers_teamshandler_getteamactivity", "label": ".GetTeamActivity()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTeamActivity()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 1}, {"id": "handlers_teamshandler_getteamstats", "label": ".GetTeamStats()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTeamStats()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/teams.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_analytics_go", "label": "analytics.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "analytics.go", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 3}, {"id": "handlers_analyticshandler", "label": "AnalyticsHandler", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "AnalyticsHandler", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 17}, {"id": "handlers_analytics_newanalyticshandler", "label": "NewAnalyticsHandler()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewAnalyticsHandler()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 2}, {"id": "handlers_analyticshandler_getdashboardanalytics", "label": ".GetDashboardAnalytics()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetDashboardAnalytics()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 1}, {"id": "handlers_analyticshandler_getproductivitymetrics", "label": ".GetProductivityMetrics()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetProductivityMetrics()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 2}, {"id": "handlers_analyticshandler_getlearninganalytics", "label": ".GetLearningAnalytics()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetLearningAnalytics()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 1}, {"id": "handlers_analyticshandler_getcontentanalytics", "label": ".GetContentAnalytics()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetContentAnalytics()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 1}, {"id": "handlers_analyticshandler_getgithubanalytics", "label": ".GetGitHubAnalytics()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetGitHubAnalytics()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 1}, {"id": "handlers_analyticshandler_getgoals", "label": ".GetGoals()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetGoals()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 1}, {"id": "handlers_analyticshandler_creategoal", "label": ".CreateGoal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateGoal()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 1}, {"id": "handlers_analyticshandler_updategoal", "label": ".UpdateGoal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateGoal()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 1}, {"id": "handlers_analyticshandler_deletegoal", "label": ".DeleteGoal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteGoal()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 1}, {"id": "handlers_analyticshandler_generateanalyticsreport", "label": ".GenerateAnalyticsReport()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".GenerateAnalyticsReport()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 3}, {"id": "handlers_analyticshandler_generatedailyanalytics", "label": ".GenerateDailyAnalytics()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".GenerateDailyAnalytics()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 3}, {"id": "handlers_analyticshandler_calculatestudystreak", "label": ".calculateStudyStreak()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".calculateStudyStreak()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 2}, {"id": "handlers_analyticshandler_calculateproductivityscore", "label": ".calculateProductivityScore()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".calculateProductivityScore()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 3}, {"id": "handlers_analyticshandler_generateproductivitymetrics", "label": ".generateProductivityMetrics()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateProductivityMetrics()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 3}, {"id": "handlers_analytics_calculatefocusscore", "label": "calculateFocusScore()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "calculateFocusScore()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 2}, {"id": "handlers_analyticshandler_generateinsights", "label": ".generateInsights()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateInsights()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 2}, {"id": "handlers_analyticshandler_generaterecommendations", "label": ".generateRecommendations()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateRecommendations()", "community": 16, "community_name": "Community 16", "source_file": "backend/handlers/analytics.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_bookmark_go", "label": "bookmark.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "bookmark.go", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/bookmark.go", "file_type": "code", "degree": 11}, {"id": "handlers_bookmark_getbookmarks", "label": "GetBookmarks()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetBookmarks()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/bookmark.go", "file_type": "code", "degree": 2}, {"id": "handlers_bookmark_createbookmark", "label": "CreateBookmark()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateBookmark()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/bookmark.go", "file_type": "code", "degree": 3}, {"id": "handlers_bookmark_getbookmark", "label": "GetBookmark()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetBookmark()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/bookmark.go", "file_type": "code", "degree": 2}, {"id": "handlers_bookmark_updatebookmark", "label": "UpdateBookmark()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateBookmark()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/bookmark.go", "file_type": "code", "degree": 2}, {"id": "handlers_bookmark_deletebookmark", "label": "DeleteBookmark()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteBookmark()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/bookmark.go", "file_type": "code", "degree": 2}, {"id": "handlers_bookmark_refreshbookmarkmetadata", "label": "RefreshBookmarkMetadata()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RefreshBookmarkMetadata()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/bookmark.go", "file_type": "code", "degree": 3}, {"id": "handlers_bookmark_getbookmarkmetadata", "label": "GetBookmarkMetadata()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetBookmarkMetadata()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/bookmark.go", "file_type": "code", "degree": 2}, {"id": "handlers_bookmark_getbookmarkcontent", "label": "GetBookmarkContent()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetBookmarkContent()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/bookmark.go", "file_type": "code", "degree": 2}, {"id": "handlers_bookmark_fetchpagecontentwithscreenshot", "label": "fetchPageContentWithScreenshot()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchPageContentWithScreenshot()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/bookmark.go", "file_type": "code", "degree": 5}, {"id": "handlers_bookmark_capturescreenshot", "label": "captureScreenshot()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "captureScreenshot()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/bookmark.go", "file_type": "code", "degree": 2}, {"id": "handlers_bookmark_generateenhancedpreviewhtml", "label": "generateEnhancedPreviewHTML()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateEnhancedPreviewHTML()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/bookmark.go", "file_type": "code", "degree": 3}, {"id": "backend_handlers_config_go", "label": "config.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "config.go", "community": 137, "community_name": "Community 137", "source_file": "backend/handlers/config.go", "file_type": "code", "degree": 1}, {"id": "handlers_config_getapiconfig", "label": "GetAPIConfig()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetAPIConfig()", "community": 137, "community_name": "Community 137", "source_file": "backend/handlers/config.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_messages_go", "label": "messages.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 29.3, "font": {"size": 12, "color": "#ffffff"}, "title": "messages.go", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 61}, {"id": "handlers_createconversationrequest", "label": "CreateConversationRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateConversationRequest", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_addconversationmemberrequest", "label": "AddConversationMemberRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AddConversationMemberRequest", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_attachmentinput", "label": "AttachmentInput", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AttachmentInput", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_referenceinput", "label": "ReferenceInput", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ReferenceInput", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_createmessagerequest", "label": "CreateMessageRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateMessageRequest", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_updatemessagerequest", "label": "UpdateMessageRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateMessageRequest", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_createreactionrequest", "label": "CreateReactionRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateReactionRequest", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_messagesearchrequest", "label": "MessageSearchRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MessageSearchRequest", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_suggestionactionrequest", "label": "SuggestionActionRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SuggestionActionRequest", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_createvaultitemrequest", "label": "CreateVaultItemRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateVaultItemRequest", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_sharevaultitemrequest", "label": "ShareVaultItemRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareVaultItemRequest", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_unsharevaultitemrequest", "label": "UnshareVaultItemRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UnshareVaultItemRequest", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_conversationlistitem", "label": "conversationListItem", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "conversationListItem", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 1}, {"id": "handlers_messages_getconversations", "label": "GetConversations()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetConversations()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 3}, {"id": "handlers_messages_createconversation", "label": "CreateConversation()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateConversation()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 7}, {"id": "handlers_messages_getconversation", "label": "GetConversation()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetConversation()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 4}, {"id": "handlers_messages_updateconversation", "label": "UpdateConversation()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateConversation()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 6}, {"id": "handlers_messages_addconversationmember", "label": "AddConversationMember()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AddConversationMember()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 7}, {"id": "handlers_messages_removeconversationmember", "label": "RemoveConversationMember()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RemoveConversationMember()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 6}, {"id": "handlers_messages_getconversationmessages", "label": "GetConversationMessages()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetConversationMessages()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 5}, {"id": "handlers_messages_createconversationmessage", "label": "CreateConversationMessage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateConversationMessage()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 14}, {"id": "handlers_messages_updatemessage", "label": "UpdateMessage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateMessage()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 6}, {"id": "handlers_messages_deletemessage", "label": "DeleteMessage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteMessage()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 6}, {"id": "handlers_messages_addmessagereaction", "label": "AddMessageReaction()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddMessageReaction()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 5}, {"id": "handlers_messages_removemessagereaction", "label": "RemoveMessageReaction()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RemoveMessageReaction()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 5}, {"id": "handlers_messages_searchmessages", "label": "SearchMessages()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchMessages()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 3}, {"id": "handlers_messages_getmessagesuggestions", "label": "GetMessageSuggestions()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetMessageSuggestions()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 4}, {"id": "handlers_messages_acceptmessagesuggestion", "label": "AcceptMessageSuggestion()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AcceptMessageSuggestion()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 6}, {"id": "handlers_messages_dismissmessagesuggestion", "label": "DismissMessageSuggestion()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DismissMessageSuggestion()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 4}, {"id": "handlers_messages_revealsensitivemessage", "label": "RevealSensitiveMessage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RevealSensitiveMessage()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 5}, {"id": "handlers_messages_getpasswordvaultitems", "label": "GetPasswordVaultItems()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetPasswordVaultItems()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_createpasswordvaultitem", "label": "CreatePasswordVaultItem()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CreatePasswordVaultItem()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 3}, {"id": "handlers_messages_sharepasswordvaultitem", "label": "SharePasswordVaultItem()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SharePasswordVaultItem()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 4}, {"id": "handlers_messages_revealpasswordvaultitem", "label": "RevealPasswordVaultItem()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RevealPasswordVaultItem()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 4}, {"id": "handlers_messages_unsharepasswordvaultitem", "label": "UnsharePasswordVaultItem()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UnsharePasswordVaultItem()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 3}, {"id": "handlers_messages_messageswebsocket", "label": "MessagesWebSocket()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MessagesWebSocket()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 6}, {"id": "handlers_messages_applysuggestionaction", "label": "applySuggestionAction()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "applySuggestionAction()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 9}, {"id": "handlers_messages_ensuremessagingdefaults", "label": "ensureMessagingDefaults()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ensureMessagingDefaults()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 8}, {"id": "handlers_messages_ensureglobalconversations", "label": "ensureGlobalConversations()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ensureGlobalConversations()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_ensureuserconversation", "label": "ensureUserConversation()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ensureUserConversation()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_getconversationwithmembership", "label": "getConversationWithMembership()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.1, "font": {"size": 12, "color": "#ffffff"}, "title": "getConversationWithMembership()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 16}, {"id": "handlers_messages_isconversationadmin", "label": "isConversationAdmin()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "isConversationAdmin()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 6}, {"id": "handlers_messages_canwritemessage", "label": "canWriteMessage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "canWriteMessage()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_getauthuserid", "label": "getAuthUserID()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.6, "font": {"size": 12, "color": "#ffffff"}, "title": "getAuthUserID()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 24}, {"id": "handlers_messages_parseuintparam", "label": "parseUintParam()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "parseUintParam()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 18}, {"id": "handlers_messages_parseuintany", "label": "parseUintAny()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parseUintAny()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_findexistingdm", "label": "findExistingDM()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "findExistingDM()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_usersexist", "label": "usersExist()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "usersExist()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_hasattachment", "label": "hasAttachment()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hasAttachment()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_masksensitivebody", "label": "maskSensitiveBody()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "maskSensitiveBody()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_extractsensitiveplaintext", "label": "extractSensitivePlaintext()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "extractSensitivePlaintext()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 6}, {"id": "handlers_messages_extractsensitivepayload", "label": "extractSensitivePayload()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "extractSensitivePayload()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_normalizeattachmentkind", "label": "normalizeAttachmentKind()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeAttachmentKind()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 3}, {"id": "handlers_messages_normalizereferencetype", "label": "normalizeReferenceType()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeReferenceType()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 3}, {"id": "handlers_messages_isreferencedeeplinkallowed", "label": "isReferenceDeepLinkAllowed()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isReferenceDeepLinkAllowed()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_canreferenceentity", "label": "canReferenceEntity()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "canReferenceEntity()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_compactmessagetitle", "label": "compactMessageTitle()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "compactMessageTitle()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_firsturlfromtext", "label": "firstURLFromText()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "firstURLFromText()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "handlers_messages_extractyoutubevideoid", "label": "extractYouTubeVideoID()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "extractYouTubeVideoID()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 3}, {"id": "handlers_messages_asstring", "label": "asString()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "asString()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 3}, {"id": "handlers_messages_isconversationmember", "label": "isConversationMember()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isConversationMember()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/messages.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_two_factor_go", "label": "two_factor.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "two_factor.go", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 17}, {"id": "handlers_totpsetuprequest", "label": "TOTPSetupRequest", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TOTPSetupRequest", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 1}, {"id": "handlers_totpsetupresponse", "label": "TOTPSetupResponse", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TOTPSetupResponse", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 1}, {"id": "handlers_totpverifyrequest", "label": "TOTPVerifyRequest", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TOTPVerifyRequest", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 1}, {"id": "handlers_totpenablerequest", "label": "TOTPEnableRequest", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TOTPEnableRequest", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 1}, {"id": "handlers_totpdisablerequest", "label": "TOTPDisableRequest", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TOTPDisableRequest", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 1}, {"id": "handlers_totploginrequest", "label": "TOTPLoginRequest", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TOTPLoginRequest", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 1}, {"id": "handlers_two_factor_encrypt", "label": "encrypt()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "encrypt()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 5}, {"id": "handlers_two_factor_decrypt", "label": "decrypt()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "decrypt()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 7}, {"id": "handlers_two_factor_generatebackupcodes", "label": "generateBackupCodes()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateBackupCodes()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 3}, {"id": "handlers_two_factor_setuptotp", "label": "SetupTOTP()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SetupTOTP()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 4}, {"id": "handlers_two_factor_verifytotp", "label": "VerifyTOTP()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "VerifyTOTP()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 3}, {"id": "handlers_two_factor_enabletotp", "label": "EnableTOTP()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EnableTOTP()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 4}, {"id": "handlers_two_factor_disabletotp", "label": "DisableTOTP()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DisableTOTP()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 4}, {"id": "handlers_two_factor_gettotpstatus", "label": "GetTOTPStatus()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetTOTPStatus()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 1}, {"id": "handlers_two_factor_verifybackupcode", "label": "VerifyBackupCode()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VerifyBackupCode()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 4}, {"id": "handlers_two_factor_loginwithtotp", "label": "LoginWithTOTP()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginWithTOTP()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 6}, {"id": "handlers_two_factor_regeneratebackupcodes", "label": "RegenerateBackupCodes()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RegenerateBackupCodes()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/two_factor.go", "file_type": "code", "degree": 6}, {"id": "backend_handlers_oauth_service_go", "label": "oauth_service.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "oauth_service.go", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/oauth_service.go", "file_type": "code", "degree": 11}, {"id": "handlers_centralizedoauthuser", "label": "centralizedOAuthUser", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "centralizedOAuthUser", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/oauth_service.go", "file_type": "code", "degree": 1}, {"id": "handlers_oauth_service_getoauthserviceurl", "label": "getOAuthServiceURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getOAuthServiceURL()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/oauth_service.go", "file_type": "code", "degree": 1}, {"id": "handlers_oauth_service_headervalue", "label": "headerValue()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "headerValue()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/oauth_service.go", "file_type": "code", "degree": 3}, {"id": "handlers_oauth_service_backendpublicbaseurl", "label": "backendPublicBaseURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "backendPublicBaseURL()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/oauth_service.go", "file_type": "code", "degree": 5}, {"id": "handlers_oauth_service_normalizefrontendredirecturl", "label": "normalizeFrontendRedirectURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeFrontendRedirectURL()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/oauth_service.go", "file_type": "code", "degree": 5}, {"id": "handlers_oauth_service_resolvefrontendredirecturl", "label": "resolveFrontendRedirectURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveFrontendRedirectURL()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/oauth_service.go", "file_type": "code", "degree": 3}, {"id": "handlers_oauth_service_buildgithubusercallbackurl", "label": "buildGitHubUserCallbackURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "buildGitHubUserCallbackURL()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/oauth_service.go", "file_type": "code", "degree": 3}, {"id": "handlers_oauth_service_buildfrontendcallbackredirecturl", "label": "buildFrontendCallbackRedirectURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildFrontendCallbackRedirectURL()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/oauth_service.go", "file_type": "code", "degree": 4}, {"id": "handlers_oauth_service_firstnonempty", "label": "firstNonEmpty()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "firstNonEmpty()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/oauth_service.go", "file_type": "code", "degree": 2}, {"id": "handlers_oauth_service_uniqueusername", "label": "uniqueUsername()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "uniqueUsername()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/oauth_service.go", "file_type": "code", "degree": 2}, {"id": "handlers_oauth_service_upsertcentralizedoauthuser", "label": "upsertCentralizedOAuthUser()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "upsertCentralizedOAuthUser()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/oauth_service.go", "file_type": "code", "degree": 7}, {"id": "backend_handlers_search_enhanced_go", "label": "search_enhanced.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "search_enhanced.go", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 13}, {"id": "handlers_searchfilters", "label": "SearchFilters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchFilters", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 1}, {"id": "handlers_daterange", "label": "DateRange", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DateRange", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 1}, {"id": "handlers_searchresult", "label": "SearchResult", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchResult", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 1}, {"id": "handlers_searchresponse", "label": "SearchResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchResponse", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 1}, {"id": "handlers_search_enhanced_enhancedsearch", "label": "EnhancedSearch()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "EnhancedSearch()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 7}, {"id": "handlers_search_enhanced_searchbookmarks", "label": "searchBookmarks()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "searchBookmarks()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 4}, {"id": "handlers_search_enhanced_searchtasks", "label": "searchTasks()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "searchTasks()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 4}, {"id": "handlers_search_enhanced_searchnotes", "label": "searchNotes()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "searchNotes()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 4}, {"id": "handlers_search_enhanced_searchfiles", "label": "searchFiles()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "searchFiles()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 4}, {"id": "handlers_search_enhanced_calculaterelevancescore", "label": "calculateRelevanceScore()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "calculateRelevanceScore()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 7}, {"id": "handlers_search_enhanced_getsearchsuggestions", "label": "getSearchSuggestions()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getSearchSuggestions()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 2}, {"id": "handlers_search_enhanced_savesearch", "label": "SaveSearch()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SaveSearch()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 1}, {"id": "handlers_search_enhanced_getsearchanalytics", "label": "GetSearchAnalytics()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetSearchAnalytics()", "community": 1, "community_name": "Community 1", "source_file": "backend/handlers/search_enhanced.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_learning_path_go", "label": "learning_path.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "learning_path.go", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/learning_path.go", "file_type": "code", "degree": 10}, {"id": "handlers_learning_path_getlearningpaths", "label": "GetLearningPaths()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetLearningPaths()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/learning_path.go", "file_type": "code", "degree": 2}, {"id": "handlers_learning_path_getlearningpath", "label": "GetLearningPath()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetLearningPath()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/learning_path.go", "file_type": "code", "degree": 2}, {"id": "handlers_learning_path_createlearningpath", "label": "CreateLearningPath()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateLearningPath()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/learning_path.go", "file_type": "code", "degree": 2}, {"id": "handlers_learning_path_updatelearningpath", "label": "UpdateLearningPath()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateLearningPath()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/learning_path.go", "file_type": "code", "degree": 2}, {"id": "handlers_learning_path_deletelearningpath", "label": "DeleteLearningPath()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteLearningPath()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/learning_path.go", "file_type": "code", "degree": 2}, {"id": "handlers_learning_path_enrollinlearningpath", "label": "EnrollInLearningPath()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EnrollInLearningPath()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/learning_path.go", "file_type": "code", "degree": 2}, {"id": "handlers_learning_path_getuserenrollments", "label": "GetUserEnrollments()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetUserEnrollments()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/learning_path.go", "file_type": "code", "degree": 2}, {"id": "handlers_learning_path_updateprogress", "label": "UpdateProgress()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateProgress()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/learning_path.go", "file_type": "code", "degree": 2}, {"id": "handlers_learning_path_ratelearningpath", "label": "RateLearningPath()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RateLearningPath()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/learning_path.go", "file_type": "code", "degree": 2}, {"id": "handlers_learning_path_getlearningpathcategories", "label": "GetLearningPathCategories()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetLearningPathCategories()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/learning_path.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_file_go", "label": "file.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "file.go", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 14}, {"id": "handlers_createfilesharerequest", "label": "createFileShareRequest", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createFileShareRequest", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 1}, {"id": "handlers_fileshareresponse", "label": "fileShareResponse", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fileShareResponse", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 1}, {"id": "handlers_file_generatesecuresharetoken", "label": "generateSecureShareToken()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateSecureShareToken()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 3}, {"id": "handlers_file_buildpublicshareurl", "label": "buildPublicShareURL()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildPublicShareURL()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 2}, {"id": "handlers_file_mapfileshareresponse", "label": "mapFileShareResponse()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mapFileShareResponse()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 4}, {"id": "handlers_file_getfiles", "label": "GetFiles()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetFiles()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 2}, {"id": "handlers_file_uploadfile", "label": "UploadFile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UploadFile()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 2}, {"id": "handlers_file_getfile", "label": "GetFile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetFile()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 1}, {"id": "handlers_file_downloadfile", "label": "DownloadFile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DownloadFile()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 1}, {"id": "handlers_file_createfileshare", "label": "CreateFileShare()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateFileShare()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 3}, {"id": "handlers_file_getfileshares", "label": "GetFileShares()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetFileShares()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 2}, {"id": "handlers_file_deletefileshare", "label": "DeleteFileShare()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteFileShare()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 1}, {"id": "handlers_file_deletefile", "label": "DeleteFile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteFile()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 1}, {"id": "handlers_file_determinefiletype", "label": "determineFileType()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "determineFileType()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/file.go", "file_type": "code", "degree": 4}, {"id": "backend_handlers_browser_extension_go", "label": "browser_extension.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "browser_extension.go", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/browser_extension.go", "file_type": "code", "degree": 11}, {"id": "handlers_createapikeyrequest", "label": "CreateAPIKeyRequest", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateAPIKeyRequest", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/browser_extension.go", "file_type": "code", "degree": 1}, {"id": "handlers_apikeyresponse", "label": "APIKeyResponse", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "APIKeyResponse", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/browser_extension.go", "file_type": "code", "degree": 1}, {"id": "handlers_browser_extension_generateapikey", "label": "GenerateAPIKey()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateAPIKey()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/browser_extension.go", "file_type": "code", "degree": 3}, {"id": "handlers_browser_extension_getapikeys", "label": "GetAPIKeys()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetAPIKeys()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/browser_extension.go", "file_type": "code", "degree": 2}, {"id": "handlers_browser_extension_revokeapikey", "label": "RevokeAPIKey()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RevokeAPIKey()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/browser_extension.go", "file_type": "code", "degree": 2}, {"id": "handlers_browser_extension_validateapikey", "label": "ValidateAPIKey()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidateAPIKey()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/browser_extension.go", "file_type": "code", "degree": 2}, {"id": "handlers_browser_extension_registerbrowserextension", "label": "RegisterBrowserExtension()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterBrowserExtension()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/browser_extension.go", "file_type": "code", "degree": 2}, {"id": "handlers_browser_extension_getbrowserextensions", "label": "GetBrowserExtensions()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetBrowserExtensions()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/browser_extension.go", "file_type": "code", "degree": 2}, {"id": "handlers_browser_extension_revokebrowserextension", "label": "RevokeBrowserExtension()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RevokeBrowserExtension()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/browser_extension.go", "file_type": "code", "degree": 2}, {"id": "handlers_browser_extension_downloadbrowserextension", "label": "DownloadBrowserExtension()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DownloadBrowserExtension()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/browser_extension.go", "file_type": "code", "degree": 2}, {"id": "handlers_browser_extension_createzip", "label": "createZip()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createZip()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/browser_extension.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_chat_go", "label": "chat.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "chat.go", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 13}, {"id": "handlers_mistralconfig", "label": "MistralConfig", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MistralConfig", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 1}, {"id": "handlers_chatrequest", "label": "ChatRequest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ChatRequest", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 1}, {"id": "handlers_chatresponse", "label": "ChatResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ChatResponse", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 1}, {"id": "handlers_tokenusage", "label": "TokenUsage", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TokenUsage", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 1}, {"id": "handlers_mistralmessage", "label": "MistralMessage", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MistralMessage", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 1}, {"id": "handlers_mistralrequest", "label": "MistralRequest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MistralRequest", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 1}, {"id": "handlers_mistralresponse", "label": "MistralResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MistralResponse", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 1}, {"id": "handlers_chat_getmistralconfig", "label": "GetMistralConfig()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetMistralConfig()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 1}, {"id": "handlers_chat_sendmessage", "label": "SendMessage()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SendMessage()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 6}, {"id": "handlers_chat_getsessions", "label": "GetSessions()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetSessions()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 1}, {"id": "handlers_chat_getsessionmessages", "label": "GetSessionMessages()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetSessionMessages()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 1}, {"id": "handlers_chat_deletesession", "label": "DeleteSession()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteSession()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 1}, {"id": "handlers_chat_callmistral", "label": "callMistral()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "callMistral()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_demo_go", "label": "demo.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "demo.go", "community": 2, "community_name": "Community 2", "source_file": "backend/handlers/demo.go", "file_type": "code", "degree": 1}, {"id": "handlers_demo_demostatus", "label": "DemoStatus()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DemoStatus()", "community": 2, "community_name": "Community 2", "source_file": "backend/handlers/demo.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_github_user_auth_go", "label": "github_user_auth.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "github_user_auth.go", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 22}, {"id": "handlers_githubusertokenresponse", "label": "gitHubUserTokenResponse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "gitHubUserTokenResponse", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_githubuseremail", "label": "gitHubUserEmail", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "gitHubUserEmail", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_githubuserinstallationsresponse", "label": "gitHubUserInstallationsResponse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "gitHubUserInstallationsResponse", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_github_user_auth_getgithubappclientid", "label": "getGitHubAppClientID()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitHubAppClientID()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_github_user_auth_getgithubappclientsecret", "label": "getGitHubAppClientSecret()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitHubAppClientSecret()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_github_user_auth_hasgithubuserauthconfig", "label": "hasGitHubUserAuthConfig()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "hasGitHubUserAuthConfig()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 6}, {"id": "handlers_github_user_auth_issecurerequest", "label": "isSecureRequest()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "isSecureRequest()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_github_user_auth_setgithubauthcookie", "label": "setGitHubAuthCookie()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "setGitHubAuthCookie()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 6}, {"id": "handlers_github_user_auth_storegithubauthflowstate", "label": "storeGitHubAuthFlowState()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "storeGitHubAuthFlowState()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 2}, {"id": "handlers_github_user_auth_cleargithubauthflowstate", "label": "clearGitHubAuthFlowState()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "clearGitHubAuthFlowState()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_github_user_auth_getgithubfrontendredirectfromcookie", "label": "getGitHubFrontendRedirectFromCookie()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitHubFrontendRedirectFromCookie()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_github_user_auth_postgithubtokenrequest", "label": "postGitHubTokenRequest()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "postGitHubTokenRequest()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 5}, {"id": "handlers_github_user_auth_exchangegithubauthorizationcode", "label": "exchangeGitHubAuthorizationCode()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "exchangeGitHubAuthorizationCode()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 7}, {"id": "handlers_github_user_auth_refreshgithubuseraccesstoken", "label": "refreshGitHubUserAccessToken()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "refreshGitHubUserAccessToken()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 7}, {"id": "handlers_github_user_auth_tokenexpiryfromseconds", "label": "tokenExpiryFromSeconds()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tokenExpiryFromSeconds()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 2}, {"id": "handlers_github_user_auth_upsertgithubuserauth", "label": "upsertGitHubUserAuth()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "upsertGitHubUserAuth()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 6}, {"id": "handlers_github_user_auth_getgithubuserauthrecord", "label": "getGitHubUserAuthRecord()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitHubUserAuthRecord()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_github_user_auth_decryptgithubusertoken", "label": "decryptGitHubUserToken()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "decryptGitHubUserToken()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_github_user_auth_getgithubuseraccesstokenforuser", "label": "getGitHubUserAccessTokenForUser()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitHubUserAccessTokenForUser()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 11}, {"id": "handlers_github_user_auth_fetchgithubprimaryverifiedemail", "label": "fetchGitHubPrimaryVerifiedEmail()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchGitHubPrimaryVerifiedEmail()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_github_user_auth_listgithubuserinstallations", "label": "listGitHubUserInstallations()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "listGitHubUserInstallations()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_github_user_auth_verifygithubinstallationaccessforuser", "label": "verifyGitHubInstallationAccessForUser()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "verifyGitHubInstallationAccessForUser()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_user_auth.go", "file_type": "code", "degree": 5}, {"id": "backend_handlers_member_go", "label": "member.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "member.go", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/member.go", "file_type": "code", "degree": 5}, {"id": "handlers_memberhandler", "label": "MemberHandler", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MemberHandler", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/member.go", "file_type": "code", "degree": 3}, {"id": "handlers_member_newmemberhandler", "label": "NewMemberHandler()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewMemberHandler()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/member.go", "file_type": "code", "degree": 2}, {"id": "handlers_memberhandler_getmembers", "label": ".GetMembers()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetMembers()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/member.go", "file_type": "code", "degree": 3}, {"id": "handlers_memberhandler_getmemberstats", "label": ".GetMemberStats()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetMemberStats()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/member.go", "file_type": "code", "degree": 1}, {"id": "handlers_member_getinitials", "label": "getInitials()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getInitials()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/member.go", "file_type": "code", "degree": 2}, {"id": "handlers_member_formattime", "label": "formatTime()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "formatTime()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/member.go", "file_type": "code", "degree": 3}, {"id": "handlers_member_plurals", "label": "pluralS()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "pluralS()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/member.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_github_go", "label": "github.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "github.go", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 13}, {"id": "handlers_githubuser", "label": "GitHubUser", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubUser", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 1}, {"id": "handlers_githubrepo", "label": "GitHubRepo", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubRepo", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 1}, {"id": "handlers_github_githublogin", "label": "GitHubLogin()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubLogin()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 5}, {"id": "handlers_github_githubcallback", "label": "GitHubCallback()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubCallback()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 11}, {"id": "handlers_github_getgithubuser", "label": "getGitHubUser()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitHubUser()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 4}, {"id": "handlers_github_getprimaryemail", "label": "getPrimaryEmail()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getPrimaryEmail()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 3}, {"id": "handlers_github_getcurrentuserwithgithub", "label": "GetCurrentUserWithGitHub()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetCurrentUserWithGitHub()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 1}, {"id": "handlers_github_getgithubrepos", "label": "GetGitHubRepos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "GetGitHubRepos()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 9}, {"id": "handlers_githubcontribution", "label": "GitHubContribution", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubContribution", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 1}, {"id": "handlers_githubactivityresponse", "label": "GitHubActivityResponse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubActivityResponse", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 1}, {"id": "handlers_github_fetchgithubrepos", "label": "fetchGitHubRepos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchGitHubRepos()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 4}, {"id": "handlers_github_fetchgithubcontributions", "label": "fetchGitHubContributions()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchGitHubContributions()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 3}, {"id": "handlers_github_getgithubactivity", "label": "GetGitHubActivity()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "GetGitHubActivity()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github.go", "file_type": "code", "degree": 7}, {"id": "backend_handlers_encryption_go", "label": "encryption.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "encryption.go", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/encryption.go", "file_type": "code", "degree": 11}, {"id": "handlers_encryptionrequest", "label": "EncryptionRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EncryptionRequest", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/encryption.go", "file_type": "code", "degree": 1}, {"id": "handlers_encryptionresponse", "label": "EncryptionResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EncryptionResponse", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/encryption.go", "file_type": "code", "degree": 1}, {"id": "handlers_encryption_encryptnotecontent", "label": "EncryptNoteContent()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EncryptNoteContent()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/encryption.go", "file_type": "code", "degree": 2}, {"id": "handlers_encryption_decryptnotecontent", "label": "DecryptNoteContent()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DecryptNoteContent()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/encryption.go", "file_type": "code", "degree": 2}, {"id": "handlers_encryption_createencryptednote", "label": "CreateEncryptedNote()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateEncryptedNote()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/encryption.go", "file_type": "code", "degree": 3}, {"id": "handlers_encryption_getencryptednote", "label": "GetEncryptedNote()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetEncryptedNote()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/encryption.go", "file_type": "code", "degree": 4}, {"id": "handlers_encryption_uploadencryptedfile", "label": "UploadEncryptedFile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UploadEncryptedFile()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/encryption.go", "file_type": "code", "degree": 5}, {"id": "handlers_encryption_downloadencryptedfile", "label": "DownloadEncryptedFile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DownloadEncryptedFile()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/encryption.go", "file_type": "code", "degree": 3}, {"id": "handlers_encryption_getencryptionstatus", "label": "GetEncryptionStatus()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetEncryptionStatus()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/encryption.go", "file_type": "code", "degree": 2}, {"id": "handlers_encryption_generaterandomstringforfile", "label": "generateRandomStringForFile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateRandomStringForFile()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/encryption.go", "file_type": "code", "degree": 2}, {"id": "handlers_encryption_determinefiletypeforencryption", "label": "determineFileTypeForEncryption()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "determineFileTypeForEncryption()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/encryption.go", "file_type": "code", "degree": 4}, {"id": "backend_handlers_chat_context_go", "label": "chat_context.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "chat_context.go", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat_context.go", "file_type": "code", "degree": 5}, {"id": "handlers_usercontext", "label": "UserContext", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserContext", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat_context.go", "file_type": "code", "degree": 1}, {"id": "handlers_chat_context_buildusercontext", "label": "buildUserContext()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildUserContext()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat_context.go", "file_type": "code", "degree": 2}, {"id": "handlers_chat_context_buildsystemprompt", "label": "buildSystemPrompt()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "buildSystemPrompt()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat_context.go", "file_type": "code", "degree": 3}, {"id": "handlers_chat_context_getcontextitemids", "label": "getContextItemIDs()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getContextItemIDs()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat_context.go", "file_type": "code", "degree": 2}, {"id": "handlers_chat_context_formatfilesize", "label": "formatFileSize()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "formatFileSize()", "community": 6, "community_name": "Community 6", "source_file": "backend/handlers/chat_context.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_goals_habits_go", "label": "goals_habits.go", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "goals_habits.go", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 2}, {"id": "handlers_goalshabitshandler", "label": "GoalsHabitsHandler", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GoalsHabitsHandler", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 14}, {"id": "handlers_goals_habits_newgoalshabitshandler", "label": "NewGoalsHabitsHandler()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewGoalsHabitsHandler()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 2}, {"id": "handlers_goalshabitshandler_creategoal", "label": ".CreateGoal()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateGoal()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "handlers_goalshabitshandler_getgoals", "label": ".GetGoals()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetGoals()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "handlers_goalshabitshandler_getgoal", "label": ".GetGoal()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetGoal()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "handlers_goalshabitshandler_updategoal", "label": ".UpdateGoal()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateGoal()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "handlers_goalshabitshandler_deletegoal", "label": ".DeleteGoal()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteGoal()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "handlers_goalshabitshandler_createhabit", "label": ".CreateHabit()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateHabit()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "handlers_goalshabitshandler_gethabits", "label": ".GetHabits()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetHabits()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "handlers_goalshabitshandler_gethabit", "label": ".GetHabit()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetHabit()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "handlers_goalshabitshandler_updatehabit", "label": ".UpdateHabit()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateHabit()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "handlers_goalshabitshandler_deletehabit", "label": ".DeleteHabit()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteHabit()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "handlers_goalshabitshandler_createhabitentry", "label": ".CreateHabitEntry()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateHabitEntry()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "handlers_goalshabitshandler_gethabitentries", "label": ".GetHabitEntries()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetHabitEntries()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "handlers_goalshabitshandler_getdashboardstats", "label": ".GetDashboardStats()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetDashboardStats()", "community": 39, "community_name": "Community 39", "source_file": "backend/handlers/goals_habits.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_performance_go", "label": "performance.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "performance.go", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/performance.go", "file_type": "code", "degree": 2}, {"id": "handlers_performancehandler", "label": "PerformanceHandler", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PerformanceHandler", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/performance.go", "file_type": "code", "degree": 5}, {"id": "handlers_performance_newperformancehandler", "label": "NewPerformanceHandler()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "NewPerformanceHandler()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/performance.go", "file_type": "code", "degree": 3}, {"id": "handlers_performancehandler_optimizedatabase", "label": ".OptimizeDatabase()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".OptimizeDatabase()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/performance.go", "file_type": "code", "degree": 1}, {"id": "handlers_performancehandler_getdatabasestats", "label": ".GetDatabaseStats()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetDatabaseStats()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/performance.go", "file_type": "code", "degree": 1}, {"id": "handlers_performancehandler_monitorperformance", "label": ".MonitorPerformance()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".MonitorPerformance()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/performance.go", "file_type": "code", "degree": 1}, {"id": "handlers_performancehandler_cleanupoldauditlogs", "label": ".CleanupOldAuditLogs()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CleanupOldAuditLogs()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/performance.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_integration_go", "label": "integration.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "integration.go", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler", "label": "IntegrationHandler", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "IntegrationHandler", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 26}, {"id": "handlers_integration_newintegrationhandler", "label": "NewIntegrationHandler()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewIntegrationHandler()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_getintegrations", "label": ".GetIntegrations()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetIntegrations()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 1}, {"id": "handlers_integrationhandler_getintegration", "label": ".GetIntegration()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetIntegration()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 1}, {"id": "handlers_integrationhandler_createintegration", "label": ".CreateIntegration()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateIntegration()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 1}, {"id": "handlers_integrationhandler_updateintegration", "label": ".UpdateIntegration()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateIntegration()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 1}, {"id": "handlers_integrationhandler_deleteintegration", "label": ".DeleteIntegration()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteIntegration()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 1}, {"id": "handlers_integrationhandler_authorizeintegration", "label": ".AuthorizeIntegration()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".AuthorizeIntegration()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 6}, {"id": "handlers_integrationhandler_oauthcallback", "label": ".OAuthCallback()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".OAuthCallback()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 6}, {"id": "handlers_integrationhandler_syncintegration", "label": ".SyncIntegration()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".SyncIntegration()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_getsynclogs", "label": ".GetSyncLogs()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetSyncLogs()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 1}, {"id": "handlers_integrationhandler_getslackauthurl", "label": ".getSlackAuthURL()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSlackAuthURL()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_getdiscordauthurl", "label": ".getDiscordAuthURL()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDiscordAuthURL()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_getnotionauthurl", "label": ".getNotionAuthURL()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getNotionAuthURL()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_getgoogleauthurl", "label": ".getGoogleAuthURL()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getGoogleAuthURL()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_getgithubauthurl", "label": ".getGitHubAuthURL()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getGitHubAuthURL()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_exchangeslackcode", "label": ".exchangeSlackCode()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".exchangeSlackCode()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_exchangediscordcode", "label": ".exchangeDiscordCode()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".exchangeDiscordCode()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_exchangenotioncode", "label": ".exchangeNotionCode()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".exchangeNotionCode()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_exchangegooglecode", "label": ".exchangeGoogleCode()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".exchangeGoogleCode()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_exchangegithubcode", "label": ".exchangeGitHubCode()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".exchangeGitHubCode()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_performsync", "label": ".performSync()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".performSync()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 7}, {"id": "handlers_integrationhandler_syncslack", "label": ".syncSlack()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".syncSlack()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_syncdiscord", "label": ".syncDiscord()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".syncDiscord()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_syncnotion", "label": ".syncNotion()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".syncNotion()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_syncgoogle", "label": ".syncGoogle()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".syncGoogle()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "handlers_integrationhandler_syncgithub", "label": ".syncGitHub()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".syncGitHub()", "community": 23, "community_name": "Community 23", "source_file": "backend/handlers/integration.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_health_go", "label": "health.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "health.go", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/health.go", "file_type": "code", "degree": 3}, {"id": "handlers_health_healthcheck", "label": "HealthCheck()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthCheck()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/health.go", "file_type": "code", "degree": 2}, {"id": "handlers_health_readinesscheck", "label": "ReadinessCheck()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ReadinessCheck()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/health.go", "file_type": "code", "degree": 2}, {"id": "handlers_health_livenesscheck", "label": "LivenessCheck()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LivenessCheck()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/health.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_github_backup_go", "label": "github_backup.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.7, "font": {"size": 12, "color": "#ffffff"}, "title": "github_backup.go", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 34}, {"id": "handlers_githubinstallationreposresponse", "label": "gitHubInstallationReposResponse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "gitHubInstallationReposResponse", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 1}, {"id": "handlers_githubappinstallationdetails", "label": "gitHubAppInstallationDetails", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "gitHubAppInstallationDetails", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 1}, {"id": "handlers_githubinstallationtokenresponse", "label": "gitHubInstallationTokenResponse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "gitHubInstallationTokenResponse", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 1}, {"id": "handlers_githubbackuprequest", "label": "gitHubBackupRequest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "gitHubBackupRequest", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 1}, {"id": "handlers_githubbackupresult", "label": "gitHubBackupResult", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "gitHubBackupResult", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 1}, {"id": "handlers_github_backup_getgithubappstatus", "label": "GetGitHubAppStatus()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "GetGitHubAppStatus()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 10}, {"id": "handlers_github_backup_getgithubappinstallurl", "label": "GetGitHubAppInstallURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "GetGitHubAppInstallURL()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 10}, {"id": "handlers_github_backup_githubappinstallcallback", "label": "GitHubAppInstallCallback()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubAppInstallCallback()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 11}, {"id": "handlers_github_backup_getgithubapprepos", "label": "GetGitHubAppRepos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "GetGitHubAppRepos()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 8}, {"id": "handlers_github_backup_getgithubbackups", "label": "GetGitHubBackups()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetGitHubBackups()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 4}, {"id": "handlers_github_backup_backupgithubrepositories", "label": "BackupGitHubRepositories()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BackupGitHubRepositories()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 14}, {"id": "handlers_github_backup_getgithubrequestuserid", "label": "getGitHubRequestUserID()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitHubRequestUserID()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 8}, {"id": "handlers_github_backup_getusergithubinstallation", "label": "getUserGitHubInstallation()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getUserGitHubInstallation()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 5}, {"id": "handlers_github_backup_resolvegithubbackuptoken", "label": "resolveGitHubBackupToken()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveGitHubBackupToken()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 7}, {"id": "handlers_github_backup_resolvecentralizedgithubbackuptoken", "label": "resolveCentralizedGitHubBackupToken()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveCentralizedGitHubBackupToken()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 7}, {"id": "handlers_github_backup_getgithubappaccesstokenforuser", "label": "getGitHubAppAccessTokenForUser()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitHubAppAccessTokenForUser()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 5}, {"id": "handlers_github_backup_upsertgithubbackuprecord", "label": "upsertGitHubBackupRecord()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "upsertGitHubBackupRecord()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 2}, {"id": "handlers_github_backup_normalizegithubrepofullname", "label": "normalizeGitHubRepoFullName()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeGitHubRepoFullName()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 2}, {"id": "handlers_github_backup_buildgithubbackuppath", "label": "buildGitHubBackupPath()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "buildGitHubBackupPath()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 3}, {"id": "handlers_github_backup_getgithubbackuproot", "label": "getGitHubBackupRoot()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitHubBackupRoot()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 4}, {"id": "handlers_github_backup_getgithubbackuptimeout", "label": "getGitHubBackupTimeout()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitHubBackupTimeout()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 2}, {"id": "handlers_github_backup_backupgithubrepositorymirror", "label": "backupGitHubRepositoryMirror()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "backupGitHubRepositoryMirror()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 3}, {"id": "handlers_github_backup_calculatedirectorysize", "label": "calculateDirectorySize()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "calculateDirectorySize()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 2}, {"id": "handlers_github_backup_fetchgithubinstallationrepos", "label": "fetchGitHubInstallationRepos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchGitHubInstallationRepos()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 4}, {"id": "handlers_github_backup_fetchgithubrepobyfullname", "label": "fetchGitHubRepoByFullName()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchGitHubRepoByFullName()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 4}, {"id": "handlers_github_backup_isgithubappinstallenabled", "label": "isGitHubAppInstallEnabled()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isGitHubAppInstallEnabled()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 4}, {"id": "handlers_github_backup_hasgithubappcredentials", "label": "hasGitHubAppCredentials()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hasGitHubAppCredentials()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 5}, {"id": "handlers_github_backup_getgithubappslug", "label": "getGitHubAppSlug()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitHubAppSlug()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 5}, {"id": "handlers_github_backup_creategithubinstallationaccesstoken", "label": "createGitHubInstallationAccessToken()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "createGitHubInstallationAccessToken()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 7}, {"id": "handlers_github_backup_fetchgithubappinstallationdetails", "label": "fetchGitHubAppInstallationDetails()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchGitHubAppInstallationDetails()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 6}, {"id": "handlers_github_backup_creategithubappjwt", "label": "createGitHubAppJWT()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createGitHubAppJWT()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 5}, {"id": "handlers_github_backup_loadgithubappprivatekey", "label": "loadGitHubAppPrivateKey()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadGitHubAppPrivateKey()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 4}, {"id": "handlers_github_backup_redirecttogithubintegrationpage", "label": "redirectToGitHubIntegrationPage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "redirectToGitHubIntegrationPage()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 2}, {"id": "handlers_github_backup_truncatestring", "label": "truncateString()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "truncateString()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/github_backup.go", "file_type": "code", "degree": 12}, {"id": "backend_handlers_youtube_go", "label": "youtube.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "youtube.go", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube.go", "file_type": "code", "degree": 11}, {"id": "handlers_youtubesearchrequest", "label": "YouTubeSearchRequest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeSearchRequest", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube.go", "file_type": "code", "degree": 1}, {"id": "handlers_youtubevideodetailsrequest", "label": "YouTubeVideoDetailsRequest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeVideoDetailsRequest", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube.go", "file_type": "code", "degree": 1}, {"id": "handlers_youtubechannelvideosrequest", "label": "YouTubeChannelVideosRequest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeChannelVideosRequest", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube.go", "file_type": "code", "degree": 1}, {"id": "handlers_youtube_searchyoutube", "label": "SearchYouTube()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchYouTube()", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube.go", "file_type": "code", "degree": 2}, {"id": "handlers_youtube_getyoutubevideodetails", "label": "GetYouTubeVideoDetails()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetYouTubeVideoDetails()", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube.go", "file_type": "code", "degree": 1}, {"id": "handlers_youtubechannelurlrequest", "label": "YouTubeChannelURLRequest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeChannelURLRequest", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube.go", "file_type": "code", "degree": 1}, {"id": "handlers_youtube_getyoutubechannelvideosfromurl", "label": "GetYouTubeChannelVideosFromURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetYouTubeChannelVideosFromURL()", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube.go", "file_type": "code", "degree": 2}, {"id": "handlers_youtube_getyoutubechannelvideos", "label": "GetYouTubeChannelVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetYouTubeChannelVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube.go", "file_type": "code", "degree": 1}, {"id": "handlers_youtube_getyoutubetrending", "label": "GetYouTubeTrending()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetYouTubeTrending()", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube.go", "file_type": "code", "degree": 2}, {"id": "handlers_youtube_getpredefinedchannelvideos", "label": "GetPredefinedChannelVideos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetPredefinedChannelVideos()", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube.go", "file_type": "code", "degree": 1}, {"id": "handlers_youtube_youtubesearchtest", "label": "YouTubeSearchTest()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "YouTubeSearchTest()", "community": 10, "community_name": "Community 10", "source_file": "backend/handlers/youtube.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_calendar_go", "label": "calendar.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "calendar.go", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 3}, {"id": "handlers_calendarhandler", "label": "CalendarHandler", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarHandler", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 10}, {"id": "handlers_calendar_newcalendarhandler", "label": "NewCalendarHandler()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewCalendarHandler()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 2}, {"id": "handlers_calendareventrequest", "label": "CalendarEventRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarEventRequest", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 1}, {"id": "handlers_calendarhandler_getevents", "label": ".GetEvents()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetEvents()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 1}, {"id": "handlers_calendarhandler_getevent", "label": ".GetEvent()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetEvent()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 1}, {"id": "handlers_calendarhandler_createevent", "label": ".CreateEvent()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateEvent()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 1}, {"id": "handlers_calendarhandler_updateevent", "label": ".UpdateEvent()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateEvent()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 1}, {"id": "handlers_calendarhandler_deleteevent", "label": ".DeleteEvent()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteEvent()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 1}, {"id": "handlers_calendarhandler_getupcomingevents", "label": ".GetUpcomingEvents()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetUpcomingEvents()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 1}, {"id": "handlers_calendarhandler_gettodayevents", "label": ".GetTodayEvents()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTodayEvents()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 1}, {"id": "handlers_calendarhandler_getdeadlines", "label": ".GetDeadlines()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetDeadlines()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 1}, {"id": "handlers_calendarhandler_toggleeventcompletion", "label": ".ToggleEventCompletion()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ToggleEventCompletion()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/calendar.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_social_go", "label": "social.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "social.go", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/social.go", "file_type": "code", "degree": 2}, {"id": "handlers_socialhandler", "label": "SocialHandler", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SocialHandler", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/social.go", "file_type": "code", "degree": 7}, {"id": "handlers_social_newsocialhandler", "label": "NewSocialHandler()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewSocialHandler()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/social.go", "file_type": "code", "degree": 2}, {"id": "handlers_socialhandler_getprofile", "label": ".GetProfile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetProfile()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/social.go", "file_type": "code", "degree": 1}, {"id": "handlers_socialhandler_updateprofile", "label": ".UpdateProfile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateProfile()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/social.go", "file_type": "code", "degree": 1}, {"id": "handlers_socialhandler_followuser", "label": ".FollowUser()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".FollowUser()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/social.go", "file_type": "code", "degree": 1}, {"id": "handlers_socialhandler_getfollowers", "label": ".GetFollowers()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetFollowers()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/social.go", "file_type": "code", "degree": 1}, {"id": "handlers_socialhandler_getfollowing", "label": ".GetFollowing()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetFollowing()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/social.go", "file_type": "code", "degree": 1}, {"id": "handlers_socialhandler_searchusers", "label": ".SearchUsers()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".SearchUsers()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/social.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_updates_go", "label": "updates.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 19.8, "font": {"size": 12, "color": "#ffffff"}, "title": "updates.go", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 31}, {"id": "handlers_updateinfo", "label": "UpdateInfo", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateInfo", "community": 7, "community_name": "Community 7", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_updatestatus", "label": "UpdateStatus", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateStatus", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 1}, {"id": "handlers_updaterequest", "label": "UpdateRequest", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateRequest", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 1}, {"id": "handlers_updates_init", "label": "init()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "init()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 1}, {"id": "handlers_updates_getcurrentversion", "label": "getCurrentVersion()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getCurrentVersion()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 3}, {"id": "handlers_updates_checkforupdates", "label": "CheckForUpdates()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CheckForUpdates()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 3}, {"id": "handlers_updates_installupdate", "label": "InstallUpdate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "InstallUpdate()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_updates_getupdateprogress", "label": "GetUpdateProgress()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetUpdateProgress()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 1}, {"id": "handlers_updates_updateprogresswebsocket", "label": "UpdateProgressWebSocket()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateProgressWebSocket()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 1}, {"id": "handlers_updates_checkforupdateswithdocker", "label": "checkForUpdatesWithDocker()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "checkForUpdatesWithDocker()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 5}, {"id": "handlers_updates_getlatestgithubrelease", "label": "getLatestGitHubRelease()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getLatestGitHubRelease()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 3}, {"id": "handlers_updates_getlateststablerelease", "label": "getLatestStableRelease()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getLatestStableRelease()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_updates_checkforupdateswithdockerregistry", "label": "checkForUpdatesWithDockerRegistry()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "checkForUpdatesWithDockerRegistry()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_updates_getimageid", "label": "getImageID()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getImageID()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 1}, {"id": "handlers_updates_pullimage", "label": "pullImage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pullImage()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 1}, {"id": "handlers_updates_isnewerversion", "label": "isNewerVersion()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isNewerVersion()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_updates_performupdate", "label": "performUpdate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "performUpdate()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 6}, {"id": "handlers_updates_updatewithdockercompose", "label": "updateWithDockerCompose()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "updateWithDockerCompose()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_updates_downloadupdate", "label": "downloadUpdate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "downloadUpdate()", "community": 11, "community_name": "Community 11", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_progresswriter", "label": "progressWriter", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "progressWriter", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_progresswriter_write", "label": ".Write()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Write()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 1}, {"id": "handlers_updates_verifychecksum", "label": "verifyChecksum()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "verifyChecksum()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_updates_extractandinstall", "label": "extractAndInstall()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "extractAndInstall()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_updates_extractfile", "label": "extractFile()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "extractFile()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_updates_backupuserdata", "label": "backupUserData()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "backupUserData()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 4}, {"id": "handlers_updates_applyupdate", "label": "applyUpdate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "applyUpdate()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 1}, {"id": "handlers_updates_restartapplication", "label": "restartApplication()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "restartApplication()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_updates_broadcastprogress", "label": "broadcastProgress()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "broadcastProgress()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_updates_getupdatestatusstring", "label": "getUpdateStatusString()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getUpdateStatusString()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 2}, {"id": "handlers_updates_rollbackupdate", "label": "rollbackUpdate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "rollbackUpdate()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 4}, {"id": "handlers_updates_copyfile", "label": "copyFile()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "copyFile()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 4}, {"id": "handlers_updates_copydirectory", "label": "copyDirectory()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "copyDirectory()", "community": 17, "community_name": "Community 17", "source_file": "backend/handlers/updates.go", "file_type": "code", "degree": 4}, {"id": "backend_handlers_update_settings_go", "label": "update_settings.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "update_settings.go", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/update_settings.go", "file_type": "code", "degree": 6}, {"id": "handlers_updatesettings", "label": "UpdateSettings", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateSettings", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/update_settings.go", "file_type": "code", "degree": 1}, {"id": "handlers_update_settings_getupdatesettings", "label": "GetUpdateSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetUpdateSettings()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/update_settings.go", "file_type": "code", "degree": 3}, {"id": "handlers_update_settings_updateupdatesettings", "label": "UpdateUpdateSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateUpdateSettings()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/update_settings.go", "file_type": "code", "degree": 3}, {"id": "handlers_update_settings_gettestupdatesettings", "label": "GetTestUpdateSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetTestUpdateSettings()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/update_settings.go", "file_type": "code", "degree": 2}, {"id": "handlers_update_settings_getupdatesettingsforapi", "label": "GetUpdateSettingsForAPI()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetUpdateSettingsForAPI()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/update_settings.go", "file_type": "code", "degree": 3}, {"id": "handlers_update_settings_getdefaultupdatesettings", "label": "getDefaultUpdateSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getDefaultUpdateSettings()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/update_settings.go", "file_type": "code", "degree": 5}, {"id": "backend_handlers_github_app_auth_test_go", "label": "github_app_auth_test.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "github_app_auth_test.go", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/github_app_auth_test.go", "file_type": "code", "degree": 6}, {"id": "handlers_github_app_auth_test_setupgithubauthtestdb", "label": "setupGitHubAuthTestDB()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "setupGitHubAuthTestDB()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/github_app_auth_test.go", "file_type": "code", "degree": 4}, {"id": "handlers_github_app_auth_test_withcontrolservicebaseurl", "label": "withControlServiceBaseURL()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "withControlServiceBaseURL()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/github_app_auth_test.go", "file_type": "code", "degree": 5}, {"id": "handlers_github_app_auth_test_testgithubloginredirectstocontrolservice", "label": "TestGitHubLoginRedirectsToControlService()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TestGitHubLoginRedirectsToControlService()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/github_app_auth_test.go", "file_type": "code", "degree": 3}, {"id": "handlers_github_app_auth_test_testhandleoauthcallbackstorescontrollersessionandredirects", "label": "TestHandleOAuthCallbackStoresControllerSessionAndRedirects()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TestHandleOAuthCallbackStoresControllerSessionAndRedirects()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/github_app_auth_test.go", "file_type": "code", "degree": 6}, {"id": "handlers_github_app_auth_test_testgetgithubreposusescontrolserviceandpersistsrefreshedtoken", "label": "TestGetGitHubReposUsesControlServiceAndPersistsRefreshedToken()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TestGetGitHubReposUsesControlServiceAndPersistsRefreshedToken()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/github_app_auth_test.go", "file_type": "code", "degree": 8}, {"id": "handlers_github_app_auth_test_testgithubappinstallcallbackrejectsinaccessibleinstallationviacontrolservice", "label": "TestGitHubAppInstallCallbackRejectsInaccessibleInstallationViaControlService()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TestGitHubAppInstallCallbackRejectsInaccessibleInstallationViaControlService()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/github_app_auth_test.go", "file_type": "code", "degree": 7}, {"id": "backend_handlers_control_service_auth_go", "label": "control_service_auth.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.8, "font": {"size": 12, "color": "#ffffff"}, "title": "control_service_auth.go", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 28}, {"id": "handlers_controlservicetokenvalidationresponse", "label": "controlServiceTokenValidationResponse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "controlServiceTokenValidationResponse", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_controlserviceerrorresponse", "label": "controlServiceErrorResponse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "controlServiceErrorResponse", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_controlservicegithubappinfo", "label": "controlServiceGitHubAppInfo", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "controlServiceGitHubAppInfo", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_controlserviceinstallationverification", "label": "controlServiceInstallationVerification", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "controlServiceInstallationVerification", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_controlserviceaccesstokenpayload", "label": "controlServiceAccessTokenPayload", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "controlServiceAccessTokenPayload", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_control_service_auth_storecontrolserviceauthflowstate", "label": "storeControlServiceAuthFlowState()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "storeControlServiceAuthFlowState()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_control_service_auth_clearcontrolserviceauthflowstate", "label": "clearControlServiceAuthFlowState()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "clearControlServiceAuthFlowState()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_control_service_auth_getcontrolservicefrontendredirectfromcookie", "label": "getControlServiceFrontendRedirectFromCookie()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getControlServiceFrontendRedirectFromCookie()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_control_service_auth_buildcontrolservicecallbackurl", "label": "buildControlServiceCallbackURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "buildControlServiceCallbackURL()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_control_service_auth_buildgithubappinstallcallbackurl", "label": "buildGitHubAppInstallCallbackURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "buildGitHubAppInstallCallbackURL()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_control_service_auth_buildcontrolservicegithubstarturl", "label": "buildControlServiceGitHubStartURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "buildControlServiceGitHubStartURL()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_control_service_auth_controlserviceclient", "label": "controlServiceClient()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "controlServiceClient()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_control_service_auth_parsecontrolserviceerror", "label": "parseControlServiceError()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "parseControlServiceError()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_control_service_auth_validatecontrolservicetoken", "label": "validateControlServiceToken()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "validateControlServiceToken()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 5}, {"id": "handlers_control_service_auth_upsertcontrolservicesession", "label": "upsertControlServiceSession()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "upsertControlServiceSession()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_control_service_auth_getcontrolservicesessionrecord", "label": "getControlServiceSessionRecord()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "getControlServiceSessionRecord()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 9}, {"id": "handlers_control_service_auth_getcontrolservicetokenforuser", "label": "getControlServiceTokenForUser()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getControlServiceTokenForUser()", "community": 13, "community_name": "Community 13", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 5}, {"id": "handlers_control_service_auth_persistcontrolservicetoken", "label": "persistControlServiceToken()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "persistControlServiceToken()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_control_service_auth_performcontrolservicerequest", "label": "performControlServiceRequest()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "performControlServiceRequest()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 12}, {"id": "handlers_control_service_auth_fetchcontrolservicegithubrepos", "label": "fetchControlServiceGitHubRepos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchControlServiceGitHubRepos()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_control_service_auth_fetchcontrolservicegithubappinfo", "label": "fetchControlServiceGitHubAppInfo()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchControlServiceGitHubAppInfo()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_control_service_auth_fetchcontrolservicegithubappinstallurl", "label": "fetchControlServiceGitHubAppInstallURL()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchControlServiceGitHubAppInstallURL()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_control_service_auth_verifycontrolservicegithubinstallation", "label": "verifyControlServiceGitHubInstallation()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "verifyControlServiceGitHubInstallation()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_control_service_auth_fetchcontrolservicegithubapprepos", "label": "fetchControlServiceGitHubAppRepos()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchControlServiceGitHubAppRepos()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_control_service_auth_fetchcontrolservicegithubuseraccesstoken", "label": "fetchControlServiceGitHubUserAccessToken()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchControlServiceGitHubUserAccessToken()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 5}, {"id": "handlers_control_service_auth_fetchcontrolservicegithubinstallationaccesstoken", "label": "fetchControlServiceGitHubInstallationAccessToken()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchControlServiceGitHubInstallationAccessToken()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_control_service_auth_handleoauthcallback", "label": "HandleOAuthCallback()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleOAuthCallback()", "community": 0, "community_name": "Community 0", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 10}, {"id": "handlers_control_service_auth_generaterandomstring", "label": "generateRandomString()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "generateRandomString()", "community": 12, "community_name": "Community 12", "source_file": "backend/handlers/control_service_auth.go", "file_type": "code", "degree": 4}, {"id": "backend_handlers_time_entry_go", "label": "time_entry.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "time_entry.go", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/time_entry.go", "file_type": "code", "degree": 4}, {"id": "handlers_timeentryhandler", "label": "TimeEntryHandler", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TimeEntryHandler", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/time_entry.go", "file_type": "code", "degree": 8}, {"id": "handlers_time_entry_newtimeentryhandler", "label": "NewTimeEntryHandler()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewTimeEntryHandler()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/time_entry.go", "file_type": "code", "degree": 2}, {"id": "handlers_createtimeentryrequest", "label": "CreateTimeEntryRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateTimeEntryRequest", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/time_entry.go", "file_type": "code", "degree": 1}, {"id": "handlers_updatetimeentryrequest", "label": "UpdateTimeEntryRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateTimeEntryRequest", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/time_entry.go", "file_type": "code", "degree": 1}, {"id": "handlers_timeentryhandler_gettimeentries", "label": ".GetTimeEntries()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTimeEntries()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/time_entry.go", "file_type": "code", "degree": 1}, {"id": "handlers_timeentryhandler_gettimeentry", "label": ".GetTimeEntry()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTimeEntry()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/time_entry.go", "file_type": "code", "degree": 1}, {"id": "handlers_timeentryhandler_createtimeentry", "label": ".CreateTimeEntry()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateTimeEntry()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/time_entry.go", "file_type": "code", "degree": 1}, {"id": "handlers_timeentryhandler_updatetimeentry", "label": ".UpdateTimeEntry()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateTimeEntry()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/time_entry.go", "file_type": "code", "degree": 1}, {"id": "handlers_timeentryhandler_stoptimeentry", "label": ".StopTimeEntry()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".StopTimeEntry()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/time_entry.go", "file_type": "code", "degree": 1}, {"id": "handlers_timeentryhandler_deletetimeentry", "label": ".DeleteTimeEntry()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteTimeEntry()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/time_entry.go", "file_type": "code", "degree": 1}, {"id": "handlers_timeentryhandler_gettimestats", "label": ".GetTimeStats()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTimeStats()", "community": 3, "community_name": "Community 3", "source_file": "backend/handlers/time_entry.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_admin_go", "label": "admin.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "admin.go", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/admin.go", "file_type": "code", "degree": 8}, {"id": "handlers_admin_adminmiddleware", "label": "AdminMiddleware()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminMiddleware()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/admin.go", "file_type": "code", "degree": 3}, {"id": "handlers_admin_admingetalllearningpaths", "label": "AdminGetAllLearningPaths()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminGetAllLearningPaths()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/admin.go", "file_type": "code", "degree": 2}, {"id": "handlers_admin_adminreviewlearningpath", "label": "AdminReviewLearningPath()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminReviewLearningPath()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/admin.go", "file_type": "code", "degree": 2}, {"id": "handlers_admin_admingetusers", "label": "AdminGetUsers()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminGetUsers()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/admin.go", "file_type": "code", "degree": 2}, {"id": "handlers_admin_admincreateuser", "label": "AdminCreateUser()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminCreateUser()", "community": 5, "community_name": "Community 5", "source_file": "backend/handlers/admin.go", "file_type": "code", "degree": 3}, {"id": "handlers_admin_adminupdateuserrole", "label": "AdminUpdateUserRole()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminUpdateUserRole()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/admin.go", "file_type": "code", "degree": 2}, {"id": "handlers_admin_admingetstats", "label": "AdminGetStats()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminGetStats()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/admin.go", "file_type": "code", "degree": 2}, {"id": "handlers_admin_admindeletelearningpath", "label": "AdminDeleteLearningPath()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminDeleteLearningPath()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/admin.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_ai_recommendations_go", "label": "ai_recommendations.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ai_recommendations.go", "community": 20, "community_name": "Community 20", "source_file": "backend/handlers/ai_recommendations.go", "file_type": "code", "degree": 2}, {"id": "handlers_airecommendationhandler", "label": "AIRecommendationHandler", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AIRecommendationHandler", "community": 20, "community_name": "Community 20", "source_file": "backend/handlers/ai_recommendations.go", "file_type": "code", "degree": 8}, {"id": "handlers_ai_recommendations_newairecommendationhandler", "label": "NewAIRecommendationHandler()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "NewAIRecommendationHandler()", "community": 20, "community_name": "Community 20", "source_file": "backend/handlers/ai_recommendations.go", "file_type": "code", "degree": 3}, {"id": "handlers_airecommendationhandler_getrecommendations", "label": ".GetRecommendations()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetRecommendations()", "community": 20, "community_name": "Community 20", "source_file": "backend/handlers/ai_recommendations.go", "file_type": "code", "degree": 1}, {"id": "handlers_airecommendationhandler_getrecommendationstats", "label": ".GetRecommendationStats()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetRecommendationStats()", "community": 20, "community_name": "Community 20", "source_file": "backend/handlers/ai_recommendations.go", "file_type": "code", "degree": 1}, {"id": "handlers_airecommendationhandler_updatepreferences", "label": ".UpdatePreferences()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdatePreferences()", "community": 20, "community_name": "Community 20", "source_file": "backend/handlers/ai_recommendations.go", "file_type": "code", "degree": 1}, {"id": "handlers_airecommendationhandler_recordinteraction", "label": ".RecordInteraction()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".RecordInteraction()", "community": 20, "community_name": "Community 20", "source_file": "backend/handlers/ai_recommendations.go", "file_type": "code", "degree": 1}, {"id": "handlers_airecommendationhandler_getrecommendationhistory", "label": ".GetRecommendationHistory()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetRecommendationHistory()", "community": 20, "community_name": "Community 20", "source_file": "backend/handlers/ai_recommendations.go", "file_type": "code", "degree": 1}, {"id": "handlers_airecommendationhandler_deleterecommendation", "label": ".DeleteRecommendation()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteRecommendation()", "community": 20, "community_name": "Community 20", "source_file": "backend/handlers/ai_recommendations.go", "file_type": "code", "degree": 1}, {"id": "handlers_airecommendationhandler_getinsights", "label": ".GetInsights()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetInsights()", "community": 20, "community_name": "Community 20", "source_file": "backend/handlers/ai_recommendations.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_ai_settings_go", "label": "ai_settings.go", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ai_settings.go", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/ai_settings.go", "file_type": "code", "degree": 8}, {"id": "handlers_aisettings", "label": "AISettings", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AISettings", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/ai_settings.go", "file_type": "code", "degree": 2}, {"id": "handlers_ai_settings_getaisettings", "label": "GetAISettings()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetAISettings()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/ai_settings.go", "file_type": "code", "degree": 2}, {"id": "handlers_ai_settings_updateaisettings", "label": "UpdateAISettings()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateAISettings()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/ai_settings.go", "file_type": "code", "degree": 2}, {"id": "handlers_ai_settings_testaiconnection", "label": "TestAIConnection()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TestAIConnection()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/ai_settings.go", "file_type": "code", "degree": 1}, {"id": "handlers_ai_settings_getdefaultaisettings", "label": "getDefaultAISettings()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getDefaultAISettings()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/ai_settings.go", "file_type": "code", "degree": 2}, {"id": "handlers_ai_settings_maskapikey", "label": "maskAPIKey()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "maskAPIKey()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/ai_settings.go", "file_type": "code", "degree": 1}, {"id": "handlers_ai_settings_ismasked", "label": "isMasked()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isMasked()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/ai_settings.go", "file_type": "code", "degree": 2}, {"id": "handlers_ai_settings_getboolenv", "label": "getBoolEnv()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getBoolEnv()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/ai_settings.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_video_bookmark_go", "label": "video_bookmark.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "video_bookmark.go", "community": 22, "community_name": "Community 22", "source_file": "backend/handlers/video_bookmark.go", "file_type": "code", "degree": 2}, {"id": "handlers_videobookmarkhandler", "label": "VideoBookmarkHandler", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoBookmarkHandler", "community": 22, "community_name": "Community 22", "source_file": "backend/handlers/video_bookmark.go", "file_type": "code", "degree": 10}, {"id": "handlers_video_bookmark_newvideobookmarkhandler", "label": "NewVideoBookmarkHandler()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewVideoBookmarkHandler()", "community": 22, "community_name": "Community 22", "source_file": "backend/handlers/video_bookmark.go", "file_type": "code", "degree": 4}, {"id": "handlers_videobookmarkhandler_savevideobookmark", "label": ".SaveVideoBookmark()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".SaveVideoBookmark()", "community": 22, "community_name": "Community 22", "source_file": "backend/handlers/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "handlers_videobookmarkhandler_getuserbookmarks", "label": ".GetUserBookmarks()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetUserBookmarks()", "community": 22, "community_name": "Community 22", "source_file": "backend/handlers/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "handlers_videobookmarkhandler_getbookmarkbyid", "label": ".GetBookmarkByID()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetBookmarkByID()", "community": 22, "community_name": "Community 22", "source_file": "backend/handlers/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "handlers_videobookmarkhandler_updatebookmark", "label": ".UpdateBookmark()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateBookmark()", "community": 22, "community_name": "Community 22", "source_file": "backend/handlers/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "handlers_videobookmarkhandler_deletebookmark", "label": ".DeleteBookmark()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteBookmark()", "community": 22, "community_name": "Community 22", "source_file": "backend/handlers/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "handlers_videobookmarkhandler_togglewatched", "label": ".ToggleWatched()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ToggleWatched()", "community": 22, "community_name": "Community 22", "source_file": "backend/handlers/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "handlers_videobookmarkhandler_togglefavorite", "label": ".ToggleFavorite()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ToggleFavorite()", "community": 22, "community_name": "Community 22", "source_file": "backend/handlers/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "handlers_videobookmarkhandler_searchbookmarks", "label": ".SearchBookmarks()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".SearchBookmarks()", "community": 22, "community_name": "Community 22", "source_file": "backend/handlers/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "handlers_videobookmarkhandler_getbookmarkstats", "label": ".GetBookmarkStats()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetBookmarkStats()", "community": 22, "community_name": "Community 22", "source_file": "backend/handlers/video_bookmark.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_auth_go", "label": "auth.go", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 22.0, "font": {"size": 12, "color": "#ffffff"}, "title": "auth.go", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 38}, {"id": "handlers_loginrequest", "label": "LoginRequest", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginRequest", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_registerrequest", "label": "RegisterRequest", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterRequest", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_authresponse", "label": "AuthResponse", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthResponse", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_passwordresetrequest", "label": "PasswordResetRequest", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PasswordResetRequest", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_passwordresetconfirm", "label": "PasswordResetConfirm", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PasswordResetConfirm", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_passwordresetcode", "label": "PasswordResetCode", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PasswordResetCode", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_claims", "label": "Claims", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Claims", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_auth_getdurationenv", "label": "getDurationEnv()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getDurationEnv()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 2}, {"id": "handlers_auth_generatejwt", "label": "GenerateJWT()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateJWT()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 8}, {"id": "handlers_auth_generatejwtwithgithubaccesstoken", "label": "GenerateJWTWithGitHubAccessToken()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateJWTWithGitHubAccessToken()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 2}, {"id": "handlers_auth_validatejwt", "label": "ValidateJWT()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidateJWT()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_auth_getauthenticateduserfromheader", "label": "getAuthenticatedUserFromHeader()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getAuthenticatedUserFromHeader()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_auth_hasapikeypermission", "label": "hasAPIKeyPermission()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hasAPIKeyPermission()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 2}, {"id": "handlers_auth_requiredapikeypermission", "label": "requiredAPIKeyPermission()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "requiredAPIKeyPermission()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_auth_validateapikeyforrequest", "label": "validateAPIKeyForRequest()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "validateAPIKeyForRequest()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 6}, {"id": "handlers_auth_authmiddleware", "label": "AuthMiddleware()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthMiddleware()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 6}, {"id": "handlers_auth_checkusers", "label": "CheckUsers()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CheckUsers()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 2}, {"id": "handlers_auth_register", "label": "Register()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Register()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 6}, {"id": "handlers_auth_login", "label": "Login()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Login()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_auth_getcurrentuser", "label": "GetCurrentUser()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetCurrentUser()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_auth_updateprofile", "label": "UpdateProfile()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateProfile()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_auth_changepassword", "label": "ChangePassword()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ChangePassword()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_auth_logout", "label": "Logout()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Logout()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 2}, {"id": "handlers_auth_generateresetcode", "label": "generateResetCode()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateResetCode()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_auth_sendresetemail", "label": "sendResetEmail()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sendResetEmail()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_auth_requestpasswordreset", "label": "RequestPasswordReset()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RequestPasswordReset()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_auth_confirmpasswordreset", "label": "ConfirmPasswordReset()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ConfirmPasswordReset()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 2}, {"id": "handlers_auth_getdashboardstats", "label": "GetDashboardStats()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetDashboardStats()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_auth_formattimeago", "label": "formatTimeAgo()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "formatTimeAgo()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 2}, {"id": "handlers_githubrelease", "label": "GitHubRelease", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubRelease", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 1}, {"id": "handlers_auth_getlatestversion", "label": "GetLatestVersion()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetLatestVersion()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_auth_getcurrentversion", "label": "GetCurrentVersion()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetCurrentVersion()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 6}, {"id": "handlers_auth_isrunningindocker", "label": "isRunningInDocker()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isRunningInDocker()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_auth_getdockerimageversion", "label": "getDockerImageVersion()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getDockerImageVersion()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_auth_getcontainerid", "label": "getContainerID()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getContainerID()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 4}, {"id": "handlers_auth_readversionfile", "label": "readVersionFile()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "readVersionFile()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_auth_getgitversion", "label": "getGitVersion()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitVersion()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 3}, {"id": "handlers_auth_getversionhandler", "label": "GetVersionHandler()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetVersionHandler()", "community": 9, "community_name": "Community 9", "source_file": "backend/handlers/auth.go", "file_type": "code", "degree": 4}, {"id": "backend_handlers_search_go", "label": "search.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "search.go", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search.go", "file_type": "code", "degree": 6}, {"id": "handlers_bravesearchresponse", "label": "BraveSearchResponse", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BraveSearchResponse", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search.go", "file_type": "code", "degree": 1}, {"id": "handlers_bravenewsresponse", "label": "BraveNewsResponse", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BraveNewsResponse", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search.go", "file_type": "code", "degree": 1}, {"id": "handlers_bravesearchresult", "label": "BraveSearchResult", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BraveSearchResult", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search.go", "file_type": "code", "degree": 1}, {"id": "handlers_search_searchweb", "label": "SearchWeb()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchWeb()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search.go", "file_type": "code", "degree": 2}, {"id": "handlers_search_searchnews", "label": "SearchNews()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchNews()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search.go", "file_type": "code", "degree": 2}, {"id": "handlers_search_getsearchsuggestions", "label": "GetSearchSuggestions()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetSearchSuggestions()", "community": 18, "community_name": "Community 18", "source_file": "backend/handlers/search.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_audit_go", "label": "audit.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "audit.go", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/audit.go", "file_type": "code", "degree": 6}, {"id": "handlers_audit_getauditlogs", "label": "GetAuditLogs()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetAuditLogs()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/audit.go", "file_type": "code", "degree": 2}, {"id": "handlers_audit_getauditlogstats", "label": "GetAuditLogStats()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetAuditLogStats()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/audit.go", "file_type": "code", "degree": 2}, {"id": "handlers_audit_getauditlog", "label": "GetAuditLog()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetAuditLog()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/audit.go", "file_type": "code", "degree": 2}, {"id": "handlers_audit_exportauditlogs", "label": "ExportAuditLogs()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ExportAuditLogs()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/audit.go", "file_type": "code", "degree": 3}, {"id": "handlers_audit_cleanupauditlogs", "label": "CleanupAuditLogs()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CleanupAuditLogs()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/audit.go", "file_type": "code", "degree": 2}, {"id": "handlers_audit_generatecsv", "label": "generateCSV()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateCSV()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/audit.go", "file_type": "code", "degree": 2}, {"id": "backend_handlers_marketplace_go", "label": "marketplace.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "marketplace.go", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 2}, {"id": "handlers_marketplacehandler", "label": "MarketplaceHandler", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MarketplaceHandler", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 14}, {"id": "handlers_marketplace_newmarketplacehandler", "label": "NewMarketplaceHandler()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewMarketplaceHandler()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 2}, {"id": "handlers_marketplacehandler_getmarketplaceitems", "label": ".GetMarketplaceItems()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetMarketplaceItems()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "handlers_marketplacehandler_getmarketplaceitem", "label": ".GetMarketplaceItem()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetMarketplaceItem()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "handlers_marketplacehandler_createmarketplaceitem", "label": ".CreateMarketplaceItem()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateMarketplaceItem()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "handlers_marketplacehandler_updatemarketplaceitem", "label": ".UpdateMarketplaceItem()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateMarketplaceItem()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "handlers_marketplacehandler_deletemarketplaceitem", "label": ".DeleteMarketplaceItem()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteMarketplaceItem()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "handlers_marketplacehandler_getmymarketplaceitems", "label": ".GetMyMarketplaceItems()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetMyMarketplaceItems()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "handlers_marketplacehandler_createmarketplacereview", "label": ".CreateMarketplaceReview()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateMarketplaceReview()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "handlers_marketplacehandler_getmarketplacereviews", "label": ".GetMarketplaceReviews()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetMarketplaceReviews()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "handlers_marketplacehandler_createcontentshare", "label": ".CreateContentShare()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateContentShare()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "handlers_marketplacehandler_getcontentshare", "label": ".GetContentShare()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetContentShare()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "handlers_marketplacehandler_getmycontentshares", "label": ".GetMyContentShares()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetMyContentShares()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "handlers_marketplacehandler_deletecontentshare", "label": ".DeleteContentShare()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteContentShare()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "handlers_marketplacehandler_getmarketplacestats", "label": ".GetMarketplaceStats()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetMarketplaceStats()", "community": 40, "community_name": "Community 40", "source_file": "backend/handlers/marketplace.go", "file_type": "code", "degree": 1}, {"id": "backend_handlers_course_go", "label": "course.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "course.go", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/course.go", "file_type": "code", "degree": 8}, {"id": "handlers_course_getcourses", "label": "GetCourses()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetCourses()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/course.go", "file_type": "code", "degree": 2}, {"id": "handlers_course_getcourse", "label": "GetCourse()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetCourse()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/course.go", "file_type": "code", "degree": 2}, {"id": "handlers_course_getcoursebyslug", "label": "GetCourseBySlug()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetCourseBySlug()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/course.go", "file_type": "code", "degree": 2}, {"id": "handlers_course_getfeaturedcourses", "label": "GetFeaturedCourses()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetFeaturedCourses()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/course.go", "file_type": "code", "degree": 2}, {"id": "handlers_course_getztmcourses", "label": "GetZTMCourses()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetZTMCourses()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/course.go", "file_type": "code", "degree": 2}, {"id": "handlers_course_getcoursecategories", "label": "GetCourseCategories()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetCourseCategories()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/course.go", "file_type": "code", "degree": 2}, {"id": "handlers_course_searchcourses", "label": "SearchCourses()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchCourses()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/course.go", "file_type": "code", "degree": 2}, {"id": "handlers_course_getlearningpathcourses", "label": "GetLearningPathCourses()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetLearningPathCourses()", "community": 4, "community_name": "Community 4", "source_file": "backend/handlers/course.go", "file_type": "code", "degree": 2}, {"id": "backend_migrations_migrate_go", "label": "migrate.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "migrate.go", "community": 14, "community_name": "Community 14", "source_file": "backend/migrations/migrate.go", "file_type": "code", "degree": 3}, {"id": "migrations_migrate_runmigrations", "label": "RunMigrations()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RunMigrations()", "community": 14, "community_name": "Community 14", "source_file": "backend/migrations/migrate.go", "file_type": "code", "degree": 2}, {"id": "migrations_migrate_getmigrationstatus", "label": "GetMigrationStatus()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetMigrationStatus()", "community": 14, "community_name": "Community 14", "source_file": "backend/migrations/migrate.go", "file_type": "code", "degree": 1}, {"id": "migrations_migrate_createmigration", "label": "CreateMigration()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateMigration()", "community": 14, "community_name": "Community 14", "source_file": "backend/migrations/migrate.go", "file_type": "code", "degree": 1}, {"id": "backend_utils_validator_go", "label": "validator.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "validator.go", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 2}, {"id": "utils_validator", "label": "Validator", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Validator", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 13}, {"id": "utils_validator_newvalidator", "label": "NewValidator()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewValidator()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "utils_validator_required", "label": ".Required()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Required()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "utils_validator_minlength", "label": ".MinLength()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".MinLength()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "utils_validator_maxlength", "label": ".MaxLength()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".MaxLength()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "utils_validator_email", "label": ".Email()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Email()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "utils_validator_url", "label": ".URL()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".URL()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "utils_validator_match", "label": ".Match()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Match()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "utils_validator_in", "label": ".In()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".In()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "utils_validator_haserrors", "label": ".HasErrors()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".HasErrors()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "utils_validator_geterrors", "label": ".GetErrors()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetErrors()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "utils_validator_geterror", "label": ".GetError()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetError()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "utils_validator_clear", "label": ".Clear()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Clear()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "utils_validator_validatepassword", "label": ".ValidatePassword()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ValidatePassword()", "community": 44, "community_name": "Community 44", "source_file": "backend/utils/validator.go", "file_type": "code", "degree": 1}, {"id": "backend_utils_security_go", "label": "security.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "security.go", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 12}, {"id": "utils_security_generatesecuresecret", "label": "GenerateSecureSecret()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateSecureSecret()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 4}, {"id": "utils_security_generatesecurekey", "label": "GenerateSecureKey()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateSecureKey()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 4}, {"id": "utils_security_getorcreatejwtsecret", "label": "GetOrCreateJWTSecret()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetOrCreateJWTSecret()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 5}, {"id": "utils_security_getorcreateencryptionkey", "label": "GetOrCreateEncryptionKey()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetOrCreateEncryptionKey()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 5}, {"id": "utils_security_readsecretfromfile", "label": "readSecretFromFile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "readSecretFromFile()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 3}, {"id": "utils_security_savesecrettofile", "label": "saveSecretToFile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "saveSecretToFile()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 4}, {"id": "utils_security_validatesecretstrength", "label": "ValidateSecretStrength()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidateSecretStrength()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 2}, {"id": "utils_security_calculateentropy", "label": "calculateEntropy()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "calculateEntropy()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 3}, {"id": "utils_security_log2", "label": "log2()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "log2()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 3}, {"id": "utils_security_lognatural", "label": "logNatural()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "logNatural()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 2}, {"id": "utils_security_rotatesecret", "label": "RotateSecret()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RotateSecret()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 4}, {"id": "utils_security_getsecretfilepath", "label": "GetSecretFilePath()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetSecretFilePath()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/security.go", "file_type": "code", "degree": 1}, {"id": "backend_utils_encryption_go", "label": "encryption.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "encryption.go", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/encryption.go", "file_type": "code", "degree": 7}, {"id": "utils_encryption_getencryptionkey", "label": "GetEncryptionKey()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GetEncryptionKey()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/encryption.go", "file_type": "code", "degree": 5}, {"id": "utils_encryption_encrypt", "label": "Encrypt()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Encrypt()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/encryption.go", "file_type": "code", "degree": 12}, {"id": "utils_encryption_decrypt", "label": "Decrypt()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Decrypt()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/encryption.go", "file_type": "code", "degree": 10}, {"id": "utils_encryption_encryptfile", "label": "EncryptFile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "EncryptFile()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/encryption.go", "file_type": "code", "degree": 3}, {"id": "utils_encryption_decryptfile", "label": "DecryptFile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DecryptFile()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/encryption.go", "file_type": "code", "degree": 3}, {"id": "utils_encryption_isencrypted", "label": "IsEncrypted()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsEncrypted()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/encryption.go", "file_type": "code", "degree": 2}, {"id": "utils_encryption_generateencryptionkey", "label": "GenerateEncryptionKey()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GenerateEncryptionKey()", "community": 12, "community_name": "Community 12", "source_file": "backend/utils/encryption.go", "file_type": "code", "degree": 2}, {"id": "backend_utils_graceful_shutdown_go", "label": "graceful_shutdown.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "graceful_shutdown.go", "community": 86, "community_name": "Community 86", "source_file": "backend/utils/graceful_shutdown.go", "file_type": "code", "degree": 2}, {"id": "utils_gracefulshutdown", "label": "GracefulShutdown", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GracefulShutdown", "community": 86, "community_name": "Community 86", "source_file": "backend/utils/graceful_shutdown.go", "file_type": "code", "degree": 3}, {"id": "utils_graceful_shutdown_newgracefulshutdown", "label": "NewGracefulShutdown()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NewGracefulShutdown()", "community": 86, "community_name": "Community 86", "source_file": "backend/utils/graceful_shutdown.go", "file_type": "code", "degree": 1}, {"id": "utils_gracefulshutdown_addcleanupfunc", "label": ".AddCleanupFunc()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".AddCleanupFunc()", "community": 86, "community_name": "Community 86", "source_file": "backend/utils/graceful_shutdown.go", "file_type": "code", "degree": 1}, {"id": "utils_gracefulshutdown_wait", "label": ".Wait()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Wait()", "community": 86, "community_name": "Community 86", "source_file": "backend/utils/graceful_shutdown.go", "file_type": "code", "degree": 1}, {"id": "backend_utils_errors_go", "label": "errors.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "errors.go", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 17}, {"id": "utils_errorcode", "label": "ErrorCode", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorCode", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 1}, {"id": "utils_apperror", "label": "AppError", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AppError", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "utils_apperror_error", "label": ".Error()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".Error()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "utils_errors_newapperror", "label": "NewAppError()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "NewAppError()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 10}, {"id": "utils_errors_newapperrorwithdetails", "label": "NewAppErrorWithDetails()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "NewAppErrorWithDetails()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 3}, {"id": "utils_errors_wraperror", "label": "WrapError()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WrapError()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "utils_errors_isapperror", "label": "IsAppError()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsAppError()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 1}, {"id": "utils_errors_badrequest", "label": "BadRequest()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BadRequest()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "utils_errors_badrequestwithdetails", "label": "BadRequestWithDetails()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BadRequestWithDetails()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "utils_errors_unauthorized", "label": "Unauthorized()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Unauthorized()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "utils_errors_forbidden", "label": "Forbidden()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Forbidden()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "utils_errors_notfound", "label": "NotFound()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NotFound()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 5}, {"id": "utils_errors_conflict", "label": "Conflict()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Conflict()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "utils_errors_validationerr", "label": "ValidationErr()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidationErr()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "utils_errors_internalerror", "label": "InternalError()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "InternalError()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "utils_errors_internalerrorwithdetails", "label": "InternalErrorWithDetails()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "InternalErrorWithDetails()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "utils_errors_ratelimitexceeded", "label": "RateLimitExceeded()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RateLimitExceeded()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "utils_errors_serviceunavailable", "label": "ServiceUnavailable()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ServiceUnavailable()", "community": 13, "community_name": "Community 13", "source_file": "backend/utils/errors.go", "file_type": "code", "degree": 2}, {"id": "backend_utils_response_go", "label": "response.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "response.go", "community": 14, "community_name": "Community 14", "source_file": "backend/utils/response.go", "file_type": "code", "degree": 11}, {"id": "utils_apiresponse", "label": "APIResponse", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "APIResponse", "community": 14, "community_name": "Community 14", "source_file": "backend/utils/response.go", "file_type": "code", "degree": 1}, {"id": "utils_paginatedresponse", "label": "PaginatedResponse", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginatedResponse", "community": 14, "community_name": "Community 14", "source_file": "backend/utils/response.go", "file_type": "code", "degree": 1}, {"id": "utils_paginationinfo", "label": "PaginationInfo", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginationInfo", "community": 14, "community_name": "Community 14", "source_file": "backend/utils/response.go", "file_type": "code", "degree": 1}, {"id": "utils_response_success", "label": "Success()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Success()", "community": 14, "community_name": "Community 14", "source_file": "backend/utils/response.go", "file_type": "code", "degree": 1}, {"id": "utils_response_error", "label": "Error()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Error()", "community": 14, "community_name": "Community 14", "source_file": "backend/utils/response.go", "file_type": "code", "degree": 2}, {"id": "utils_response_validationerror", "label": "ValidationError()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidationError()", "community": 14, "community_name": "Community 14", "source_file": "backend/utils/response.go", "file_type": "code", "degree": 1}, {"id": "utils_response_paginated", "label": "Paginated()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Paginated()", "community": 14, "community_name": "Community 14", "source_file": "backend/utils/response.go", "file_type": "code", "degree": 1}, {"id": "utils_response_calculatepagination", "label": "CalculatePagination()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CalculatePagination()", "community": 14, "community_name": "Community 14", "source_file": "backend/utils/response.go", "file_type": "code", "degree": 1}, {"id": "utils_response_created", "label": "Created()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Created()", "community": 14, "community_name": "Community 14", "source_file": "backend/utils/response.go", "file_type": "code", "degree": 1}, {"id": "utils_response_updated", "label": "Updated()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Updated()", "community": 14, "community_name": "Community 14", "source_file": "backend/utils/response.go", "file_type": "code", "degree": 1}, {"id": "utils_response_deleted", "label": "Deleted()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Deleted()", "community": 14, "community_name": "Community 14", "source_file": "backend/utils/response.go", "file_type": "code", "degree": 1}, {"id": "backend_internal_db_db_go", "label": "db.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "db.go", "community": 0, "community_name": "Community 0", "source_file": "backend/internal/db/db.go", "file_type": "code", "degree": 2}, {"id": "db_db", "label": "DB", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DB", "community": 0, "community_name": "Community 0", "source_file": "backend/internal/db/db.go", "file_type": "code", "degree": 6}, {"id": "db_db_newdb", "label": "NewDB()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewDB()", "community": 0, "community_name": "Community 0", "source_file": "backend/internal/db/db.go", "file_type": "code", "degree": 2}, {"id": "db_db_close", "label": ".Close()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Close()", "community": 0, "community_name": "Community 0", "source_file": "backend/internal/db/db.go", "file_type": "code", "degree": 1}, {"id": "db_db_begintx", "label": ".BeginTx()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeginTx()", "community": 0, "community_name": "Community 0", "source_file": "backend/internal/db/db.go", "file_type": "code", "degree": 2}, {"id": "db_db_commit", "label": ".Commit()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Commit()", "community": 0, "community_name": "Community 0", "source_file": "backend/internal/db/db.go", "file_type": "code", "degree": 1}, {"id": "db_db_rollback", "label": ".Rollback()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Rollback()", "community": 0, "community_name": "Community 0", "source_file": "backend/internal/db/db.go", "file_type": "code", "degree": 1}, {"id": "db_db_getpool", "label": ".GetPool()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetPool()", "community": 0, "community_name": "Community 0", "source_file": "backend/internal/db/db.go", "file_type": "code", "degree": 1}, {"id": "backend_internal_db_sqlc_tasks_sql_go", "label": "tasks.sql.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "tasks.sql.go", "community": 54, "community_name": "Community 54", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 10}, {"id": "sqlc_addtasktagparams", "label": "AddTaskTagParams", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AddTaskTagParams", "community": 54, "community_name": "Community 54", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries", "label": "Queries", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 18.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Queries", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 28}, {"id": "sqlc_queries_addtasktag", "label": ".AddTaskTag()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".AddTaskTag()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_createtaskparams", "label": "CreateTaskParams", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateTaskParams", "community": 54, "community_name": "Community 54", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_createtask", "label": ".CreateTask()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateTask()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_deletetaskparams", "label": "DeleteTaskParams", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteTaskParams", "community": 54, "community_name": "Community 54", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_deletetask", "label": ".DeleteTask()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteTask()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_gettaskbyidparams", "label": "GetTaskByIDParams", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetTaskByIDParams", "community": 54, "community_name": "Community 54", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_gettaskbyid", "label": ".GetTaskByID()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTaskByID()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_gettasksbystatusparams", "label": "GetTasksByStatusParams", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetTasksByStatusParams", "community": 54, "community_name": "Community 54", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_gettasksbystatus", "label": ".GetTasksByStatus()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTasksByStatus()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_gettasksbytagparams", "label": "GetTasksByTagParams", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetTasksByTagParams", "community": 54, "community_name": "Community 54", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_gettasksbytag", "label": ".GetTasksByTag()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTasksByTag()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_gettasksbyuserparams", "label": "GetTasksByUserParams", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetTasksByUserParams", "community": 54, "community_name": "Community 54", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_gettasksbyuser", "label": ".GetTasksByUser()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTasksByUser()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_removetasktagparams", "label": "RemoveTaskTagParams", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RemoveTaskTagParams", "community": 54, "community_name": "Community 54", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_removetasktag", "label": ".RemoveTaskTag()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".RemoveTaskTag()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_searchtasksparams", "label": "SearchTasksParams", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchTasksParams", "community": 54, "community_name": "Community 54", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_searchtasks", "label": ".SearchTasks()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".SearchTasks()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_updatetaskparams", "label": "UpdateTaskParams", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateTaskParams", "community": 54, "community_name": "Community 54", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_updatetask", "label": ".UpdateTask()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateTask()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/tasks.sql.go", "file_type": "code", "degree": 1}, {"id": "backend_internal_db_sqlc_querier_go", "label": "querier.go", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "querier.go", "community": 138, "community_name": "Community 138", "source_file": "backend/internal/db/sqlc/querier.go", "file_type": "code", "degree": 1}, {"id": "sqlc_querier", "label": "Querier", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Querier", "community": 138, "community_name": "Community 138", "source_file": "backend/internal/db/sqlc/querier.go", "file_type": "code", "degree": 1}, {"id": "backend_internal_db_sqlc_db_go", "label": "db.go", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "db.go", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/db.go", "file_type": "code", "degree": 3}, {"id": "sqlc_dbtx", "label": "DBTX", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DBTX", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/db.go", "file_type": "code", "degree": 1}, {"id": "sqlc_db_new", "label": "New()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 25.8, "font": {"size": 12, "color": "#ffffff"}, "title": "New()", "community": 0, "community_name": "Community 0", "source_file": "backend/internal/db/sqlc/db.go", "file_type": "code", "degree": 50}, {"id": "sqlc_queries_withtx", "label": ".WithTx()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".WithTx()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/db.go", "file_type": "code", "degree": 1}, {"id": "backend_internal_db_sqlc_bookmarks_sql_go", "label": "bookmarks.sql.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "bookmarks.sql.go", "community": 57, "community_name": "Community 57", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 9}, {"id": "sqlc_addbookmarktagparams", "label": "AddBookmarkTagParams", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AddBookmarkTagParams", "community": 57, "community_name": "Community 57", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_addbookmarktag", "label": ".AddBookmarkTag()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".AddBookmarkTag()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_createbookmarkparams", "label": "CreateBookmarkParams", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateBookmarkParams", "community": 57, "community_name": "Community 57", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_createbookmark", "label": ".CreateBookmark()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateBookmark()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_deletebookmarkparams", "label": "DeleteBookmarkParams", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteBookmarkParams", "community": 57, "community_name": "Community 57", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_deletebookmark", "label": ".DeleteBookmark()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteBookmark()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_getbookmarkbyidparams", "label": "GetBookmarkByIDParams", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetBookmarkByIDParams", "community": 57, "community_name": "Community 57", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_getbookmarkbyid", "label": ".GetBookmarkByID()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetBookmarkByID()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_getbookmarksbytagparams", "label": "GetBookmarksByTagParams", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetBookmarksByTagParams", "community": 57, "community_name": "Community 57", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_getbookmarksbytag", "label": ".GetBookmarksByTag()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetBookmarksByTag()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_getbookmarksbyuserparams", "label": "GetBookmarksByUserParams", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetBookmarksByUserParams", "community": 57, "community_name": "Community 57", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_getbookmarksbyuser", "label": ".GetBookmarksByUser()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetBookmarksByUser()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_removebookmarktagparams", "label": "RemoveBookmarkTagParams", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RemoveBookmarkTagParams", "community": 57, "community_name": "Community 57", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_removebookmarktag", "label": ".RemoveBookmarkTag()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".RemoveBookmarkTag()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_searchbookmarksparams", "label": "SearchBookmarksParams", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchBookmarksParams", "community": 57, "community_name": "Community 57", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_searchbookmarks", "label": ".SearchBookmarks()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".SearchBookmarks()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_updatebookmarkparams", "label": "UpdateBookmarkParams", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateBookmarkParams", "community": 57, "community_name": "Community 57", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_updatebookmark", "label": ".UpdateBookmark()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateBookmark()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/bookmarks.sql.go", "file_type": "code", "degree": 1}, {"id": "backend_internal_db_sqlc_models_go", "label": "models.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "models.go", "community": 52, "community_name": "Community 52", "source_file": "backend/internal/db/sqlc/models.go", "file_type": "code", "degree": 11}, {"id": "sqlc_auditlog", "label": "AuditLog", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuditLog", "community": 52, "community_name": "Community 52", "source_file": "backend/internal/db/sqlc/models.go", "file_type": "code", "degree": 1}, {"id": "sqlc_bookmark", "label": "Bookmark", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Bookmark", "community": 52, "community_name": "Community 52", "source_file": "backend/internal/db/sqlc/models.go", "file_type": "code", "degree": 1}, {"id": "sqlc_bookmarktag", "label": "BookmarkTag", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BookmarkTag", "community": 52, "community_name": "Community 52", "source_file": "backend/internal/db/sqlc/models.go", "file_type": "code", "degree": 1}, {"id": "sqlc_file", "label": "File", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "File", "community": 52, "community_name": "Community 52", "source_file": "backend/internal/db/sqlc/models.go", "file_type": "code", "degree": 1}, {"id": "sqlc_filetag", "label": "FileTag", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FileTag", "community": 52, "community_name": "Community 52", "source_file": "backend/internal/db/sqlc/models.go", "file_type": "code", "degree": 1}, {"id": "sqlc_note", "label": "Note", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Note", "community": 52, "community_name": "Community 52", "source_file": "backend/internal/db/sqlc/models.go", "file_type": "code", "degree": 1}, {"id": "sqlc_notetag", "label": "NoteTag", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NoteTag", "community": 52, "community_name": "Community 52", "source_file": "backend/internal/db/sqlc/models.go", "file_type": "code", "degree": 1}, {"id": "sqlc_tag", "label": "Tag", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tag", "community": 52, "community_name": "Community 52", "source_file": "backend/internal/db/sqlc/models.go", "file_type": "code", "degree": 1}, {"id": "sqlc_task", "label": "Task", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Task", "community": 52, "community_name": "Community 52", "source_file": "backend/internal/db/sqlc/models.go", "file_type": "code", "degree": 1}, {"id": "sqlc_tasktag", "label": "TaskTag", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TaskTag", "community": 52, "community_name": "Community 52", "source_file": "backend/internal/db/sqlc/models.go", "file_type": "code", "degree": 1}, {"id": "sqlc_user", "label": "User", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User", "community": 52, "community_name": "Community 52", "source_file": "backend/internal/db/sqlc/models.go", "file_type": "code", "degree": 1}, {"id": "backend_internal_db_sqlc_users_sql_go", "label": "users.sql.go", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "users.sql.go", "community": 62, "community_name": "Community 62", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 8}, {"id": "sqlc_createuserparams", "label": "CreateUserParams", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateUserParams", "community": 62, "community_name": "Community 62", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_createuserrow", "label": "CreateUserRow", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateUserRow", "community": 62, "community_name": "Community 62", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_createuser", "label": ".CreateUser()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateUser()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_deleteuser", "label": ".DeleteUser()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteUser()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_getuserbyemailrow", "label": "GetUserByEmailRow", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetUserByEmailRow", "community": 62, "community_name": "Community 62", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_getuserbyemail", "label": ".GetUserByEmail()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetUserByEmail()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_getuserbyidrow", "label": "GetUserByIDRow", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetUserByIDRow", "community": 62, "community_name": "Community 62", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_getuserbyid", "label": ".GetUserByID()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetUserByID()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_listusersparams", "label": "ListUsersParams", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ListUsersParams", "community": 62, "community_name": "Community 62", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_listusersrow", "label": "ListUsersRow", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ListUsersRow", "community": 62, "community_name": "Community 62", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_listusers", "label": ".ListUsers()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListUsers()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_updatelastlogin", "label": ".UpdateLastLogin()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateLastLogin()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_updateuserparams", "label": "UpdateUserParams", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateUserParams", "community": 62, "community_name": "Community 62", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_updateuserrow", "label": "UpdateUserRow", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateUserRow", "community": 62, "community_name": "Community 62", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "sqlc_queries_updateuser", "label": ".UpdateUser()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateUser()", "community": 19, "community_name": "Community 19", "source_file": "backend/internal/db/sqlc/users.sql.go", "file_type": "code", "degree": 1}, {"id": "backend_middleware_cache_go", "label": "cache.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "cache.go", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/cache.go", "file_type": "code", "degree": 8}, {"id": "middleware_cacheconfig", "label": "CacheConfig", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CacheConfig", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/cache.go", "file_type": "code", "degree": 1}, {"id": "middleware_cache_defaultcacheconfig", "label": "DefaultCacheConfig()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DefaultCacheConfig()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/cache.go", "file_type": "code", "degree": 2}, {"id": "middleware_cache_cachemiddleware", "label": "CacheMiddleware()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CacheMiddleware()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/cache.go", "file_type": "code", "degree": 4}, {"id": "middleware_cache_shouldskipcache", "label": "shouldSkipCache()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "shouldSkipCache()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/cache.go", "file_type": "code", "degree": 2}, {"id": "middleware_cache_generatecachekey", "label": "generateCacheKey()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateCacheKey()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/cache.go", "file_type": "code", "degree": 2}, {"id": "middleware_cachedresponsewriter", "label": "cachedResponseWriter", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "cachedResponseWriter", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/cache.go", "file_type": "code", "degree": 2}, {"id": "middleware_cachedresponsewriter_write", "label": ".Write()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Write()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/cache.go", "file_type": "code", "degree": 1}, {"id": "middleware_cache_invalidatecache", "label": "InvalidateCache()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "InvalidateCache()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/cache.go", "file_type": "code", "degree": 2}, {"id": "middleware_cache_cacheinvalidationmiddleware", "label": "CacheInvalidationMiddleware()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CacheInvalidationMiddleware()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/cache.go", "file_type": "code", "degree": 3}, {"id": "backend_middleware_rate_limiter_go", "label": "rate_limiter.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "rate_limiter.go", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/rate_limiter.go", "file_type": "code", "degree": 8}, {"id": "middleware_ratelimiter", "label": "RateLimiter", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RateLimiter", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/rate_limiter.go", "file_type": "code", "degree": 3}, {"id": "middleware_clientinfo", "label": "ClientInfo", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ClientInfo", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/rate_limiter.go", "file_type": "code", "degree": 1}, {"id": "middleware_rate_limiter_newratelimiter", "label": "NewRateLimiter()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "NewRateLimiter()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/rate_limiter.go", "file_type": "code", "degree": 3}, {"id": "middleware_ratelimiter_middleware", "label": ".Middleware()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".Middleware()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/rate_limiter.go", "file_type": "code", "degree": 3}, {"id": "middleware_ratelimiter_cleanup", "label": ".cleanup()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".cleanup()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/rate_limiter.go", "file_type": "code", "degree": 3}, {"id": "middleware_ratelimitconfig", "label": "RateLimitConfig", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RateLimitConfig", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/rate_limiter.go", "file_type": "code", "degree": 1}, {"id": "middleware_rate_limiter_defaultratelimitconfig", "label": "DefaultRateLimitConfig()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DefaultRateLimitConfig()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/rate_limiter.go", "file_type": "code", "degree": 2}, {"id": "middleware_rate_limiter_ratelimit", "label": "RateLimit()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RateLimit()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/rate_limiter.go", "file_type": "code", "degree": 3}, {"id": "middleware_rate_limiter_authratelimit", "label": "AuthRateLimit()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthRateLimit()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/rate_limiter.go", "file_type": "code", "degree": 3}, {"id": "middleware_rate_limiter_generalratelimit", "label": "GeneralRateLimit()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GeneralRateLimit()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/rate_limiter.go", "file_type": "code", "degree": 3}, {"id": "backend_middleware_session_go", "label": "session.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "session.go", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 12}, {"id": "middleware_sessiondata", "label": "SessionData", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionData", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 1}, {"id": "middleware_sessionstore", "label": "SessionStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionStore", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 1}, {"id": "middleware_redissessionstore", "label": "RedisSessionStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RedisSessionStore", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 6}, {"id": "middleware_session_newsessionstore", "label": "NewSessionStore()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewSessionStore()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 2}, {"id": "middleware_redissessionstore_createsession", "label": ".CreateSession()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateSession()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 2}, {"id": "middleware_redissessionstore_getsession", "label": ".GetSession()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetSession()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 3}, {"id": "middleware_redissessionstore_updatesession", "label": ".UpdateSession()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateSession()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 1}, {"id": "middleware_redissessionstore_deletesession", "label": ".DeleteSession()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteSession()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 2}, {"id": "middleware_redissessionstore_cleanupexpiredsessions", "label": ".CleanupExpiredSessions()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".CleanupExpiredSessions()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 4}, {"id": "middleware_session_initsessionstore", "label": "InitSessionStore()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "InitSessionStore()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 4}, {"id": "middleware_session_sessionmiddleware", "label": "SessionMiddleware()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SessionMiddleware()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 5}, {"id": "middleware_session_getsessionfromcontext", "label": "GetSessionFromContext()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetSessionFromContext()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 4}, {"id": "middleware_session_getuseridfromsession", "label": "GetUserIDFromSession()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetUserIDFromSession()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 3}, {"id": "middleware_session_getuseremailfromsession", "label": "GetUserEmailFromSession()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetUserEmailFromSession()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 3}, {"id": "middleware_session_generatesessionid", "label": "generateSessionID()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateSessionID()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 2}, {"id": "middleware_session_getsessionstore", "label": "GetSessionStore()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GetSessionStore()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 1}, {"id": "middleware_session_cleanupsessionsonshutdown", "label": "CleanupSessionsOnShutdown()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CleanupSessionsOnShutdown()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/session.go", "file_type": "code", "degree": 3}, {"id": "backend_middleware_demo_go", "label": "demo.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "demo.go", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/demo.go", "file_type": "code", "degree": 2}, {"id": "middleware_demo_demomodemiddleware", "label": "DemoModeMiddleware()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DemoModeMiddleware()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/demo.go", "file_type": "code", "degree": 3}, {"id": "middleware_demo_isdemomode", "label": "IsDemoMode()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsDemoMode()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/demo.go", "file_type": "code", "degree": 1}, {"id": "backend_middleware_performance_go", "label": "performance.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "performance.go", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/performance.go", "file_type": "code", "degree": 4}, {"id": "middleware_performance_performancemiddleware", "label": "PerformanceMiddleware()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PerformanceMiddleware()", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/performance.go", "file_type": "code", "degree": 1}, {"id": "middleware_performance_requestidmiddleware", "label": "RequestIDMiddleware()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RequestIDMiddleware()", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/performance.go", "file_type": "code", "degree": 2}, {"id": "middleware_performance_generaterequestid", "label": "generateRequestID()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateRequestID()", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/performance.go", "file_type": "code", "degree": 3}, {"id": "middleware_performance_slowquerymiddleware", "label": "SlowQueryMiddleware()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SlowQueryMiddleware()", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/performance.go", "file_type": "code", "degree": 1}, {"id": "backend_middleware_logger_go", "label": "logger.go", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "logger.go", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/logger.go", "file_type": "code", "degree": 8}, {"id": "middleware_loggerconfig", "label": "LoggerConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LoggerConfig", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/logger.go", "file_type": "code", "degree": 2}, {"id": "middleware_loggerconfig_getlogger", "label": ".GetLogger()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetLogger()", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/logger.go", "file_type": "code", "degree": 6}, {"id": "middleware_logger_logger", "label": "Logger()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Logger()", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/logger.go", "file_type": "code", "degree": 3}, {"id": "middleware_logger_requestlogger", "label": "RequestLogger()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RequestLogger()", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/logger.go", "file_type": "code", "degree": 4}, {"id": "middleware_logger_logrequestbody", "label": "logRequestBody()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "logRequestBody()", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/logger.go", "file_type": "code", "degree": 2}, {"id": "middleware_logger_securitylogger", "label": "SecurityLogger()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SecurityLogger()", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/logger.go", "file_type": "code", "degree": 2}, {"id": "middleware_logger_logsecurityevent", "label": "logSecurityEvent()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "logSecurityEvent()", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/logger.go", "file_type": "code", "degree": 3}, {"id": "middleware_logger_performancelogger", "label": "PerformanceLogger()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PerformanceLogger()", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/logger.go", "file_type": "code", "degree": 2}, {"id": "middleware_logger_logperformanceevent", "label": "logPerformanceEvent()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "logPerformanceEvent()", "community": 14, "community_name": "Community 14", "source_file": "backend/middleware/logger.go", "file_type": "code", "degree": 3}, {"id": "backend_middleware_input_validation_go", "label": "input_validation.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "input_validation.go", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 10}, {"id": "middleware_input_validation_inputvalidationmiddleware", "label": "InputValidationMiddleware()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "InputValidationMiddleware()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 4}, {"id": "middleware_input_validation_validaterequestbody", "label": "ValidateRequestBody()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidateRequestBody()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 2}, {"id": "middleware_requestbody", "label": "requestBody", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "requestBody", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 3}, {"id": "middleware_requestbody_read", "label": ".Read()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".Read()", "community": 12, "community_name": "Community 12", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 9}, {"id": "middleware_requestbody_close", "label": ".Close()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".Close()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 3}, {"id": "middleware_input_validation_containsmaliciouscontent", "label": "containsMaliciousContent()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "containsMaliciousContent()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 5}, {"id": "middleware_input_validation_sanitizeinput", "label": "sanitizeInput()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitizeInput()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 2}, {"id": "middleware_input_validation_validateemail", "label": "ValidateEmail()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidateEmail()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 1}, {"id": "middleware_input_validation_validatepassword", "label": "ValidatePassword()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidatePassword()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 1}, {"id": "middleware_input_validation_validateusername", "label": "ValidateUsername()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidateUsername()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 1}, {"id": "middleware_input_validation_validateid", "label": "ValidateID()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidateID()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 1}, {"id": "middleware_input_validation_validatepagination", "label": "ValidatePagination()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidatePagination()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/input_validation.go", "file_type": "code", "degree": 1}, {"id": "backend_middleware_cors_go", "label": "cors.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cors.go", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/cors.go", "file_type": "code", "degree": 1}, {"id": "middleware_cors_corsmiddleware", "label": "CORSMiddleware()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CORSMiddleware()", "community": 3, "community_name": "Community 3", "source_file": "backend/middleware/cors.go", "file_type": "code", "degree": 2}, {"id": "backend_middleware_error_handler_go", "label": "error_handler.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "error_handler.go", "community": 87, "community_name": "Community 87", "source_file": "backend/middleware/error_handler.go", "file_type": "code", "degree": 4}, {"id": "middleware_errorresponse", "label": "ErrorResponse", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorResponse", "community": 87, "community_name": "Community 87", "source_file": "backend/middleware/error_handler.go", "file_type": "code", "degree": 1}, {"id": "middleware_error_handler_errorhandlermiddleware", "label": "ErrorHandlerMiddleware()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorHandlerMiddleware()", "community": 87, "community_name": "Community 87", "source_file": "backend/middleware/error_handler.go", "file_type": "code", "degree": 1}, {"id": "middleware_error_handler_notfoundhandler", "label": "NotFoundHandler()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NotFoundHandler()", "community": 87, "community_name": "Community 87", "source_file": "backend/middleware/error_handler.go", "file_type": "code", "degree": 1}, {"id": "middleware_error_handler_methodnotallowedhandler", "label": "MethodNotAllowedHandler()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MethodNotAllowedHandler()", "community": 87, "community_name": "Community 87", "source_file": "backend/middleware/error_handler.go", "file_type": "code", "degree": 1}, {"id": "backend_middleware_memory_cache_go", "label": "memory_cache.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "memory_cache.go", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 10}, {"id": "middleware_memorycacheitem", "label": "MemoryCacheItem", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MemoryCacheItem", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 1}, {"id": "middleware_memorycache", "label": "MemoryCache", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MemoryCache", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 6}, {"id": "middleware_memory_cache_newmemorycache", "label": "NewMemoryCache()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewMemoryCache()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 2}, {"id": "middleware_memorycache_get", "label": ".Get()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".Get()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 2}, {"id": "middleware_memorycache_set", "label": ".Set()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".Set()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 2}, {"id": "middleware_memorycache_delete", "label": ".Delete()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Delete()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 4}, {"id": "middleware_memorycache_deletepattern", "label": ".DeletePattern()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeletePattern()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 4}, {"id": "middleware_memorycache_cleanup", "label": ".cleanup()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".cleanup()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 3}, {"id": "middleware_memorycacheconfig", "label": "MemoryCacheConfig", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MemoryCacheConfig", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 1}, {"id": "middleware_memory_cache_defaultmemorycacheconfig", "label": "DefaultMemoryCacheConfig()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DefaultMemoryCacheConfig()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 1}, {"id": "middleware_memory_cache_memorycachemiddleware", "label": "MemoryCacheMiddleware()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MemoryCacheMiddleware()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 4}, {"id": "middleware_memory_cache_generatememorycachekey", "label": "generateMemoryCacheKey()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMemoryCacheKey()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 2}, {"id": "middleware_memorycachedresponsewriter", "label": "memoryCachedResponseWriter", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "memoryCachedResponseWriter", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 2}, {"id": "middleware_memorycachedresponsewriter_write", "label": ".Write()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".Write()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 2}, {"id": "middleware_memory_cache_invalidatememorycache", "label": "InvalidateMemoryCache()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "InvalidateMemoryCache()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 3}, {"id": "middleware_memory_cache_memorycacheinvalidationmiddleware", "label": "MemoryCacheInvalidationMiddleware()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MemoryCacheInvalidationMiddleware()", "community": 11, "community_name": "Community 11", "source_file": "backend/middleware/memory_cache.go", "file_type": "code", "degree": 2}, {"id": "backend_middleware_metrics_go", "label": "metrics.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.1, "font": {"size": 12, "color": "#ffffff"}, "title": "metrics.go", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 16}, {"id": "middleware_metrics", "label": "Metrics", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Metrics", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_getmetrics", "label": "GetMetrics()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GetMetrics()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 3}, {"id": "middleware_metrics_metricsmiddleware", "label": "MetricsMiddleware()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MetricsMiddleware()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_incrementuserstotal", "label": "IncrementUsersTotal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IncrementUsersTotal()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_incrementbookmarkstotal", "label": "IncrementBookmarksTotal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IncrementBookmarksTotal()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_decrementbookmarkstotal", "label": "DecrementBookmarksTotal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DecrementBookmarksTotal()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_incrementtaskstotal", "label": "IncrementTasksTotal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IncrementTasksTotal()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_decrementtaskstotal", "label": "DecrementTasksTotal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DecrementTasksTotal()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_incrementfilestotal", "label": "IncrementFilesTotal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IncrementFilesTotal()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_decrementfilestotal", "label": "DecrementFilesTotal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DecrementFilesTotal()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_incrementnotestotal", "label": "IncrementNotesTotal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IncrementNotesTotal()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_decrementnotestotal", "label": "DecrementNotesTotal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DecrementNotesTotal()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_setdatabaseconnections", "label": "SetDatabaseConnections()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SetDatabaseConnections()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_resetmetrics", "label": "ResetMetrics()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ResetMetrics()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 1}, {"id": "middleware_metrics_copymap", "label": "copyMap()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "copyMap()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 2}, {"id": "middleware_metrics_copydurationmap", "label": "copyDurationMap()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "copyDurationMap()", "community": 36, "community_name": "Community 36", "source_file": "backend/middleware/metrics.go", "file_type": "code", "degree": 2}, {"id": "backend_middleware_audit_go", "label": "audit.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "audit.go", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 23}, {"id": "middleware_audit_auditmiddleware", "label": "AuditMiddleware()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "AuditMiddleware()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 18}, {"id": "middleware_audit_logsecurityevent", "label": "LogSecurityEvent()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogSecurityEvent()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 5}, {"id": "middleware_audit_loguseraction", "label": "LogUserAction()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "LogUserAction()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 3}, {"id": "middleware_audit_shouldskipaudit", "label": "shouldSkipAudit()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "shouldSkipAudit()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 2}, {"id": "middleware_audit_getuintfrominterface", "label": "getUintFromInterface()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getUintFromInterface()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 1}, {"id": "middleware_audit_getuseremail", "label": "getUserEmail()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getUserEmail()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 1}, {"id": "middleware_audit_getactionfrommethodandpath", "label": "getActionFromMethodAndPath()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getActionFromMethodAndPath()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 3}, {"id": "middleware_audit_getresourcefrompath", "label": "getResourceFromPath()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getResourceFromPath()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 3}, {"id": "middleware_audit_getresourceidfrompath", "label": "getResourceIDFromPath()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getResourceIDFromPath()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 2}, {"id": "middleware_audit_generatedescription", "label": "generateDescription()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateDescription()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 2}, {"id": "middleware_audit_generatedetails", "label": "generateDetails()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateDetails()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 3}, {"id": "middleware_audit_sanitizejson", "label": "sanitizeJSON()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitizeJSON()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 4}, {"id": "middleware_audit_getsessionid", "label": "getSessionID()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getSessionID()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 2}, {"id": "middleware_audit_getcountryfromip", "label": "getCountryFromIP()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getCountryFromIP()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 2}, {"id": "middleware_audit_getdevicefromuseragent", "label": "getDeviceFromUserAgent()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getDeviceFromUserAgent()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 3}, {"id": "middleware_audit_getplatformfromuseragent", "label": "getPlatformFromUserAgent()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getPlatformFromUserAgent()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 3}, {"id": "middleware_audit_getbrowserfromuseragent", "label": "getBrowserFromUserAgent()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getBrowserFromUserAgent()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 3}, {"id": "middleware_audit_assessrisk", "label": "assessRisk()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "assessRisk()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 3}, {"id": "middleware_audit_assesssecurityrisk", "label": "assessSecurityRisk()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "assessSecurityRisk()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 2}, {"id": "middleware_audit_assessactionrisk", "label": "assessActionRisk()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "assessActionRisk()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 2}, {"id": "middleware_audit_issuspiciousactivity", "label": "isSuspiciousActivity()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "isSuspiciousActivity()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 3}, {"id": "middleware_audit_getfailurereason", "label": "getFailureReason()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getFailureReason()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 2}, {"id": "middleware_audit_saveauditlog", "label": "saveAuditLog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "saveAuditLog()", "community": 1, "community_name": "Community 1", "source_file": "backend/middleware/audit.go", "file_type": "code", "degree": 5}, {"id": "desktop_vite_config_ts", "label": "vite.config.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vite.config.ts", "community": 172, "community_name": "Community 172", "source_file": "desktop/vite.config.ts", "file_type": "code", "degree": 0}, {"id": "desktop_src_tauri_build_rs", "label": "build.rs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build.rs", "community": 139, "community_name": "Community 139", "source_file": "desktop/src-tauri/build.rs", "file_type": "code", "degree": 1}, {"id": "src_tauri_build_main", "label": "main()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 139, "community_name": "Community 139", "source_file": "desktop/src-tauri/build.rs", "file_type": "code", "degree": 1}, {"id": "desktop_src_tauri_src_main_rs", "label": "main.rs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 22.9, "font": {"size": 12, "color": "#ffffff"}, "title": "main.rs", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 41}, {"id": "src_main_desktopconfig", "label": "DesktopConfig", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DesktopConfig", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 1}, {"id": "src_main_desktopconfigview", "label": "DesktopConfigView", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DesktopConfigView", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 1}, {"id": "src_main_uploadsummary", "label": "UploadSummary", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UploadSummary", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 1}, {"id": "src_main_tokenvalidationresult", "label": "TokenValidationResult", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TokenValidationResult", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 1}, {"id": "src_main_uploadedfileresponse", "label": "UploadedFileResponse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UploadedFileResponse", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 1}, {"id": "src_main_fileshareresponse", "label": "FileShareResponse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FileShareResponse", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 1}, {"id": "src_main_runtimedesktopconfig", "label": "RuntimeDesktopConfig", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RuntimeDesktopConfig", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 1}, {"id": "src_main_get_desktop_config", "label": "get_desktop_config()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "get_desktop_config()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 5}, {"id": "src_main_connect_instance", "label": "connect_instance()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "connect_instance()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 7}, {"id": "src_main_select_sync_folder", "label": "select_sync_folder()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "select_sync_folder()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_open_sync_folder", "label": "open_sync_folder()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "open_sync_folder()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_upload_files_now", "label": "upload_files_now()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "upload_files_now()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 5}, {"id": "src_main_sync_folder_now", "label": "sync_folder_now()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "sync_folder_now()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 5}, {"id": "src_main_quick_share_files", "label": "quick_share_files()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "quick_share_files()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 5}, {"id": "src_main_validate_integration_token", "label": "validate_integration_token()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_integration_token()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_normalize_instance_url", "label": "normalize_instance_url()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "normalize_instance_url()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 5}, {"id": "src_main_normalize_api_key", "label": "normalize_api_key()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "normalize_api_key()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 5}, {"id": "src_main_normalize_sync_folder", "label": "normalize_sync_folder()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "normalize_sync_folder()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 6}, {"id": "src_main_normalize_optional_sync_folder", "label": "normalize_optional_sync_folder()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "normalize_optional_sync_folder()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_config_path", "label": "config_path()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "config_path()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_load_config", "label": "load_config()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "load_config()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 6}, {"id": "src_main_save_config", "label": "save_config()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "save_config()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_load_runtime_config", "label": "load_runtime_config()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "load_runtime_config()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 8}, {"id": "src_main_collect_files", "label": "collect_files()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "collect_files()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_upload_paths", "label": "upload_paths()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "upload_paths()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_upload_single_file", "label": "upload_single_file()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "upload_single_file()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_quick_share_paths", "label": "quick_share_paths()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "quick_share_paths()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 6}, {"id": "src_main_create_file_share", "label": "create_file_share()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "create_file_share()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 2}, {"id": "src_main_copy_links_to_clipboard", "label": "copy_links_to_clipboard()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "copy_links_to_clipboard()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_validate_token_permissions", "label": "validate_token_permissions()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_token_permissions()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_truncate", "label": "truncate()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "truncate()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 2}, {"id": "src_main_close_window_if_exists", "label": "close_window_if_exists()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "close_window_if_exists()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_open_setup_window", "label": "open_setup_window()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "open_setup_window()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 4}, {"id": "src_main_open_main_window", "label": "open_main_window()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "open_main_window()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 5}, {"id": "src_main_setup_menu", "label": "setup_menu()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "setup_menu()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 2}, {"id": "src_main_show_summary_dialog", "label": "show_summary_dialog()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "show_summary_dialog()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_show_error_dialog", "label": "show_error_dialog()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "show_error_dialog()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 3}, {"id": "src_main_handle_menu_event", "label": "handle_menu_event()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "handle_menu_event()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 9}, {"id": "src_main_boxed_error", "label": "boxed_error()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "boxed_error()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 2}, {"id": "src_main_path_to_string", "label": "path_to_string()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "path_to_string()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/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": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 0, "community_name": "Community 0", "source_file": "desktop/src-tauri/src/main.rs", "file_type": "code", "degree": 6}, {"id": "desktop_src_main_js", "label": "main.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "main.js", "community": 7, "community_name": "Community 7", "source_file": "desktop/src/main.js", "file_type": "code", "degree": 7}, {"id": "src_main_setstatus", "label": "setStatus()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "setStatus()", "community": 7, "community_name": "Community 7", "source_file": "desktop/src/main.js", "file_type": "code", "degree": 2}, {"id": "src_main_seterror", "label": "setError()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "setError()", "community": 7, "community_name": "Community 7", "source_file": "desktop/src/main.js", "file_type": "code", "degree": 25}, {"id": "src_main_setpermissionstatus", "label": "setPermissionStatus()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "setPermissionStatus()", "community": 7, "community_name": "Community 7", "source_file": "desktop/src/main.js", "file_type": "code", "degree": 2}, {"id": "src_main_setbusy", "label": "setBusy()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "setBusy()", "community": 7, "community_name": "Community 7", "source_file": "desktop/src/main.js", "file_type": "code", "degree": 2}, {"id": "src_main_isvalidurl", "label": "isValidUrl()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isValidUrl()", "community": 7, "community_name": "Community 7", "source_file": "desktop/src/main.js", "file_type": "code", "degree": 1}, {"id": "src_main_formatsummary", "label": "formatSummary()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatSummary()", "community": 7, "community_name": "Community 7", "source_file": "desktop/src/main.js", "file_type": "code", "degree": 1}, {"id": "src_main_hydrate", "label": "hydrate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hydrate()", "community": 7, "community_name": "Community 7", "source_file": "desktop/src/main.js", "file_type": "code", "degree": 5}, {"id": "video_src_verticaltrailer_tsx", "label": "VerticalTrailer.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "VerticalTrailer.tsx", "community": 173, "community_name": "Community 173", "source_file": "video/src/VerticalTrailer.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_trailer_tsx", "label": "Trailer.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Trailer.tsx", "community": 174, "community_name": "Community 174", "source_file": "video/src/Trailer.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_index_ts", "label": "index.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 175, "community_name": "Community 175", "source_file": "video/src/index.ts", "file_type": "code", "degree": 0}, {"id": "video_src_poster_tsx", "label": "Poster.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Poster.tsx", "community": 140, "community_name": "Community 140", "source_file": "video/src/Poster.tsx", "file_type": "code", "degree": 1}, {"id": "src_poster_poster", "label": "Poster()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Poster()", "community": 140, "community_name": "Community 140", "source_file": "video/src/Poster.tsx", "file_type": "code", "degree": 1}, {"id": "video_src_remotion_env_d_ts", "label": "remotion-env.d.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "remotion-env.d.ts", "community": 176, "community_name": "Community 176", "source_file": "video/src/remotion-env.d.ts", "file_type": "code", "degree": 0}, {"id": "video_src_root_tsx", "label": "Root.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Root.tsx", "community": 141, "community_name": "Community 141", "source_file": "video/src/Root.tsx", "file_type": "code", "degree": 1}, {"id": "src_root_remotionroot", "label": "RemotionRoot()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RemotionRoot()", "community": 141, "community_name": "Community 141", "source_file": "video/src/Root.tsx", "file_type": "code", "degree": 1}, {"id": "video_src_traileraudio_tsx", "label": "TrailerAudio.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TrailerAudio.tsx", "community": 142, "community_name": "Community 142", "source_file": "video/src/TrailerAudio.tsx", "file_type": "code", "degree": 1}, {"id": "src_traileraudio_traileraudio", "label": "TrailerAudio()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TrailerAudio()", "community": 142, "community_name": "Community 142", "source_file": "video/src/TrailerAudio.tsx", "file_type": "code", "degree": 1}, {"id": "video_src_theme_trackeep_ts", "label": "trackeep.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "trackeep.ts", "community": 177, "community_name": "Community 177", "source_file": "video/src/theme/trackeep.ts", "file_type": "code", "degree": 0}, {"id": "video_src_scenes_montagescene_tsx", "label": "MontageScene.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MontageScene.tsx", "community": 178, "community_name": "Community 178", "source_file": "video/src/scenes/MontageScene.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_scenes_coldopenscene_tsx", "label": "ColdOpenScene.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ColdOpenScene.tsx", "community": 179, "community_name": "Community 179", "source_file": "video/src/scenes/ColdOpenScene.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_scenes_metricsactivationscene_tsx", "label": "MetricsActivationScene.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MetricsActivationScene.tsx", "community": 143, "community_name": "Community 143", "source_file": "video/src/scenes/MetricsActivationScene.tsx", "file_type": "code", "degree": 1}, {"id": "scenes_metricsactivationscene_s", "label": "s()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "s()", "community": 143, "community_name": "Community 143", "source_file": "video/src/scenes/MetricsActivationScene.tsx", "file_type": "code", "degree": 1}, {"id": "video_src_scenes_searchaiscene_tsx", "label": "SearchAiScene.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchAiScene.tsx", "community": 144, "community_name": "Community 144", "source_file": "video/src/scenes/SearchAiScene.tsx", "file_type": "code", "degree": 1}, {"id": "scenes_searchaiscene_s", "label": "s()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "s()", "community": 144, "community_name": "Community 144", "source_file": "video/src/scenes/SearchAiScene.tsx", "file_type": "code", "degree": 1}, {"id": "video_src_scenes_endcardscene_tsx", "label": "EndCardScene.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EndCardScene.tsx", "community": 145, "community_name": "Community 145", "source_file": "video/src/scenes/EndCardScene.tsx", "file_type": "code", "degree": 1}, {"id": "scenes_endcardscene_endcardscene", "label": "EndCardScene()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EndCardScene()", "community": 145, "community_name": "Community 145", "source_file": "video/src/scenes/EndCardScene.tsx", "file_type": "code", "degree": 1}, {"id": "video_src_scenes_analyticsscene_tsx", "label": "AnalyticsScene.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AnalyticsScene.tsx", "community": 146, "community_name": "Community 146", "source_file": "video/src/scenes/AnalyticsScene.tsx", "file_type": "code", "degree": 1}, {"id": "scenes_analyticsscene_s", "label": "s()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "s()", "community": 146, "community_name": "Community 146", "source_file": "video/src/scenes/AnalyticsScene.tsx", "file_type": "code", "degree": 1}, {"id": "video_src_scenes_dashboardflybyscene_tsx", "label": "DashboardFlybyScene.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DashboardFlybyScene.tsx", "community": 147, "community_name": "Community 147", "source_file": "video/src/scenes/DashboardFlybyScene.tsx", "file_type": "code", "degree": 1}, {"id": "scenes_dashboardflybyscene_s", "label": "s()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "s()", "community": 147, "community_name": "Community 147", "source_file": "video/src/scenes/DashboardFlybyScene.tsx", "file_type": "code", "degree": 1}, {"id": "video_src_scenes_timetrackingscene_tsx", "label": "TimeTrackingScene.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TimeTrackingScene.tsx", "community": 148, "community_name": "Community 148", "source_file": "video/src/scenes/TimeTrackingScene.tsx", "file_type": "code", "degree": 1}, {"id": "scenes_timetrackingscene_s", "label": "s()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "s()", "community": 148, "community_name": "Community 148", "source_file": "video/src/scenes/TimeTrackingScene.tsx", "file_type": "code", "degree": 1}, {"id": "video_src_scenes_portrait_portraitdashboardscene_tsx", "label": "PortraitDashboardScene.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PortraitDashboardScene.tsx", "community": 180, "community_name": "Community 180", "source_file": "video/src/scenes/portrait/PortraitDashboardScene.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_scenes_portrait_portraitmetricsscene_tsx", "label": "PortraitMetricsScene.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PortraitMetricsScene.tsx", "community": 181, "community_name": "Community 181", "source_file": "video/src/scenes/portrait/PortraitMetricsScene.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_scenes_portrait_portraitanalyticsscene_tsx", "label": "PortraitAnalyticsScene.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PortraitAnalyticsScene.tsx", "community": 182, "community_name": "Community 182", "source_file": "video/src/scenes/portrait/PortraitAnalyticsScene.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_scenes_portrait_portraittimetrackingscene_tsx", "label": "PortraitTimeTrackingScene.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PortraitTimeTrackingScene.tsx", "community": 183, "community_name": "Community 183", "source_file": "video/src/scenes/portrait/PortraitTimeTrackingScene.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_scenes_portrait_portraitsceneshell_tsx", "label": "PortraitSceneShell.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PortraitSceneShell.tsx", "community": 149, "community_name": "Community 149", "source_file": "video/src/scenes/portrait/PortraitSceneShell.tsx", "file_type": "code", "degree": 1}, {"id": "portrait_portraitsceneshell_portraitsceneshell", "label": "PortraitSceneShell()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PortraitSceneShell()", "community": 149, "community_name": "Community 149", "source_file": "video/src/scenes/portrait/PortraitSceneShell.tsx", "file_type": "code", "degree": 1}, {"id": "video_src_scenes_portrait_portraitsearchaiscene_tsx", "label": "PortraitSearchAiScene.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PortraitSearchAiScene.tsx", "community": 184, "community_name": "Community 184", "source_file": "video/src/scenes/portrait/PortraitSearchAiScene.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_scenes_portrait_portraitmontagescene_tsx", "label": "PortraitMontageScene.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PortraitMontageScene.tsx", "community": 185, "community_name": "Community 185", "source_file": "video/src/scenes/portrait/PortraitMontageScene.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_scenes_portrait_portraitcoldopenscene_tsx", "label": "PortraitColdOpenScene.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PortraitColdOpenScene.tsx", "community": 186, "community_name": "Community 186", "source_file": "video/src/scenes/portrait/PortraitColdOpenScene.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_data_trailerdata_ts", "label": "trailerData.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "trailerData.ts", "community": 187, "community_name": "Community 187", "source_file": "video/src/data/trailerData.ts", "file_type": "code", "degree": 0}, {"id": "video_src_data_types_ts", "label": "types.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "types.ts", "community": 188, "community_name": "Community 188", "source_file": "video/src/data/types.ts", "file_type": "code", "degree": 0}, {"id": "video_src_components_iconbadge_tsx", "label": "IconBadge.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "IconBadge.tsx", "community": 189, "community_name": "Community 189", "source_file": "video/src/components/IconBadge.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_searchfield_tsx", "label": "SearchField.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchField.tsx", "community": 190, "community_name": "Community 190", "source_file": "video/src/components/SearchField.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_progressmodule_tsx", "label": "ProgressModule.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ProgressModule.tsx", "community": 191, "community_name": "Community 191", "source_file": "video/src/components/ProgressModule.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_signalbadge_tsx", "label": "SignalBadge.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SignalBadge.tsx", "community": 192, "community_name": "Community 192", "source_file": "video/src/components/SignalBadge.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_metrictile_tsx", "label": "MetricTile.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "MetricTile.tsx", "community": 193, "community_name": "Community 193", "source_file": "video/src/components/MetricTile.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_headershell_tsx", "label": "HeaderShell.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "HeaderShell.tsx", "community": 194, "community_name": "Community 194", "source_file": "video/src/components/HeaderShell.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_typingmessage_tsx", "label": "TypingMessage.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "TypingMessage.tsx", "community": 195, "community_name": "Community 195", "source_file": "video/src/components/TypingMessage.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_chartbars_tsx", "label": "ChartBars.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ChartBars.tsx", "community": 196, "community_name": "Community 196", "source_file": "video/src/components/ChartBars.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_appchrome_tsx", "label": "AppChrome.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AppChrome.tsx", "community": 197, "community_name": "Community 197", "source_file": "video/src/components/AppChrome.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_routepreviewcard_tsx", "label": "RoutePreviewCard.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "RoutePreviewCard.tsx", "community": 198, "community_name": "Community 198", "source_file": "video/src/components/RoutePreviewCard.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_kineticheadline_tsx", "label": "KineticHeadline.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "KineticHeadline.tsx", "community": 199, "community_name": "Community 199", "source_file": "video/src/components/KineticHeadline.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_highlightbox_tsx", "label": "HighlightBox.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "HighlightBox.tsx", "community": 200, "community_name": "Community 200", "source_file": "video/src/components/HighlightBox.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_demosurface_tsx", "label": "DemoSurface.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DemoSurface.tsx", "community": 150, "community_name": "Community 150", "source_file": "video/src/components/DemoSurface.tsx", "file_type": "code", "degree": 1}, {"id": "components_demosurface_resolvemotion", "label": "resolveMotion()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveMotion()", "community": 150, "community_name": "Community 150", "source_file": "video/src/components/DemoSurface.tsx", "file_type": "code", "degree": 1}, {"id": "video_src_components_backdrop_tsx", "label": "Backdrop.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Backdrop.tsx", "community": 201, "community_name": "Community 201", "source_file": "video/src/components/Backdrop.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_endcard_tsx", "label": "EndCard.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "EndCard.tsx", "community": 202, "community_name": "Community 202", "source_file": "video/src/components/EndCard.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_components_sidebarshell_tsx", "label": "SidebarShell.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SidebarShell.tsx", "community": 203, "community_name": "Community 203", "source_file": "video/src/components/SidebarShell.tsx", "file_type": "code", "degree": 0}, {"id": "video_src_lib_trailer_config_tsx", "label": "trailer-config.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "trailer-config.tsx", "community": 151, "community_name": "Community 151", "source_file": "video/src/lib/trailer-config.tsx", "file_type": "code", "degree": 1}, {"id": "lib_trailer_config_usetrailerconfig", "label": "useTrailerConfig()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useTrailerConfig()", "community": 151, "community_name": "Community 151", "source_file": "video/src/lib/trailer-config.tsx", "file_type": "code", "degree": 1}, {"id": "video_src_lib_motion_ts", "label": "motion.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "motion.ts", "community": 98, "community_name": "Community 98", "source_file": "video/src/lib/motion.ts", "file_type": "code", "degree": 3}, {"id": "lib_motion_springin", "label": "springIn()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "springIn()", "community": 98, "community_name": "Community 98", "source_file": "video/src/lib/motion.ts", "file_type": "code", "degree": 1}, {"id": "lib_motion_easedprogress", "label": "easedProgress()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "easedProgress()", "community": 98, "community_name": "Community 98", "source_file": "video/src/lib/motion.ts", "file_type": "code", "degree": 1}, {"id": "lib_motion_fadeslideupstyle", "label": "fadeSlideUpStyle()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fadeSlideUpStyle()", "community": 98, "community_name": "Community 98", "source_file": "video/src/lib/motion.ts", "file_type": "code", "degree": 1}, {"id": "video_src_lib_format_ts", "label": "format.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "format.ts", "community": 88, "community_name": "Community 88", "source_file": "video/src/lib/format.ts", "file_type": "code", "degree": 4}, {"id": "lib_format_formatmetricvalue", "label": "formatMetricValue()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatMetricValue()", "community": 88, "community_name": "Community 88", "source_file": "video/src/lib/format.ts", "file_type": "code", "degree": 1}, {"id": "lib_format_formatstopwatch", "label": "formatStopwatch()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatStopwatch()", "community": 88, "community_name": "Community 88", "source_file": "video/src/lib/format.ts", "file_type": "code", "degree": 1}, {"id": "lib_format_formatanalyticshours", "label": "formatAnalyticsHours()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatAnalyticsHours()", "community": 88, "community_name": "Community 88", "source_file": "video/src/lib/format.ts", "file_type": "code", "degree": 1}, {"id": "lib_format_clamp", "label": "clamp()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clamp()", "community": 88, "community_name": "Community 88", "source_file": "video/src/lib/format.ts", "file_type": "code", "degree": 1}, {"id": "static_assets_index_0vyyz8r_js", "label": "index-0VyYz8R-.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 30.2, "font": {"size": 12, "color": "#ffffff"}, "title": "index-0VyYz8R-.js", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 64}, {"id": "assets_index_0vyyz8r_r", "label": "r()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "r()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 13}, {"id": "assets_index_0vyyz8r_n", "label": "n()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "n()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_ot", "label": "Ot()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Ot()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 4}, {"id": "assets_index_0vyyz8r_fe", "label": "Fe()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Fe()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_k", "label": "k()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "k()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 7}, {"id": "assets_index_0vyyz8r_p", "label": "P()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "P()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 7}, {"id": "assets_index_0vyyz8r_ut", "label": "Ut()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Ut()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 4}, {"id": "assets_index_0vyyz8r_j", "label": "J()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "J()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 8}, {"id": "assets_index_0vyyz8r_ee", "label": "ee()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ee()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 4}, {"id": "assets_index_0vyyz8r_ft", "label": "Ft()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Ft()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_lt", "label": "lt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "lt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 5}, {"id": "assets_index_0vyyz8r_qt", "label": "qt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "qt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_bt", "label": "Bt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Bt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 4}, {"id": "assets_index_0vyyz8r_kt", "label": "Kt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Kt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_t", "label": "_t()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_t()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_vt", "label": "Vt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Vt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_ct", "label": "Ct()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Ct()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 7}, {"id": "assets_index_0vyyz8r_st", "label": "St()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "St()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_ae", "label": "Ae()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Ae()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 8}, {"id": "assets_index_0vyyz8r_zt", "label": "zt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "zt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 4}, {"id": "assets_index_0vyyz8r_at", "label": "at()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "at()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 4}, {"id": "assets_index_0vyyz8r_ke", "label": "Ke()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Ke()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 7}, {"id": "assets_index_0vyyz8r_ye", "label": "ye()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ye()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 8}, {"id": "assets_index_0vyyz8r_gt", "label": "Gt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Gt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_et", "label": "Et()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Et()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_ht", "label": "Ht()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Ht()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_ve", "label": "Ve()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Ve()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_xt", "label": "Xt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Xt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_jt", "label": "Jt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Jt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_yt", "label": "Yt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Yt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_s", "label": "S()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "S()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 6}, {"id": "assets_index_0vyyz8r_ne", "label": "Ne()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Ne()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 1}, {"id": "assets_index_0vyyz8r_tt", "label": "tt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_er", "label": "er()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "er()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_tr", "label": "tr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 1}, {"id": "assets_index_0vyyz8r_de", "label": "de()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "de()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_re", "label": "re()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "re()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_rr", "label": "rr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "rr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_nr", "label": "nr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "nr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_xe", "label": "Xe()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Xe()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_sr", "label": "sr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 1}, {"id": "assets_index_0vyyz8r_ze", "label": "ze()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ze()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 1}, {"id": "assets_index_0vyyz8r_h", "label": "h()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "h()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_ir", "label": "ir()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ir()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 1}, {"id": "assets_index_0vyyz8r_ge", "label": "Ge()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Ge()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 8}, {"id": "assets_index_0vyyz8r_it", "label": "it()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "it()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_pt", "label": "pt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "pt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_se", "label": "Se()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Se()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_or", "label": "or()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "or()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_ar", "label": "ar()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ar()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_cr", "label": "cr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "cr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_dr", "label": "dr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "dr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_ur", "label": "ur()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ur()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 6}, {"id": "assets_index_0vyyz8r_fr", "label": "fr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_gr", "label": "gr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "gr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_hr", "label": "hr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_rt", "label": "rt()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "rt()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_xr", "label": "xr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "xr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_vr", "label": "vr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "vr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_wr", "label": "wr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "wr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 5}, {"id": "assets_index_0vyyz8r_ue", "label": "Ue()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Ue()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_qr", "label": "qr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "qr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 3}, {"id": "assets_index_0vyyz8r_jr", "label": "Jr()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Jr()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "assets_index_0vyyz8r_children", "label": "children()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "children()", "community": 8, "community_name": "Community 8", "source_file": "static/assets/index-0VyYz8R-.js", "file_type": "code", "degree": 2}, {"id": "frontend_uno_config_ts", "label": "uno.config.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "uno.config.ts", "community": 204, "community_name": "Community 204", "source_file": "frontend/uno.config.ts", "file_type": "code", "degree": 0}, {"id": "frontend_vite_config_ts", "label": "vite.config.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "vite.config.ts", "community": 107, "community_name": "Community 107", "source_file": "frontend/vite.config.ts", "file_type": "code", "degree": 2}, {"id": "frontend_vite_config_generatebundle", "label": "generateBundle()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "generateBundle()", "community": 107, "community_name": "Community 107", "source_file": "frontend/vite.config.ts", "file_type": "code", "degree": 1}, {"id": "frontend_vite_config_onwarn", "label": "onwarn()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "onwarn()", "community": 107, "community_name": "Community 107", "source_file": "frontend/vite.config.ts", "file_type": "code", "degree": 1}, {"id": "frontend_src_index_tsx", "label": "index.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "index.tsx", "community": 108, "community_name": "Community 108", "source_file": "frontend/src/index.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_app_tsx", "label": "App.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "App.tsx", "community": 108, "community_name": "Community 108", "source_file": "frontend/src/App.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_initializedarkmode", "label": "initializeDarkMode()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "initializeDarkMode()", "community": 108, "community_name": "Community 108", "source_file": "frontend/src/App.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_global_d_ts", "label": "global.d.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "global.d.ts", "community": 205, "community_name": "Community 205", "source_file": "frontend/src/global.d.ts", "file_type": "code", "degree": 0}, {"id": "frontend_src_services_updateservice_ts", "label": "updateService.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "updateService.ts", "community": 206, "community_name": "Community 206", "source_file": "frontend/src/services/updateService.ts", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_timer_tsx", "label": "Timer.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Timer.tsx", "community": 207, "community_name": "Community 207", "source_file": "frontend/src/components/Timer.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_protectedroute_tsx", "label": "ProtectedRoute.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProtectedRoute.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ProtectedRoute.tsx", "file_type": "code", "degree": 1}, {"id": "components_protectedroute_protectedroute", "label": "ProtectedRoute()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProtectedRoute()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ProtectedRoute.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_aiprovidericon_tsx", "label": "AIProviderIcon.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AIProviderIcon.tsx", "community": 152, "community_name": "Community 152", "source_file": "frontend/src/components/AIProviderIcon.tsx", "file_type": "code", "degree": 1}, {"id": "components_aiprovidericon_aiprovidericon", "label": "AIProviderIcon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AIProviderIcon()", "community": 152, "community_name": "Community 152", "source_file": "frontend/src/components/AIProviderIcon.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_authenticationwarning_tsx", "label": "AuthenticationWarning.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthenticationWarning.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/AuthenticationWarning.tsx", "file_type": "code", "degree": 3}, {"id": "components_authenticationwarning_handlelogin", "label": "handleLogin()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleLogin()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/AuthenticationWarning.tsx", "file_type": "code", "degree": 1}, {"id": "components_authenticationwarning_handleregister", "label": "handleRegister()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleRegister()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/AuthenticationWarning.tsx", "file_type": "code", "degree": 1}, {"id": "components_authenticationwarning_handledemomode", "label": "handleDemoMode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDemoMode()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/AuthenticationWarning.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_twofactorauth_tsx", "label": "TwoFactorAuth.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TwoFactorAuth.tsx", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/TwoFactorAuth.tsx", "file_type": "code", "degree": 8}, {"id": "components_twofactorauth_getauthheaders", "label": "getAuthHeaders()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getAuthHeaders()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/TwoFactorAuth.tsx", "file_type": "code", "degree": 8}, {"id": "components_twofactorauth_fetchtotpstatus", "label": "fetchTOTPStatus()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchTOTPStatus()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/TwoFactorAuth.tsx", "file_type": "code", "degree": 5}, {"id": "components_twofactorauth_setuptotp", "label": "setupTOTP()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "setupTOTP()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/TwoFactorAuth.tsx", "file_type": "code", "degree": 3}, {"id": "components_twofactorauth_verifytotpcode", "label": "verifyTOTPCode()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "verifyTOTPCode()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/TwoFactorAuth.tsx", "file_type": "code", "degree": 3}, {"id": "components_twofactorauth_enabletotp", "label": "enableTOTP()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "enableTOTP()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/TwoFactorAuth.tsx", "file_type": "code", "degree": 4}, {"id": "components_twofactorauth_disabletotp", "label": "disableTOTP()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "disableTOTP()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/TwoFactorAuth.tsx", "file_type": "code", "degree": 4}, {"id": "components_twofactorauth_verifybackupcode", "label": "verifyBackupCode()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "verifyBackupCode()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/TwoFactorAuth.tsx", "file_type": "code", "degree": 3}, {"id": "components_twofactorauth_regeneratebackupcodes", "label": "regenerateBackupCodes()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "regenerateBackupCodes()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/TwoFactorAuth.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_src_components_timeentrieslist_tsx", "label": "TimeEntriesList.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "TimeEntriesList.tsx", "community": 208, "community_name": "Community 208", "source_file": "frontend/src/components/TimeEntriesList.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_ui_input_tsx", "label": "Input.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Input.tsx", "community": 153, "community_name": "Community 153", "source_file": "frontend/src/components/ui/Input.tsx", "file_type": "code", "degree": 1}, {"id": "ui_input_input", "label": "Input()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Input()", "community": 153, "community_name": "Community 153", "source_file": "frontend/src/components/ui/Input.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_textarea_tsx", "label": "Textarea.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Textarea.tsx", "community": 154, "community_name": "Community 154", "source_file": "frontend/src/components/ui/Textarea.tsx", "file_type": "code", "degree": 1}, {"id": "ui_textarea_textarea", "label": "Textarea()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Textarea()", "community": 154, "community_name": "Community 154", "source_file": "frontend/src/components/ui/Textarea.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_membermodal_tsx", "label": "MemberModal.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MemberModal.tsx", "community": 109, "community_name": "Community 109", "source_file": "frontend/src/components/ui/MemberModal.tsx", "file_type": "code", "degree": 2}, {"id": "ui_membermodal_resetform", "label": "resetForm()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resetForm()", "community": 109, "community_name": "Community 109", "source_file": "frontend/src/components/ui/MemberModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_membermodal_handlesubmit", "label": "handleSubmit()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSubmit()", "community": 109, "community_name": "Community 109", "source_file": "frontend/src/components/ui/MemberModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_richtexteditor_tsx", "label": "RichTextEditor.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "RichTextEditor.tsx", "community": 209, "community_name": "Community 209", "source_file": "frontend/src/components/ui/RichTextEditor.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_ui_responsivegrid_tsx", "label": "ResponsiveGrid.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ResponsiveGrid.tsx", "community": 110, "community_name": "Community 110", "source_file": "frontend/src/components/ui/ResponsiveGrid.tsx", "file_type": "code", "degree": 2}, {"id": "ui_responsivegrid_responsivegrid", "label": "ResponsiveGrid()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ResponsiveGrid()", "community": 110, "community_name": "Community 110", "source_file": "frontend/src/components/ui/ResponsiveGrid.tsx", "file_type": "code", "degree": 1}, {"id": "ui_responsivegrid_masonrygrid", "label": "MasonryGrid()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MasonryGrid()", "community": 110, "community_name": "Community 110", "source_file": "frontend/src/components/ui/ResponsiveGrid.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_notemodal_tsx", "label": "NoteModal.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NoteModal.tsx", "community": 111, "community_name": "Community 111", "source_file": "frontend/src/components/ui/NoteModal.tsx", "file_type": "code", "degree": 2}, {"id": "ui_notemodal_availabletags", "label": "availableTags()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "availableTags()", "community": 111, "community_name": "Community 111", "source_file": "frontend/src/components/ui/NoteModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_notemodal_handlesubmit", "label": "handleSubmit()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSubmit()", "community": 111, "community_name": "Community 111", "source_file": "frontend/src/components/ui/NoteModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_dialog_tsx", "label": "Dialog.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Dialog.tsx", "community": 210, "community_name": "Community 210", "source_file": "frontend/src/components/ui/Dialog.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_ui_timepicker_tsx", "label": "TimePicker.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TimePicker.tsx", "community": 78, "community_name": "Community 78", "source_file": "frontend/src/components/ui/TimePicker.tsx", "file_type": "code", "degree": 5}, {"id": "ui_timepicker_getcurrenthour", "label": "getCurrentHour()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getCurrentHour()", "community": 78, "community_name": "Community 78", "source_file": "frontend/src/components/ui/TimePicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_timepicker_getcurrentminute", "label": "getCurrentMinute()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getCurrentMinute()", "community": 78, "community_name": "Community 78", "source_file": "frontend/src/components/ui/TimePicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_timepicker_handletimeselect", "label": "handleTimeSelect()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleTimeSelect()", "community": 78, "community_name": "Community 78", "source_file": "frontend/src/components/ui/TimePicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_timepicker_handletogglemodal", "label": "handleToggleModal()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleToggleModal()", "community": 78, "community_name": "Community 78", "source_file": "frontend/src/components/ui/TimePicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_timepicker_formattime", "label": "formatTime()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatTime()", "community": 78, "community_name": "Community 78", "source_file": "frontend/src/components/ui/TimePicker.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_badge_tsx", "label": "badge.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "badge.tsx", "community": 155, "community_name": "Community 155", "source_file": "frontend/src/components/ui/badge.tsx", "file_type": "code", "degree": 1}, {"id": "ui_badge_badge", "label": "Badge()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Badge()", "community": 155, "community_name": "Community 155", "source_file": "frontend/src/components/ui/badge.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_learningpathmodal_tsx", "label": "LearningPathModal.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "LearningPathModal.tsx", "community": 99, "community_name": "Community 99", "source_file": "frontend/src/components/ui/LearningPathModal.tsx", "file_type": "code", "degree": 3}, {"id": "ui_learningpathmodal_resetform", "label": "resetForm()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "resetForm()", "community": 99, "community_name": "Community 99", "source_file": "frontend/src/components/ui/LearningPathModal.tsx", "file_type": "code", "degree": 2}, {"id": "ui_learningpathmodal_handlesubmit", "label": "handleSubmit()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSubmit()", "community": 99, "community_name": "Community 99", "source_file": "frontend/src/components/ui/LearningPathModal.tsx", "file_type": "code", "degree": 2}, {"id": "ui_learningpathmodal_handleinputchange", "label": "handleInputChange()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleInputChange()", "community": 99, "community_name": "Community 99", "source_file": "frontend/src/components/ui/LearningPathModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_enhancedcard_tsx", "label": "EnhancedCard.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EnhancedCard.tsx", "community": 156, "community_name": "Community 156", "source_file": "frontend/src/components/ui/EnhancedCard.tsx", "file_type": "code", "degree": 1}, {"id": "ui_enhancedcard_handleclose", "label": "handleClose()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleClose()", "community": 156, "community_name": "Community 156", "source_file": "frontend/src/components/ui/EnhancedCard.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_colorswitcherdropdown_tsx", "label": "ColorSwitcherDropdown.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ColorSwitcherDropdown.tsx", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/components/ui/ColorSwitcherDropdown.tsx", "file_type": "code", "degree": 1}, {"id": "ui_colorswitcherdropdown_applyscheme", "label": "applyScheme()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "applyScheme()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/components/ui/ColorSwitcherDropdown.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_ui_dropdownmenu_tsx", "label": "DropdownMenu.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "DropdownMenu.tsx", "community": 211, "community_name": "Community 211", "source_file": "frontend/src/components/ui/DropdownMenu.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_ui_videouploadmodal_tsx", "label": "VideoUploadModal.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoUploadModal.tsx", "community": 112, "community_name": "Community 112", "source_file": "frontend/src/components/ui/VideoUploadModal.tsx", "file_type": "code", "degree": 2}, {"id": "ui_videouploadmodal_extractvideoid", "label": "extractVideoId()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "extractVideoId()", "community": 112, "community_name": "Community 112", "source_file": "frontend/src/components/ui/VideoUploadModal.tsx", "file_type": "code", "degree": 2}, {"id": "ui_videouploadmodal_handlesubmit", "label": "handleSubmit()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSubmit()", "community": 112, "community_name": "Community 112", "source_file": "frontend/src/components/ui/VideoUploadModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_ui_searchfilters_tsx", "label": "SearchFilters.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchFilters.tsx", "community": 89, "community_name": "Community 89", "source_file": "frontend/src/components/ui/SearchFilters.tsx", "file_type": "code", "degree": 4}, {"id": "ui_searchfilters_handlesearchchange", "label": "handleSearchChange()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSearchChange()", "community": 89, "community_name": "Community 89", "source_file": "frontend/src/components/ui/SearchFilters.tsx", "file_type": "code", "degree": 1}, {"id": "ui_searchfilters_handlefilterchange", "label": "handleFilterChange()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleFilterChange()", "community": 89, "community_name": "Community 89", "source_file": "frontend/src/components/ui/SearchFilters.tsx", "file_type": "code", "degree": 1}, {"id": "ui_searchfilters_clearallfilters", "label": "clearAllFilters()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clearAllFilters()", "community": 89, "community_name": "Community 89", "source_file": "frontend/src/components/ui/SearchFilters.tsx", "file_type": "code", "degree": 1}, {"id": "ui_searchfilters_activefiltercount", "label": "activeFilterCount()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "activeFilterCount()", "community": 89, "community_name": "Community 89", "source_file": "frontend/src/components/ui/SearchFilters.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_datepicker_tsx", "label": "DatePicker.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DatePicker.tsx", "community": 113, "community_name": "Community 113", "source_file": "frontend/src/components/ui/DatePicker.tsx", "file_type": "code", "degree": 2}, {"id": "ui_datepicker_handledatechange", "label": "handleDateChange()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDateChange()", "community": 113, "community_name": "Community 113", "source_file": "frontend/src/components/ui/DatePicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_datepicker_handletimechange", "label": "handleTimeChange()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleTimeChange()", "community": 113, "community_name": "Community 113", "source_file": "frontend/src/components/ui/DatePicker.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_fileuploadmodal_tsx", "label": "FileUploadModal.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "FileUploadModal.tsx", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 12}, {"id": "ui_fileuploadmodal_handlekeydown", "label": "handleKeyDown()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleKeyDown()", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileuploadmodal_handlefileselect", "label": "handleFileSelect()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleFileSelect()", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileuploadmodal_handledrag", "label": "handleDrag()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDrag()", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileuploadmodal_handledrop", "label": "handleDrop()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDrop()", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileuploadmodal_addtag", "label": "addTag()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "addTag()", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileuploadmodal_removetag", "label": "removeTag()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "removeTag()", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileuploadmodal_addassociation", "label": "addAssociation()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "addAssociation()", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileuploadmodal_removeassociation", "label": "removeAssociation()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "removeAssociation()", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileuploadmodal_handleupload", "label": "handleUpload()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleUpload()", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileuploadmodal_getfileicon", "label": "getFileIcon()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getFileIcon()", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileuploadmodal_isvalidurl", "label": "isValidUrl()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isValidUrl()", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 2}, {"id": "ui_fileuploadmodal_canupload", "label": "canUpload()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "canUpload()", "community": 48, "community_name": "Community 48", "source_file": "frontend/src/components/ui/FileUploadModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_ui_githubactivity_tsx", "label": "GitHubActivity.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "GitHubActivity.tsx", "community": 65, "community_name": "Community 65", "source_file": "frontend/src/components/ui/GitHubActivity.tsx", "file_type": "code", "degree": 7}, {"id": "ui_githubactivity_setemptydata", "label": "setEmptyData()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "setEmptyData()", "community": 65, "community_name": "Community 65", "source_file": "frontend/src/components/ui/GitHubActivity.tsx", "file_type": "code", "degree": 1}, {"id": "ui_githubactivity_setdemodata", "label": "setDemoData()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "setDemoData()", "community": 65, "community_name": "Community 65", "source_file": "frontend/src/components/ui/GitHubActivity.tsx", "file_type": "code", "degree": 1}, {"id": "ui_githubactivity_handlegithubactivitydata", "label": "handleGitHubActivityData()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleGitHubActivityData()", "community": 65, "community_name": "Community 65", "source_file": "frontend/src/components/ui/GitHubActivity.tsx", "file_type": "code", "degree": 1}, {"id": "ui_githubactivity_getmonthlabels", "label": "getMonthLabels()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getMonthLabels()", "community": 65, "community_name": "Community 65", "source_file": "frontend/src/components/ui/GitHubActivity.tsx", "file_type": "code", "degree": 1}, {"id": "ui_githubactivity_getactivitycolor", "label": "getActivityColor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getActivityColor()", "community": 65, "community_name": "Community 65", "source_file": "frontend/src/components/ui/GitHubActivity.tsx", "file_type": "code", "degree": 1}, {"id": "ui_githubactivity_formatcontributioncount", "label": "formatContributionCount()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatContributionCount()", "community": 65, "community_name": "Community 65", "source_file": "frontend/src/components/ui/GitHubActivity.tsx", "file_type": "code", "degree": 1}, {"id": "ui_githubactivity_geteventicon", "label": "getEventIcon()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getEventIcon()", "community": 65, "community_name": "Community 65", "source_file": "frontend/src/components/ui/GitHubActivity.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_taskmodal_tsx", "label": "TaskModal.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TaskModal.tsx", "community": 114, "community_name": "Community 114", "source_file": "frontend/src/components/ui/TaskModal.tsx", "file_type": "code", "degree": 2}, {"id": "ui_taskmodal_resetform", "label": "resetForm()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resetForm()", "community": 114, "community_name": "Community 114", "source_file": "frontend/src/components/ui/TaskModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_taskmodal_handlesubmit", "label": "handleSubmit()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSubmit()", "community": 114, "community_name": "Community 114", "source_file": "frontend/src/components/ui/TaskModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_button_tsx", "label": "Button.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Button.tsx", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/components/ui/Button.tsx", "file_type": "code", "degree": 1}, {"id": "ui_button_button", "label": "Button()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Button()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/components/ui/Button.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_ui_loadingstate_tsx", "label": "LoadingState.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingState.tsx", "community": 212, "community_name": "Community 212", "source_file": "frontend/src/components/ui/LoadingState.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_ui_confirmmodal_tsx", "label": "ConfirmModal.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ConfirmModal.tsx", "community": 115, "community_name": "Community 115", "source_file": "frontend/src/components/ui/ConfirmModal.tsx", "file_type": "code", "degree": 2}, {"id": "ui_confirmmodal_geticon", "label": "getIcon()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getIcon()", "community": 115, "community_name": "Community 115", "source_file": "frontend/src/components/ui/ConfirmModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_confirmmodal_getconfirmbuttonvariant", "label": "getConfirmButtonVariant()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getConfirmButtonVariant()", "community": 115, "community_name": "Community 115", "source_file": "frontend/src/components/ui/ConfirmModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_searchtagfilterbar_tsx", "label": "SearchTagFilterBar.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchTagFilterBar.tsx", "community": 213, "community_name": "Community 213", "source_file": "frontend/src/components/ui/SearchTagFilterBar.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_ui_tabs_simple_tsx", "label": "tabs-simple.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tabs-simple.tsx", "community": 90, "community_name": "Community 90", "source_file": "frontend/src/components/ui/tabs-simple.tsx", "file_type": "code", "degree": 4}, {"id": "ui_tabs_simple_tabs", "label": "Tabs()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tabs()", "community": 90, "community_name": "Community 90", "source_file": "frontend/src/components/ui/tabs-simple.tsx", "file_type": "code", "degree": 1}, {"id": "ui_tabs_simple_tabslist", "label": "TabsList()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TabsList()", "community": 90, "community_name": "Community 90", "source_file": "frontend/src/components/ui/tabs-simple.tsx", "file_type": "code", "degree": 1}, {"id": "ui_tabs_simple_tabstrigger", "label": "TabsTrigger()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TabsTrigger()", "community": 90, "community_name": "Community 90", "source_file": "frontend/src/components/ui/tabs-simple.tsx", "file_type": "code", "degree": 1}, {"id": "ui_tabs_simple_tabscontent", "label": "TabsContent()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TabsContent()", "community": 90, "community_name": "Community 90", "source_file": "frontend/src/components/ui/tabs-simple.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_tagpicker_tsx", "label": "TagPicker.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TagPicker.tsx", "community": 79, "community_name": "Community 79", "source_file": "frontend/src/components/ui/TagPicker.tsx", "file_type": "code", "degree": 5}, {"id": "ui_tagpicker_addtag", "label": "addTag()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "addTag()", "community": 79, "community_name": "Community 79", "source_file": "frontend/src/components/ui/TagPicker.tsx", "file_type": "code", "degree": 2}, {"id": "ui_tagpicker_removetag", "label": "removeTag()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "removeTag()", "community": 79, "community_name": "Community 79", "source_file": "frontend/src/components/ui/TagPicker.tsx", "file_type": "code", "degree": 2}, {"id": "ui_tagpicker_handleinputkeydown", "label": "handleInputKeyDown()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleInputKeyDown()", "community": 79, "community_name": "Community 79", "source_file": "frontend/src/components/ui/TagPicker.tsx", "file_type": "code", "degree": 4}, {"id": "ui_tagpicker_handleinputchange", "label": "handleInputChange()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleInputChange()", "community": 79, "community_name": "Community 79", "source_file": "frontend/src/components/ui/TagPicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_tagpicker_filteredtags", "label": "filteredTags()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "filteredTags()", "community": 79, "community_name": "Community 79", "source_file": "frontend/src/components/ui/TagPicker.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_ui_uploadmodal_tsx", "label": "UploadModal.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UploadModal.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ui/UploadModal.tsx", "file_type": "code", "degree": 6}, {"id": "ui_uploadmodal_handledragover", "label": "handleDragOver()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDragOver()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ui/UploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_uploadmodal_handledragleave", "label": "handleDragLeave()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDragLeave()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ui/UploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_uploadmodal_handledrop", "label": "handleDrop()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDrop()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ui/UploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_uploadmodal_handlefileselect", "label": "handleFileSelect()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleFileSelect()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ui/UploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_uploadmodal_handleupload", "label": "handleUpload()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleUpload()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ui/UploadModal.tsx", "file_type": "code", "degree": 2}, {"id": "ui_uploadmodal_removefile", "label": "removeFile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "removeFile()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ui/UploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_card_tsx", "label": "Card.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Card.tsx", "community": 73, "community_name": "Community 73", "source_file": "frontend/src/components/ui/Card.tsx", "file_type": "code", "degree": 6}, {"id": "ui_card_card", "label": "Card()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Card()", "community": 73, "community_name": "Community 73", "source_file": "frontend/src/components/ui/Card.tsx", "file_type": "code", "degree": 1}, {"id": "ui_card_cardheader", "label": "CardHeader()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CardHeader()", "community": 73, "community_name": "Community 73", "source_file": "frontend/src/components/ui/Card.tsx", "file_type": "code", "degree": 1}, {"id": "ui_card_cardtitle", "label": "CardTitle()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CardTitle()", "community": 73, "community_name": "Community 73", "source_file": "frontend/src/components/ui/Card.tsx", "file_type": "code", "degree": 1}, {"id": "ui_card_carddescription", "label": "CardDescription()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CardDescription()", "community": 73, "community_name": "Community 73", "source_file": "frontend/src/components/ui/Card.tsx", "file_type": "code", "degree": 1}, {"id": "ui_card_cardcontent", "label": "CardContent()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CardContent()", "community": 73, "community_name": "Community 73", "source_file": "frontend/src/components/ui/Card.tsx", "file_type": "code", "degree": 1}, {"id": "ui_card_cardfooter", "label": "CardFooter()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CardFooter()", "community": 73, "community_name": "Community 73", "source_file": "frontend/src/components/ui/Card.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_updatechecker_tsx", "label": "UpdateChecker.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateChecker.tsx", "community": 91, "community_name": "Community 91", "source_file": "frontend/src/components/ui/UpdateChecker.tsx", "file_type": "code", "degree": 4}, {"id": "ui_updatechecker_installupdate", "label": "installUpdate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "installUpdate()", "community": 91, "community_name": "Community 91", "source_file": "frontend/src/components/ui/UpdateChecker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_updatechecker_cancelupdate", "label": "cancelUpdate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cancelUpdate()", "community": 91, "community_name": "Community 91", "source_file": "frontend/src/components/ui/UpdateChecker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_updatechecker_getstatusicon", "label": "getStatusIcon()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getStatusIcon()", "community": 91, "community_name": "Community 91", "source_file": "frontend/src/components/ui/UpdateChecker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_updatechecker_getstatustext", "label": "getStatusText()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getStatusText()", "community": 91, "community_name": "Community 91", "source_file": "frontend/src/components/ui/UpdateChecker.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_viewnotemodal_tsx", "label": "ViewNoteModal.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ViewNoteModal.tsx", "community": 116, "community_name": "Community 116", "source_file": "frontend/src/components/ui/ViewNoteModal.tsx", "file_type": "code", "degree": 2}, {"id": "ui_viewnotemodal_getnotekind", "label": "getNoteKind()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getNoteKind()", "community": 116, "community_name": "Community 116", "source_file": "frontend/src/components/ui/ViewNoteModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_viewnotemodal_updatenotecheckbox", "label": "updateNoteCheckbox()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "updateNoteCheckbox()", "community": 116, "community_name": "Community 116", "source_file": "frontend/src/components/ui/ViewNoteModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_errorboundary_tsx", "label": "ErrorBoundary.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorBoundary.tsx", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/ui/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "ui_errorboundary_reset", "label": "reset()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "reset()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/ui/ErrorBoundary.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_ui_loadingspinner_tsx", "label": "LoadingSpinner.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingSpinner.tsx", "community": 214, "community_name": "Community 214", "source_file": "frontend/src/components/ui/LoadingSpinner.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_ui_learningpathpreviewmodal_tsx", "label": "LearningPathPreviewModal.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LearningPathPreviewModal.tsx", "community": 92, "community_name": "Community 92", "source_file": "frontend/src/components/ui/LearningPathPreviewModal.tsx", "file_type": "code", "degree": 4}, {"id": "ui_learningpathpreviewmodal_handleenroll", "label": "handleEnroll()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleEnroll()", "community": 92, "community_name": "Community 92", "source_file": "frontend/src/components/ui/LearningPathPreviewModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_learningpathpreviewmodal_getresourceicon", "label": "getResourceIcon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getResourceIcon()", "community": 92, "community_name": "Community 92", "source_file": "frontend/src/components/ui/LearningPathPreviewModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_learningpathpreviewmodal_getdifficultycolor", "label": "getDifficultyColor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getDifficultyColor()", "community": 92, "community_name": "Community 92", "source_file": "frontend/src/components/ui/LearningPathPreviewModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_learningpathpreviewmodal_isenrolling", "label": "isEnrolling()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isEnrolling()", "community": 92, "community_name": "Community 92", "source_file": "frontend/src/components/ui/LearningPathPreviewModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_switch_tsx", "label": "Switch.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Switch.tsx", "community": 157, "community_name": "Community 157", "source_file": "frontend/src/components/ui/Switch.tsx", "file_type": "code", "degree": 1}, {"id": "ui_switch_switch", "label": "Switch()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Switch()", "community": 157, "community_name": "Community 157", "source_file": "frontend/src/components/ui/Switch.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_colorpicker_tsx", "label": "ColorPicker.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ColorPicker.tsx", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 12}, {"id": "ui_colorpicker_hextohsl", "label": "hexToHSL()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hexToHSL()", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 4}, {"id": "ui_colorpicker_hsltohex", "label": "hslToHex()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hslToHex()", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 2}, {"id": "ui_colorpicker_updatecolorfromhue", "label": "updateColorFromHue()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "updateColorFromHue()", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 4}, {"id": "ui_colorpicker_handlehexchange", "label": "handleHexChange()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleHexChange()", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 2}, {"id": "ui_colorpicker_handlealphachange", "label": "handleAlphaChange()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleAlphaChange()", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_colorpicker_handleslidermousedown", "label": "handleSliderMouseDown()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSliderMouseDown()", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 2}, {"id": "ui_colorpicker_updatehuefromposition", "label": "updateHueFromPosition()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "updateHueFromPosition()", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 4}, {"id": "ui_colorpicker_handlemousemove", "label": "handleMouseMove()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleMouseMove()", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 2}, {"id": "ui_colorpicker_handlemouseup", "label": "handleMouseUp()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleMouseUp()", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_colorpicker_handlesavedcolorclick", "label": "handleSavedColorClick()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSavedColorClick()", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 2}, {"id": "ui_colorpicker_handledeletecolor", "label": "handleDeleteColor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDeleteColor()", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_colorpicker_handleaddnewcolor", "label": "handleAddNewColor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleAddNewColor()", "community": 49, "community_name": "Community 49", "source_file": "frontend/src/components/ui/ColorPicker.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_videopreviewmodal_tsx", "label": "VideoPreviewModal.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoPreviewModal.tsx", "community": 158, "community_name": "Community 158", "source_file": "frontend/src/components/ui/VideoPreviewModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_videopreviewmodal_getembedurl", "label": "getEmbedUrl()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getEmbedUrl()", "community": 158, "community_name": "Community 158", "source_file": "frontend/src/components/ui/VideoPreviewModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_fileupload_tsx", "label": "FileUpload.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "FileUpload.tsx", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 13}, {"id": "ui_fileupload_generateid", "label": "generateId()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateId()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 2}, {"id": "ui_fileupload_formatfilesize", "label": "formatFileSize()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatFileSize()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileupload_getfileextension", "label": "getFileExtension()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getFileExtension()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 2}, {"id": "ui_fileupload_getfiletypecolor", "label": "getFileTypeColor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getFileTypeColor()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileupload_validatefile", "label": "validateFile()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "validateFile()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileupload_handlefileselect", "label": "handleFileSelect()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleFileSelect()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 2}, {"id": "ui_fileupload_simulateupload", "label": "simulateUpload()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "simulateUpload()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 2}, {"id": "ui_fileupload_handledragover", "label": "handleDragOver()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDragOver()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileupload_handledragleave", "label": "handleDragLeave()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDragLeave()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileupload_handledrop", "label": "handleDrop()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDrop()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 2}, {"id": "ui_fileupload_handleurlimport", "label": "handleUrlImport()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleUrlImport()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 4}, {"id": "ui_fileupload_removefile", "label": "removeFile()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "removeFile()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 1}, {"id": "ui_fileupload_handleclose", "label": "handleClose()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleClose()", "community": 46, "community_name": "Community 46", "source_file": "frontend/src/components/ui/FileUpload.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_toast_tsx", "label": "Toast.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Toast.tsx", "community": 93, "community_name": "Community 93", "source_file": "frontend/src/components/ui/Toast.tsx", "file_type": "code", "degree": 4}, {"id": "ui_toast_handleclose", "label": "handleClose()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleClose()", "community": 93, "community_name": "Community 93", "source_file": "frontend/src/components/ui/Toast.tsx", "file_type": "code", "degree": 1}, {"id": "ui_toast_geticon", "label": "getIcon()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getIcon()", "community": 93, "community_name": "Community 93", "source_file": "frontend/src/components/ui/Toast.tsx", "file_type": "code", "degree": 1}, {"id": "ui_toast_gettoneclasses", "label": "getToneClasses()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getToneClasses()", "community": 93, "community_name": "Community 93", "source_file": "frontend/src/components/ui/Toast.tsx", "file_type": "code", "degree": 1}, {"id": "ui_toast_geticonsurface", "label": "getIconSurface()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getIconSurface()", "community": 93, "community_name": "Community 93", "source_file": "frontend/src/components/ui/Toast.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_editbookmarkmodal_tsx", "label": "EditBookmarkModal.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "EditBookmarkModal.tsx", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/components/ui/EditBookmarkModal.tsx", "file_type": "code", "degree": 3}, {"id": "ui_editbookmarkmodal_availabletags", "label": "availableTags()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "availableTags()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/components/ui/EditBookmarkModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_editbookmarkmodal_updateform", "label": "updateForm()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "updateForm()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/components/ui/EditBookmarkModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_editbookmarkmodal_handlesubmit", "label": "handleSubmit()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSubmit()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/components/ui/EditBookmarkModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_ui_bookmarkmodal_tsx", "label": "BookmarkModal.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BookmarkModal.tsx", "community": 117, "community_name": "Community 117", "source_file": "frontend/src/components/ui/BookmarkModal.tsx", "file_type": "code", "degree": 2}, {"id": "ui_bookmarkmodal_availabletags", "label": "availableTags()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "availableTags()", "community": 117, "community_name": "Community 117", "source_file": "frontend/src/components/ui/BookmarkModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_bookmarkmodal_handlesubmit", "label": "handleSubmit()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSubmit()", "community": 117, "community_name": "Community 117", "source_file": "frontend/src/components/ui/BookmarkModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_filepreviewmodal_tsx", "label": "FilePreviewModal.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FilePreviewModal.tsx", "community": 159, "community_name": "Community 159", "source_file": "frontend/src/components/ui/FilePreviewModal.tsx", "file_type": "code", "degree": 1}, {"id": "ui_filepreviewmodal_getfileicon", "label": "getFileIcon()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getFileIcon()", "community": 159, "community_name": "Community 159", "source_file": "frontend/src/components/ui/FilePreviewModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_label_tsx", "label": "label.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "label.tsx", "community": 160, "community_name": "Community 160", "source_file": "frontend/src/components/ui/label.tsx", "file_type": "code", "degree": 1}, {"id": "ui_label_label", "label": "Label()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Label()", "community": 160, "community_name": "Community 160", "source_file": "frontend/src/components/ui/label.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_virtuallist_tsx", "label": "VirtualList.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "VirtualList.tsx", "community": 118, "community_name": "Community 118", "source_file": "frontend/src/components/ui/VirtualList.tsx", "file_type": "code", "degree": 2}, {"id": "ui_virtuallist_virtuallist", "label": "VirtualList()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VirtualList()", "community": 118, "community_name": "Community 118", "source_file": "frontend/src/components/ui/VirtualList.tsx", "file_type": "code", "degree": 1}, {"id": "ui_virtuallist_handlescroll", "label": "handleScroll()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleScroll()", "community": 118, "community_name": "Community 118", "source_file": "frontend/src/components/ui/VirtualList.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_daterangepicker_tsx", "label": "DateRangePicker.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "DateRangePicker.tsx", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 15}, {"id": "ui_daterangepicker_getdaysinmonth", "label": "getDaysInMonth()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getDaysInMonth()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 2}, {"id": "ui_daterangepicker_getfirstdayofmonth", "label": "getFirstDayOfMonth()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getFirstDayOfMonth()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 2}, {"id": "ui_daterangepicker_generatecalendardays", "label": "generateCalendarDays()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateCalendarDays()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 3}, {"id": "ui_daterangepicker_isdateinrange", "label": "isDateInRange()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "isDateInRange()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 3}, {"id": "ui_daterangepicker_isdatestart", "label": "isDateStart()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "isDateStart()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 3}, {"id": "ui_daterangepicker_isdateend", "label": "isDateEnd()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "isDateEnd()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 3}, {"id": "ui_daterangepicker_getdateclass", "label": "getDateClass()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getDateClass()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 4}, {"id": "ui_daterangepicker_getcellclass", "label": "getCellClass()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getCellClass()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 4}, {"id": "ui_daterangepicker_handledateclick", "label": "handleDateClick()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDateClick()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_daterangepicker_handledatehover", "label": "handleDateHover()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDateHover()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_daterangepicker_handlepresetclick", "label": "handlePresetClick()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handlePresetClick()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_daterangepicker_handleprevmonth", "label": "handlePrevMonth()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handlePrevMonth()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_daterangepicker_handlenextmonth", "label": "handleNextMonth()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleNextMonth()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_daterangepicker_handletogglemodal", "label": "handleToggleModal()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleToggleModal()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 1}, {"id": "ui_daterangepicker_formatdate", "label": "formatDate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDate()", "community": 41, "community_name": "Community 41", "source_file": "frontend/src/components/ui/DateRangePicker.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_userprofiledropdown_tsx", "label": "UserProfileDropdown.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UserProfileDropdown.tsx", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/components/ui/UserProfileDropdown.tsx", "file_type": "code", "degree": 6}, {"id": "ui_userprofiledropdown_loaddashboardstats", "label": "loadDashboardStats()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadDashboardStats()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/components/ui/UserProfileDropdown.tsx", "file_type": "code", "degree": 1}, {"id": "ui_userprofiledropdown_handleprofileclick", "label": "handleProfileClick()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleProfileClick()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/components/ui/UserProfileDropdown.tsx", "file_type": "code", "degree": 1}, {"id": "ui_userprofiledropdown_handlesettingsclick", "label": "handleSettingsClick()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSettingsClick()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/components/ui/UserProfileDropdown.tsx", "file_type": "code", "degree": 1}, {"id": "ui_userprofiledropdown_handlestatsclick", "label": "handleStatsClick()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleStatsClick()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/components/ui/UserProfileDropdown.tsx", "file_type": "code", "degree": 1}, {"id": "ui_userprofiledropdown_handlelogout", "label": "handleLogout()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleLogout()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/components/ui/UserProfileDropdown.tsx", "file_type": "code", "degree": 2}, {"id": "ui_userprofiledropdown_getinitials", "label": "getInitials()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getInitials()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/components/ui/UserProfileDropdown.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_select_simple_tsx", "label": "select-simple.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "select-simple.tsx", "community": 80, "community_name": "Community 80", "source_file": "frontend/src/components/ui/select-simple.tsx", "file_type": "code", "degree": 5}, {"id": "ui_select_simple_select", "label": "Select()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Select()", "community": 80, "community_name": "Community 80", "source_file": "frontend/src/components/ui/select-simple.tsx", "file_type": "code", "degree": 1}, {"id": "ui_select_simple_selecttrigger", "label": "SelectTrigger()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectTrigger()", "community": 80, "community_name": "Community 80", "source_file": "frontend/src/components/ui/select-simple.tsx", "file_type": "code", "degree": 1}, {"id": "ui_select_simple_selectvalue", "label": "SelectValue()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectValue()", "community": 80, "community_name": "Community 80", "source_file": "frontend/src/components/ui/select-simple.tsx", "file_type": "code", "degree": 1}, {"id": "ui_select_simple_selectcontent", "label": "SelectContent()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectContent()", "community": 80, "community_name": "Community 80", "source_file": "frontend/src/components/ui/select-simple.tsx", "file_type": "code", "degree": 1}, {"id": "ui_select_simple_selectitem", "label": "SelectItem()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectItem()", "community": 80, "community_name": "Community 80", "source_file": "frontend/src/components/ui/select-simple.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_ui_activityfeed_tsx", "label": "ActivityFeed.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ActivityFeed.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ui/ActivityFeed.tsx", "file_type": "code", "degree": 4}, {"id": "ui_activityfeed_normalizeactivitytype", "label": "normalizeActivityType()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeActivityType()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ui/ActivityFeed.tsx", "file_type": "code", "degree": 1}, {"id": "ui_activityfeed_formattimestamp", "label": "formatTimestamp()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatTimestamp()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ui/ActivityFeed.tsx", "file_type": "code", "degree": 1}, {"id": "ui_activityfeed_getactivityicon", "label": "getActivityIcon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getActivityIcon()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ui/ActivityFeed.tsx", "file_type": "code", "degree": 1}, {"id": "ui_activityfeed_fetchactivities", "label": "fetchActivities()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchActivities()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/ui/ActivityFeed.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_src_components_ui_modalportal_tsx", "label": "ModalPortal.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalPortal.tsx", "community": 215, "community_name": "Community 215", "source_file": "frontend/src/components/ui/ModalPortal.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_ui_exportimport_tsx", "label": "ExportImport.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ExportImport.tsx", "community": 74, "community_name": "Community 74", "source_file": "frontend/src/components/ui/ExportImport.tsx", "file_type": "code", "degree": 1}, {"id": "ui_exportimport_exportimport", "label": "ExportImport()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ExportImport()", "community": 74, "community_name": "Community 74", "source_file": "frontend/src/components/ui/ExportImport.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_search_savedsearches_tsx", "label": "SavedSearches.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SavedSearches.tsx", "community": 216, "community_name": "Community 216", "source_file": "frontend/src/components/search/SavedSearches.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_search_enhancedsearch_tsx", "label": "EnhancedSearch.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "EnhancedSearch.tsx", "community": 217, "community_name": "Community 217", "source_file": "frontend/src/components/search/EnhancedSearch.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_search_browsersearch_tsx", "label": "BrowserSearch.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrowserSearch.tsx", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/search/BrowserSearch.tsx", "file_type": "code", "degree": 6}, {"id": "search_browsersearch_isdemo", "label": "isDemo()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isDemo()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/search/BrowserSearch.tsx", "file_type": "code", "degree": 4}, {"id": "search_browsersearch_handlesearch", "label": "handleSearch()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSearch()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/search/BrowserSearch.tsx", "file_type": "code", "degree": 5}, {"id": "search_browsersearch_handlekeydown", "label": "handleKeyDown()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleKeyDown()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/search/BrowserSearch.tsx", "file_type": "code", "degree": 2}, {"id": "search_browsersearch_handleinput", "label": "handleInput()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleInput()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/search/BrowserSearch.tsx", "file_type": "code", "degree": 1}, {"id": "search_browsersearch_openresult", "label": "openResult()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openResult()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/search/BrowserSearch.tsx", "file_type": "code", "degree": 1}, {"id": "search_browsersearch_bookmarkresult", "label": "bookmarkResult()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "bookmarkResult()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/components/search/BrowserSearch.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_src_components_search_quicksearch_tsx", "label": "QuickSearch.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "QuickSearch.tsx", "community": 161, "community_name": "Community 161", "source_file": "frontend/src/components/search/QuickSearch.tsx", "file_type": "code", "degree": 1}, {"id": "search_quicksearch_quicksearch", "label": "QuickSearch()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "QuickSearch()", "community": 161, "community_name": "Community 161", "source_file": "frontend/src/components/search/QuickSearch.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_layout_floatingai_tsx", "label": "FloatingAI.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FloatingAI.tsx", "community": 119, "community_name": "Community 119", "source_file": "frontend/src/components/layout/FloatingAI.tsx", "file_type": "code", "degree": 2}, {"id": "layout_floatingai_handlesendmessage", "label": "handleSendMessage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSendMessage()", "community": 119, "community_name": "Community 119", "source_file": "frontend/src/components/layout/FloatingAI.tsx", "file_type": "code", "degree": 2}, {"id": "layout_floatingai_handlekeypress", "label": "handleKeyPress()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleKeyPress()", "community": 119, "community_name": "Community 119", "source_file": "frontend/src/components/layout/FloatingAI.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_layout_sidebar_tsx", "label": "Sidebar.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Sidebar.tsx", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 15}, {"id": "layout_sidebar_getworkspaceicon", "label": "getWorkspaceIcon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getWorkspaceIcon()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 3}, {"id": "layout_sidebar_getauthtoken", "label": "getAuthToken()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getAuthToken()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 3}, {"id": "layout_sidebar_selectedworkspace", "label": "selectedWorkspace()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "selectedWorkspace()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "layout_sidebar_persistselectedworkspace", "label": "persistSelectedWorkspace()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "persistSelectedWorkspace()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 3}, {"id": "layout_sidebar_isactive", "label": "isActive()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isActive()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "layout_sidebar_handleworkspaceselect", "label": "handleWorkspaceSelect()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "handleWorkspaceSelect()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 3}, {"id": "layout_sidebar_resetcreateworkspaceform", "label": "resetCreateWorkspaceForm()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resetCreateWorkspaceForm()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 4}, {"id": "layout_sidebar_opencreateworkspacemodal", "label": "openCreateWorkspaceModal()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "openCreateWorkspaceModal()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 2}, {"id": "layout_sidebar_closecreateworkspacemodal", "label": "closeCreateWorkspaceModal()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "closeCreateWorkspaceModal()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 2}, {"id": "layout_sidebar_toggleworkspacedropdown", "label": "toggleWorkspaceDropdown()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleWorkspaceDropdown()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "layout_sidebar_normalizeworkspace", "label": "normalizeWorkspace()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeWorkspace()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 4}, {"id": "layout_sidebar_createdefaultworkspace", "label": "createDefaultWorkspace()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "createDefaultWorkspace()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 3}, {"id": "layout_sidebar_loadworkspaces", "label": "loadWorkspaces()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadWorkspaces()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 4}, {"id": "layout_sidebar_handlecreateworkspace", "label": "handleCreateWorkspace()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "handleCreateWorkspace()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 6}, {"id": "layout_sidebar_handleclickoutside", "label": "handleClickOutside()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleClickOutside()", "community": 42, "community_name": "Community 42", "source_file": "frontend/src/components/layout/Sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_layout_layout_tsx", "label": "Layout.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Layout.tsx", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/components/layout/Layout.tsx", "file_type": "code", "degree": 5}, {"id": "layout_layout_hextohsl", "label": "hexToHsl()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hexToHsl()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/components/layout/Layout.tsx", "file_type": "code", "degree": 5}, {"id": "layout_layout_togglechat", "label": "toggleChat()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleChat()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/components/layout/Layout.tsx", "file_type": "code", "degree": 2}, {"id": "layout_layout_togglesidebar", "label": "toggleSidebar()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleSidebar()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/components/layout/Layout.tsx", "file_type": "code", "degree": 1}, {"id": "layout_layout_closesidebar", "label": "closeSidebar()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "closeSidebar()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/components/layout/Layout.tsx", "file_type": "code", "degree": 1}, {"id": "layout_layout_ischatopen", "label": "isChatOpen()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isChatOpen()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/components/layout/Layout.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_layout_aichatpanel_tsx", "label": "AIChatPanel.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AIChatPanel.tsx", "community": 120, "community_name": "Community 120", "source_file": "frontend/src/components/layout/AIChatPanel.tsx", "file_type": "code", "degree": 2}, {"id": "layout_aichatpanel_handlesendmessage", "label": "handleSendMessage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSendMessage()", "community": 120, "community_name": "Community 120", "source_file": "frontend/src/components/layout/AIChatPanel.tsx", "file_type": "code", "degree": 2}, {"id": "layout_aichatpanel_handlekeypress", "label": "handleKeyPress()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleKeyPress()", "community": 120, "community_name": "Community 120", "source_file": "frontend/src/components/layout/AIChatPanel.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_layout_header_tsx", "label": "Header.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Header.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/layout/Header.tsx", "file_type": "code", "degree": 1}, {"id": "layout_header_header", "label": "Header()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Header()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/layout/Header.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_notes_notecontentrenderer_tsx", "label": "NoteContentRenderer.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NoteContentRenderer.tsx", "community": 81, "community_name": "Community 81", "source_file": "frontend/src/components/notes/NoteContentRenderer.tsx", "file_type": "code", "degree": 5}, {"id": "notes_notecontentrenderer_escapehtml", "label": "escapeHtml()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "escapeHtml()", "community": 81, "community_name": "Community 81", "source_file": "frontend/src/components/notes/NoteContentRenderer.tsx", "file_type": "code", "degree": 1}, {"id": "notes_notecontentrenderer_normalizecodelanguage", "label": "normalizeCodeLanguage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeCodeLanguage()", "community": 81, "community_name": "Community 81", "source_file": "frontend/src/components/notes/NoteContentRenderer.tsx", "file_type": "code", "degree": 3}, {"id": "notes_notecontentrenderer_infercodelanguage", "label": "inferCodeLanguage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "inferCodeLanguage()", "community": 81, "community_name": "Community 81", "source_file": "frontend/src/components/notes/NoteContentRenderer.tsx", "file_type": "code", "degree": 2}, {"id": "notes_notecontentrenderer_parsetextblocks", "label": "parseTextBlocks()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "parseTextBlocks()", "community": 81, "community_name": "Community 81", "source_file": "frontend/src/components/notes/NoteContentRenderer.tsx", "file_type": "code", "degree": 1}, {"id": "notes_notecontentrenderer_codeblock", "label": "CodeBlock()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CodeBlock()", "community": 81, "community_name": "Community 81", "source_file": "frontend/src/components/notes/NoteContentRenderer.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_hooks_uselocalstorage_ts", "label": "useLocalStorage.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "useLocalStorage.ts", "community": 121, "community_name": "Community 121", "source_file": "frontend/src/hooks/useLocalStorage.ts", "file_type": "code", "degree": 2}, {"id": "hooks_uselocalstorage_uselocalstorage", "label": "useLocalStorage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useLocalStorage()", "community": 121, "community_name": "Community 121", "source_file": "frontend/src/hooks/useLocalStorage.ts", "file_type": "code", "degree": 1}, {"id": "hooks_uselocalstorage_usesessionstorage", "label": "useSessionStorage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useSessionStorage()", "community": 121, "community_name": "Community 121", "source_file": "frontend/src/hooks/useLocalStorage.ts", "file_type": "code", "degree": 1}, {"id": "frontend_src_hooks_usedebounce_ts", "label": "useDebounce.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "useDebounce.ts", "community": 122, "community_name": "Community 122", "source_file": "frontend/src/hooks/useDebounce.ts", "file_type": "code", "degree": 2}, {"id": "hooks_usedebounce_usedebounce", "label": "useDebounce()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useDebounce()", "community": 122, "community_name": "Community 122", "source_file": "frontend/src/hooks/useDebounce.ts", "file_type": "code", "degree": 1}, {"id": "hooks_usedebounce_usedebouncedcallback", "label": "useDebouncedCallback()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useDebouncedCallback()", "community": 122, "community_name": "Community 122", "source_file": "frontend/src/hooks/useDebounce.ts", "file_type": "code", "degree": 1}, {"id": "frontend_src_utils_filetypes_ts", "label": "fileTypes.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fileTypes.ts", "community": 100, "community_name": "Community 100", "source_file": "frontend/src/utils/fileTypes.ts", "file_type": "code", "degree": 3}, {"id": "utils_filetypes_getfiletypeconfig", "label": "getFileTypeConfig()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getFileTypeConfig()", "community": 100, "community_name": "Community 100", "source_file": "frontend/src/utils/fileTypes.ts", "file_type": "code", "degree": 1}, {"id": "utils_filetypes_formatfilesize", "label": "formatFileSize()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatFileSize()", "community": 100, "community_name": "Community 100", "source_file": "frontend/src/utils/fileTypes.ts", "file_type": "code", "degree": 1}, {"id": "utils_filetypes_getfilecategorycolor", "label": "getFileCategoryColor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getFileCategoryColor()", "community": 100, "community_name": "Community 100", "source_file": "frontend/src/utils/fileTypes.ts", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_members_tsx", "label": "Members.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Members.tsx", "community": 58, "community_name": "Community 58", "source_file": "frontend/src/pages/Members.tsx", "file_type": "code", "degree": 9}, {"id": "pages_members_gettoken", "label": "getToken()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getToken()", "community": 58, "community_name": "Community 58", "source_file": "frontend/src/pages/Members.tsx", "file_type": "code", "degree": 5}, {"id": "pages_members_torolelabel", "label": "toRoleLabel()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toRoleLabel()", "community": 58, "community_name": "Community 58", "source_file": "frontend/src/pages/Members.tsx", "file_type": "code", "degree": 1}, {"id": "pages_members_toinitials", "label": "toInitials()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toInitials()", "community": 58, "community_name": "Community 58", "source_file": "frontend/src/pages/Members.tsx", "file_type": "code", "degree": 1}, {"id": "pages_members_resolveworkspaceid", "label": "resolveWorkspaceId()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveWorkspaceId()", "community": 58, "community_name": "Community 58", "source_file": "frontend/src/pages/Members.tsx", "file_type": "code", "degree": 3}, {"id": "pages_members_loadmembers", "label": "loadMembers()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadMembers()", "community": 58, "community_name": "Community 58", "source_file": "frontend/src/pages/Members.tsx", "file_type": "code", "degree": 4}, {"id": "pages_members_handleaddmember", "label": "handleAddMember()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleAddMember()", "community": 58, "community_name": "Community 58", "source_file": "frontend/src/pages/Members.tsx", "file_type": "code", "degree": 2}, {"id": "pages_members_opendeletemodal", "label": "openDeleteModal()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openDeleteModal()", "community": 58, "community_name": "Community 58", "source_file": "frontend/src/pages/Members.tsx", "file_type": "code", "degree": 1}, {"id": "pages_members_handledeletemember", "label": "handleDeleteMember()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDeleteMember()", "community": 58, "community_name": "Community 58", "source_file": "frontend/src/pages/Members.tsx", "file_type": "code", "degree": 2}, {"id": "pages_members_onworkspacechanged", "label": "onWorkspaceChanged()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "onWorkspaceChanged()", "community": 58, "community_name": "Community 58", "source_file": "frontend/src/pages/Members.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_pages_calendar_tsx", "label": "Calendar.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Calendar.tsx", "community": 55, "community_name": "Community 55", "source_file": "frontend/src/pages/Calendar.tsx", "file_type": "code", "degree": 9}, {"id": "pages_calendar_fetchcalendardata", "label": "fetchCalendarData()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchCalendarData()", "community": 55, "community_name": "Community 55", "source_file": "frontend/src/pages/Calendar.tsx", "file_type": "code", "degree": 4}, {"id": "pages_calendar_createevent", "label": "createEvent()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createEvent()", "community": 55, "community_name": "Community 55", "source_file": "frontend/src/pages/Calendar.tsx", "file_type": "code", "degree": 2}, {"id": "pages_calendar_toggleeventcompletion", "label": "toggleEventCompletion()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleEventCompletion()", "community": 55, "community_name": "Community 55", "source_file": "frontend/src/pages/Calendar.tsx", "file_type": "code", "degree": 2}, {"id": "pages_calendar_getprioritycolor", "label": "getPriorityColor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getPriorityColor()", "community": 55, "community_name": "Community 55", "source_file": "frontend/src/pages/Calendar.tsx", "file_type": "code", "degree": 1}, {"id": "pages_calendar_gettypecolor", "label": "getTypeColor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getTypeColor()", "community": 55, "community_name": "Community 55", "source_file": "frontend/src/pages/Calendar.tsx", "file_type": "code", "degree": 1}, {"id": "pages_calendar_formatdatetime", "label": "formatDateTime()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDateTime()", "community": 55, "community_name": "Community 55", "source_file": "frontend/src/pages/Calendar.tsx", "file_type": "code", "degree": 1}, {"id": "pages_calendar_formattime", "label": "formatTime()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatTime()", "community": 55, "community_name": "Community 55", "source_file": "frontend/src/pages/Calendar.tsx", "file_type": "code", "degree": 1}, {"id": "pages_calendar_openeventmodal", "label": "openEventModal()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openEventModal()", "community": 55, "community_name": "Community 55", "source_file": "frontend/src/pages/Calendar.tsx", "file_type": "code", "degree": 1}, {"id": "pages_calendar_navigatemonth", "label": "navigateMonth()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "navigateMonth()", "community": 55, "community_name": "Community 55", "source_file": "frontend/src/pages/Calendar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_removedstuff_tsx", "label": "RemovedStuff.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RemovedStuff.tsx", "community": 162, "community_name": "Community 162", "source_file": "frontend/src/pages/RemovedStuff.tsx", "file_type": "code", "degree": 1}, {"id": "pages_removedstuff_removedstuff", "label": "RemovedStuff()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RemovedStuff()", "community": 162, "community_name": "Community 162", "source_file": "frontend/src/pages/RemovedStuff.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_colorswitcher_tsx", "label": "ColorSwitcher.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ColorSwitcher.tsx", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/pages/ColorSwitcher.tsx", "file_type": "code", "degree": 9}, {"id": "pages_colorswitcher_getinitialcustomcolors", "label": "getInitialCustomColors()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getInitialCustomColors()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/pages/ColorSwitcher.tsx", "file_type": "code", "degree": 1}, {"id": "pages_colorswitcher_toggledarkmode", "label": "toggleDarkMode()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleDarkMode()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/pages/ColorSwitcher.tsx", "file_type": "code", "degree": 2}, {"id": "pages_colorswitcher_updateschemesfortheme", "label": "updateSchemesForTheme()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "updateSchemesForTheme()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/pages/ColorSwitcher.tsx", "file_type": "code", "degree": 2}, {"id": "pages_colorswitcher_applyscheme", "label": "applyScheme()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "applyScheme()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/pages/ColorSwitcher.tsx", "file_type": "code", "degree": 3}, {"id": "pages_colorswitcher_applycustomcolors", "label": "applyCustomColors()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "applyCustomColors()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/pages/ColorSwitcher.tsx", "file_type": "code", "degree": 2}, {"id": "pages_colorswitcher_resetcolors", "label": "resetColors()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "resetColors()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/pages/ColorSwitcher.tsx", "file_type": "code", "degree": 2}, {"id": "pages_colorswitcher_exportcolorscheme", "label": "exportColorScheme()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "exportColorScheme()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/pages/ColorSwitcher.tsx", "file_type": "code", "degree": 1}, {"id": "pages_colorswitcher_importcolorscheme", "label": "importColorScheme()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "importColorScheme()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/pages/ColorSwitcher.tsx", "file_type": "code", "degree": 1}, {"id": "pages_colorswitcher_savecustomscheme", "label": "saveCustomScheme()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "saveCustomScheme()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/pages/ColorSwitcher.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_aiassistant_tsx", "label": "AIAssistant.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AIAssistant.tsx", "community": 218, "community_name": "Community 218", "source_file": "frontend/src/pages/AIAssistant.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_pages_dashboard_tsx", "label": "Dashboard.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Dashboard.tsx", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 18}, {"id": "pages_dashboard_createemptystats", "label": "createEmptyStats()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createEmptyStats()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_dashboard_formatbytes", "label": "formatBytes()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatBytes()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_dashboard_derivefiletype", "label": "deriveFileType()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "deriveFileType()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_dashboard_stats", "label": "stats()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "stats()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 6}, {"id": "pages_dashboard_taskcompletionrate", "label": "taskCompletionRate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "taskCompletionRate()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 2}, {"id": "pages_dashboard_storagepercentage", "label": "storagePercentage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "storagePercentage()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 2}, {"id": "pages_dashboard_weeklyactivitytotal", "label": "weeklyActivityTotal()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "weeklyActivityTotal()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 2}, {"id": "pages_dashboard_handlebookmarksubmit", "label": "handleBookmarkSubmit()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleBookmarkSubmit()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_dashboard_handlevideosubmit", "label": "handleVideoSubmit()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleVideoSubmit()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_dashboard_getfileicon", "label": "getFileIcon()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getFileIcon()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_dashboard_handledownloaddocument", "label": "handleDownloadDocument()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDownloadDocument()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_dashboard_handlepreviewdocument", "label": "handlePreviewDocument()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handlePreviewDocument()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_dashboard_handleeditdocument", "label": "handleEditDocument()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleEditDocument()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_dashboard_handledeletedocument", "label": "handleDeleteDocument()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDeleteDocument()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_dashboard_paginateddocuments", "label": "paginatedDocuments()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "paginatedDocuments()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_dashboard_totalpages", "label": "totalPages()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "totalPages()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 2}, {"id": "pages_dashboard_handlepagechange", "label": "handlePageChange()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handlePageChange()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 2}, {"id": "pages_dashboard_handlerowsperpagechange", "label": "handleRowsPerPageChange()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleRowsPerPageChange()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_tasks_tsx", "label": "Tasks.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Tasks.tsx", "community": 59, "community_name": "Community 59", "source_file": "frontend/src/pages/Tasks.tsx", "file_type": "code", "degree": 9}, {"id": "pages_tasks_filteredtasks", "label": "filteredTasks()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "filteredTasks()", "community": 59, "community_name": "Community 59", "source_file": "frontend/src/pages/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_tasks_handleaddtask", "label": "handleAddTask()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleAddTask()", "community": 59, "community_name": "Community 59", "source_file": "frontend/src/pages/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_tasks_handleedittask", "label": "handleEditTask()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleEditTask()", "community": 59, "community_name": "Community 59", "source_file": "frontend/src/pages/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_tasks_toggletaskcomplete", "label": "toggleTaskComplete()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleTaskComplete()", "community": 59, "community_name": "Community 59", "source_file": "frontend/src/pages/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_tasks_deletetask", "label": "deleteTask()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteTask()", "community": 59, "community_name": "Community 59", "source_file": "frontend/src/pages/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_tasks_edittask", "label": "editTask()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "editTask()", "community": 59, "community_name": "Community 59", "source_file": "frontend/src/pages/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_tasks_getprioritycolor", "label": "getPriorityColor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getPriorityColor()", "community": 59, "community_name": "Community 59", "source_file": "frontend/src/pages/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_tasks_taskstats", "label": "taskStats()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "taskStats()", "community": 59, "community_name": "Community 59", "source_file": "frontend/src/pages/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_tasks_hassearchorpriorityfilters", "label": "hasSearchOrPriorityFilters()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hasSearchOrPriorityFilters()", "community": 59, "community_name": "Community 59", "source_file": "frontend/src/pages/Tasks.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_aichat_tsx", "label": "AIChat.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AIChat.tsx", "community": 75, "community_name": "Community 75", "source_file": "frontend/src/pages/AIChat.tsx", "file_type": "code", "degree": 6}, {"id": "pages_aichat_checkmobile", "label": "checkMobile()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "checkMobile()", "community": 75, "community_name": "Community 75", "source_file": "frontend/src/pages/AIChat.tsx", "file_type": "code", "degree": 1}, {"id": "pages_aichat_initializeaimodels", "label": "initializeAIModels()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "initializeAIModels()", "community": 75, "community_name": "Community 75", "source_file": "frontend/src/pages/AIChat.tsx", "file_type": "code", "degree": 1}, {"id": "pages_aichat_handlesendmessage", "label": "handleSendMessage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSendMessage()", "community": 75, "community_name": "Community 75", "source_file": "frontend/src/pages/AIChat.tsx", "file_type": "code", "degree": 2}, {"id": "pages_aichat_callaiapi", "label": "callAIAPI()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "callAIAPI()", "community": 75, "community_name": "Community 75", "source_file": "frontend/src/pages/AIChat.tsx", "file_type": "code", "degree": 2}, {"id": "pages_aichat_handleclickoutside", "label": "handleClickOutside()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleClickOutside()", "community": 75, "community_name": "Community 75", "source_file": "frontend/src/pages/AIChat.tsx", "file_type": "code", "degree": 1}, {"id": "pages_aichat_startnewchat", "label": "startNewChat()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "startNewChat()", "community": 75, "community_name": "Community 75", "source_file": "frontend/src/pages/AIChat.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_learningpaths_tsx", "label": "LearningPaths.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "LearningPaths.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/LearningPaths.tsx", "file_type": "code", "degree": 8}, {"id": "pages_learningpaths_fetchdata", "label": "fetchData()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchData()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/LearningPaths.tsx", "file_type": "code", "degree": 4}, {"id": "pages_learningpaths_handlesearch", "label": "handleSearch()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSearch()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/LearningPaths.tsx", "file_type": "code", "degree": 2}, {"id": "pages_learningpaths_getdifficultycolor", "label": "getDifficultyColor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getDifficultyColor()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/LearningPaths.tsx", "file_type": "code", "degree": 1}, {"id": "pages_learningpaths_getcategoryicon", "label": "getCategoryIcon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getCategoryIcon()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/LearningPaths.tsx", "file_type": "code", "degree": 1}, {"id": "pages_learningpaths_getcategorycolor", "label": "getCategoryColor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getCategoryColor()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/LearningPaths.tsx", "file_type": "code", "degree": 1}, {"id": "pages_learningpaths_handleenroll", "label": "handleEnroll()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleEnroll()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/LearningPaths.tsx", "file_type": "code", "degree": 2}, {"id": "pages_learningpaths_openpreview", "label": "openPreview()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "openPreview()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/LearningPaths.tsx", "file_type": "code", "degree": 1}, {"id": "pages_learningpaths_renderstars", "label": "renderStars()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "renderStars()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/LearningPaths.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_messages_tsx", "label": "Messages.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Messages.tsx", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/pages/Messages.tsx", "file_type": "code", "degree": 8}, {"id": "pages_messages_messages", "label": "Messages()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Messages()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/pages/Messages.tsx", "file_type": "code", "degree": 2}, {"id": "pages_messages_iscallactive", "label": "isCallActive()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isCallActive()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/pages/Messages.tsx", "file_type": "code", "degree": 1}, {"id": "pages_messages_stopvoicerecording", "label": "stopVoiceRecording()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "stopVoiceRecording()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/pages/Messages.tsx", "file_type": "code", "degree": 1}, {"id": "pages_messages_if", "label": "if()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "if()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/pages/Messages.tsx", "file_type": "code", "degree": 1}, {"id": "pages_messages_selectmentionoption", "label": "selectMentionOption()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "selectMentionOption()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/pages/Messages.tsx", "file_type": "code", "degree": 1}, {"id": "pages_messages_availableaireferencemodels", "label": "availableAiReferenceModels()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "availableAiReferenceModels()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/pages/Messages.tsx", "file_type": "code", "degree": 1}, {"id": "pages_messages_teams", "label": "teams()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "teams()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/pages/Messages.tsx", "file_type": "code", "degree": 1}, {"id": "pages_messages_members", "label": "members()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "members()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/pages/Messages.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_login_tsx", "label": "Login.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Login.tsx", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/pages/Login.tsx", "file_type": "code", "degree": 4}, {"id": "pages_login_getsafenextpath", "label": "getSafeNextPath()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getSafeNextPath()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/pages/Login.tsx", "file_type": "code", "degree": 2}, {"id": "pages_login_handlesubmit", "label": "handleSubmit()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSubmit()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/pages/Login.tsx", "file_type": "code", "degree": 5}, {"id": "pages_login_handleinputchange", "label": "handleInputChange()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleInputChange()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/pages/Login.tsx", "file_type": "code", "degree": 1}, {"id": "pages_login_togglemode", "label": "toggleMode()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleMode()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/pages/Login.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_pages_files_tsx", "label": "Files.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Files.tsx", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 21}, {"id": "pages_files_getauthtoken", "label": "getAuthToken()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getAuthToken()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 3}, {"id": "pages_files_parserepopayload", "label": "parseRepoPayload()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parseRepoPayload()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 2}, {"id": "pages_files_fetchwithauth", "label": "fetchWithAuth()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchWithAuth()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 6}, {"id": "pages_files_loadfiles", "label": "loadFiles()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadFiles()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 4}, {"id": "pages_files_loadgithubbackupworkspace", "label": "loadGitHubBackupWorkspace()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "loadGitHubBackupWorkspace()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 5}, {"id": "pages_files_handleinstallgithubapp", "label": "handleInstallGitHubApp()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleInstallGitHubApp()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 2}, {"id": "pages_files_handlebackupselectedrepos", "label": "handleBackupSelectedRepos()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "handleBackupSelectedRepos()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 3}, {"id": "pages_files_filteredfiles", "label": "filteredFiles()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "filteredFiles()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_alltags", "label": "allTags()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "allTags()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_toggletag", "label": "toggleTag()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleTag()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_handlefileupload", "label": "handleFileUpload()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleFileUpload()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_handlepreviewfile", "label": "handlePreviewFile()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handlePreviewFile()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_handlecopylink", "label": "handleCopyLink()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleCopyLink()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_handlesharefile", "label": "handleShareFile()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleShareFile()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_handledownloadfile", "label": "handleDownloadFile()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDownloadFile()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_deletefile", "label": "deleteFile()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteFile()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_isreposelected", "label": "isRepoSelected()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isRepoSelected()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_togglereposelection", "label": "toggleRepoSelection()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleRepoSelection()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_selectallrepos", "label": "selectAllRepos()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "selectAllRepos()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_clearselectedrepos", "label": "clearSelectedRepos()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clearSelectedRepos()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "pages_files_formatsourcelabel", "label": "formatSourceLabel()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatSourceLabel()", "community": 27, "community_name": "Community 27", "source_file": "frontend/src/pages/Files.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_profile_tsx", "label": "Profile.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Profile.tsx", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/pages/Profile.tsx", "file_type": "code", "degree": 1}, {"id": "pages_profile_profile", "label": "Profile()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Profile()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/pages/Profile.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_pages_youtube_tsx", "label": "Youtube.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Youtube.tsx", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 14}, {"id": "pages_youtube_videocard", "label": "VideoCard()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoCard()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 1}, {"id": "pages_youtube_filteredchannels", "label": "filteredChannels()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "filteredChannels()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 1}, {"id": "pages_youtube_extractvideoid", "label": "extractVideoId()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "extractVideoId()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 2}, {"id": "pages_youtube_getvideoinfo", "label": "getVideoInfo()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getVideoInfo()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 3}, {"id": "pages_youtube_loadpredefinedvideos", "label": "loadPredefinedVideos()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "loadPredefinedVideos()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 6}, {"id": "pages_youtube_loadsavedvideos", "label": "loadSavedVideos()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "loadSavedVideos()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 3}, {"id": "pages_youtube_handlekeydown", "label": "handleKeyDown()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleKeyDown()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 1}, {"id": "pages_youtube_handletabchange", "label": "handleTabChange()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleTabChange()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 2}, {"id": "pages_youtube_handlesearch", "label": "handleSearch()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSearch()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 6}, {"id": "pages_youtube_handlekeypress", "label": "handleKeyPress()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleKeyPress()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 2}, {"id": "pages_youtube_handleinput", "label": "handleInput()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleInput()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 1}, {"id": "pages_youtube_handlepreviewvideo", "label": "handlePreviewVideo()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handlePreviewVideo()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 1}, {"id": "pages_youtube_handlesavevideo", "label": "handleSaveVideo()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSaveVideo()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 3}, {"id": "pages_youtube_isloadingpredefined", "label": "isLoadingPredefined()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isLoadingPredefined()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/pages/Youtube.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_pages_notes_tsx", "label": "Notes.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Notes.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 18}, {"id": "pages_notes_normalizenoteid", "label": "normalizeNoteId()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeNoteId()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 2}, {"id": "pages_notes_normalizenotedate", "label": "normalizeNoteDate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeNoteDate()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 2}, {"id": "pages_notes_getnotekind", "label": "getNoteKind()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getNoteKind()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 1}, {"id": "pages_notes_formatdisplaydate", "label": "formatDisplayDate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDisplayDate()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 1}, {"id": "pages_notes_filterednotes", "label": "filteredNotes()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "filteredNotes()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 1}, {"id": "pages_notes_alltags", "label": "allTags()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "allTags()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 1}, {"id": "pages_notes_toggletag", "label": "toggleTag()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleTag()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 1}, {"id": "pages_notes_handleaddnote", "label": "handleAddNote()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleAddNote()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 5}, {"id": "pages_notes_handleeditnote", "label": "handleEditNote()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "handleEditNote()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 3}, {"id": "pages_notes_togglepin", "label": "togglePin()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "togglePin()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 3}, {"id": "pages_notes_deletenote", "label": "deleteNote()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteNote()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 3}, {"id": "pages_notes_starteditnote", "label": "startEditNote()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "startEditNote()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 1}, {"id": "pages_notes_viewnote", "label": "viewNote()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "viewNote()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 1}, {"id": "pages_notes_copynotecontent", "label": "copyNoteContent()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "copyNoteContent()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 1}, {"id": "pages_notes_togglenoteexpansion", "label": "toggleNoteExpansion()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleNoteExpansion()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 1}, {"id": "pages_notes_exportnote", "label": "exportNote()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "exportNote()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 1}, {"id": "pages_notes_updatenotecheckbox", "label": "updateNoteCheckbox()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "updateNoteCheckbox()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 1}, {"id": "pages_notes_handleupdatenotecontent", "label": "handleUpdateNoteContent()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleUpdateNoteContent()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Notes.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_sharetarget_tsx", "label": "ShareTarget.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareTarget.tsx", "community": 30, "community_name": "Community 30", "source_file": "frontend/src/pages/ShareTarget.tsx", "file_type": "code", "degree": 10}, {"id": "pages_sharetarget_extractfirsturl", "label": "extractFirstUrl()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "extractFirstUrl()", "community": 30, "community_name": "Community 30", "source_file": "frontend/src/pages/ShareTarget.tsx", "file_type": "code", "degree": 1}, {"id": "pages_sharetarget_normalizeurl", "label": "normalizeUrl()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeUrl()", "community": 30, "community_name": "Community 30", "source_file": "frontend/src/pages/ShareTarget.tsx", "file_type": "code", "degree": 1}, {"id": "pages_sharetarget_derivetitle", "label": "deriveTitle()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "deriveTitle()", "community": 30, "community_name": "Community 30", "source_file": "frontend/src/pages/ShareTarget.tsx", "file_type": "code", "degree": 1}, {"id": "pages_sharetarget_isgenerictitle", "label": "isGenericTitle()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isGenericTitle()", "community": 30, "community_name": "Community 30", "source_file": "frontend/src/pages/ShareTarget.tsx", "file_type": "code", "degree": 1}, {"id": "pages_sharetarget_derivedescription", "label": "deriveDescription()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "deriveDescription()", "community": 30, "community_name": "Community 30", "source_file": "frontend/src/pages/ShareTarget.tsx", "file_type": "code", "degree": 1}, {"id": "pages_sharetarget_lookslikeyoutube", "label": "looksLikeYouTube()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "looksLikeYouTube()", "community": 30, "community_name": "Community 30", "source_file": "frontend/src/pages/ShareTarget.tsx", "file_type": "code", "degree": 3}, {"id": "pages_sharetarget_writependingshare", "label": "writePendingShare()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "writePendingShare()", "community": 30, "community_name": "Community 30", "source_file": "frontend/src/pages/ShareTarget.tsx", "file_type": "code", "degree": 1}, {"id": "pages_sharetarget_readpendingshare", "label": "readPendingShare()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "readPendingShare()", "community": 30, "community_name": "Community 30", "source_file": "frontend/src/pages/ShareTarget.tsx", "file_type": "code", "degree": 1}, {"id": "pages_sharetarget_clearpendingshare", "label": "clearPendingShare()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clearPendingShare()", "community": 30, "community_name": "Community 30", "source_file": "frontend/src/pages/ShareTarget.tsx", "file_type": "code", "degree": 1}, {"id": "pages_sharetarget_sharetarget", "label": "ShareTarget()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareTarget()", "community": 30, "community_name": "Community 30", "source_file": "frontend/src/pages/ShareTarget.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_activity_tsx", "label": "Activity.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Activity.tsx", "community": 163, "community_name": "Community 163", "source_file": "frontend/src/pages/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "pages_activity_handlerefresh", "label": "handleRefresh()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleRefresh()", "community": 163, "community_name": "Community 163", "source_file": "frontend/src/pages/Activity.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_bookmarks_tsx", "label": "Bookmarks.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Bookmarks.tsx", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 19}, {"id": "pages_bookmarks_getbookmarkinitial", "label": "getBookmarkInitial()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getBookmarkInitial()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_adaptbookmarkfromapi", "label": "adaptBookmarkFromApi()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "adaptBookmarkFromApi()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 3}, {"id": "pages_bookmarks_getfaviconurl", "label": "getFaviconUrl()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getFaviconUrl()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_getscreenshoturl", "label": "getScreenshotUrl()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getScreenshotUrl()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_getalltags", "label": "getAllTags()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getAllTags()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_getallvideotags", "label": "getAllVideoTags()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getAllVideoTags()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_filteredbookmarks", "label": "filteredBookmarks()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "filteredBookmarks()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_filteredvideobookmarks", "label": "filteredVideoBookmarks()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "filteredVideoBookmarks()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_handleaddbookmark", "label": "handleAddBookmark()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleAddBookmark()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 2}, {"id": "pages_bookmarks_toggleimportant", "label": "toggleImportant()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleImportant()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_deletebookmark", "label": "deleteBookmark()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteBookmark()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_editbookmark", "label": "editBookmark()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "editBookmark()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 2}, {"id": "pages_bookmarks_handletagclick", "label": "handleTagClick()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleTagClick()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_handlevideotagclick", "label": "handleVideoTagClick()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleVideoTagClick()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_resetfilters", "label": "resetFilters()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resetFilters()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_resetvideofilters", "label": "resetVideoFilters()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resetVideoFilters()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_handleeditbookmark", "label": "handleEditBookmark()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleEditBookmark()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 2}, {"id": "pages_bookmarks_handlevideosubmit", "label": "handleVideoSubmit()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleVideoSubmit()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "pages_bookmarks_if", "label": "if()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "if()", "community": 24, "community_name": "Community 24", "source_file": "frontend/src/pages/Bookmarks.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_browserextensionsettings_tsx", "label": "BrowserExtensionSettings.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BrowserExtensionSettings.tsx", "community": 123, "community_name": "Community 123", "source_file": "frontend/src/pages/BrowserExtensionSettings.tsx", "file_type": "code", "degree": 2}, {"id": "pages_browserextensionsettings_if", "label": "if()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "if()", "community": 123, "community_name": "Community 123", "source_file": "frontend/src/pages/BrowserExtensionSettings.tsx", "file_type": "code", "degree": 1}, {"id": "pages_browserextensionsettings_apikeys", "label": "apiKeys()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "apiKeys()", "community": 123, "community_name": "Community 123", "source_file": "frontend/src/pages/BrowserExtensionSettings.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_search_tsx", "label": "Search.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Search.tsx", "community": 164, "community_name": "Community 164", "source_file": "frontend/src/pages/Search.tsx", "file_type": "code", "degree": 1}, {"id": "pages_search_search", "label": "Search()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Search()", "community": 164, "community_name": "Community 164", "source_file": "frontend/src/pages/Search.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_github_tsx", "label": "GitHub.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 18.8, "font": {"size": 12, "color": "#ffffff"}, "title": "GitHub.tsx", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 28}, {"id": "pages_github_weeklytotal", "label": "weeklyTotal()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "weeklyTotal()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 1}, {"id": "pages_github_selectedcount", "label": "selectedCount()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "selectedCount()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 1}, {"id": "pages_github_filteredrepos", "label": "filteredRepos()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "filteredRepos()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 1}, {"id": "pages_github_uniquelanguages", "label": "uniqueLanguages()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "uniqueLanguages()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 1}, {"id": "pages_github_getauthtoken", "label": "getAuthToken()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getAuthToken()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 8}, {"id": "pages_github_resetgithubdata", "label": "resetGitHubData()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "resetGitHubData()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 5}, {"id": "pages_github_processlanguages", "label": "processLanguages()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "processLanguages()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 2}, {"id": "pages_github_generaterecentactivity", "label": "generateRecentActivity()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateRecentActivity()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 2}, {"id": "pages_github_updatestatsfromrepos", "label": "updateStatsFromRepos()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "updateStatsFromRepos()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 4}, {"id": "pages_github_extractrepos", "label": "extractRepos()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "extractRepos()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 2}, {"id": "pages_github_fetchgithubappstatus", "label": "fetchGitHubAppStatus()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchGitHubAppStatus()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 3}, {"id": "pages_github_fetchgithubbackups", "label": "fetchGitHubBackups()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchGitHubBackups()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 4}, {"id": "pages_github_fetchrepos", "label": "fetchRepos()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchRepos()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 6}, {"id": "pages_github_fetchgithubactivity", "label": "fetchGitHubActivity()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchGitHubActivity()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 4}, {"id": "pages_github_updategithubactivitycomponent", "label": "updateGitHubActivityComponent()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "updateGitHubActivityComponent()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 2}, {"id": "pages_github_fetchgithubstats", "label": "fetchGitHubStats()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchGitHubStats()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 4}, {"id": "pages_github_fetchgithubapprepos", "label": "fetchGitHubAppRepos()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchGitHubAppRepos()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 4}, {"id": "pages_github_checkgithubconnection", "label": "checkGitHubConnection()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "checkGitHubConnection()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 8}, {"id": "pages_github_connectgithub", "label": "connectGitHub()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "connectGitHub()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 2}, {"id": "pages_github_installgithubapp", "label": "installGitHubApp()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "installGitHubApp()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 2}, {"id": "pages_github_togglereposelection", "label": "toggleRepoSelection()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleRepoSelection()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 1}, {"id": "pages_github_selectallrepos", "label": "selectAllRepos()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "selectAllRepos()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 1}, {"id": "pages_github_clearreposelection", "label": "clearRepoSelection()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clearRepoSelection()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 1}, {"id": "pages_github_backupselectedrepositories", "label": "backupSelectedRepositories()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "backupSelectedRepositories()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 3}, {"id": "pages_github_disconnectgithub", "label": "disconnectGitHub()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "disconnectGitHub()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 2}, {"id": "pages_github_formatdate", "label": "formatDate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDate()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 1}, {"id": "pages_github_getlanguagecolor", "label": "getLanguageColor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getLanguageColor()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 1}, {"id": "pages_github_getlanguageicon", "label": "getLanguageIcon()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getLanguageIcon()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/pages/GitHub.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_admindashboard_tsx", "label": "AdminDashboard.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminDashboard.tsx", "community": 82, "community_name": "Community 82", "source_file": "frontend/src/pages/AdminDashboard.tsx", "file_type": "code", "degree": 5}, {"id": "pages_admindashboard_handlebackupdatabase", "label": "handleBackupDatabase()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleBackupDatabase()", "community": 82, "community_name": "Community 82", "source_file": "frontend/src/pages/AdminDashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_admindashboard_handlemanageusers", "label": "handleManageUsers()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleManageUsers()", "community": 82, "community_name": "Community 82", "source_file": "frontend/src/pages/AdminDashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_admindashboard_handlesystemsettings", "label": "handleSystemSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSystemSettings()", "community": 82, "community_name": "Community 82", "source_file": "frontend/src/pages/AdminDashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_admindashboard_getactivityicon", "label": "getActivityIcon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getActivityIcon()", "community": 82, "community_name": "Community 82", "source_file": "frontend/src/pages/AdminDashboard.tsx", "file_type": "code", "degree": 1}, {"id": "pages_admindashboard_getgithubicon", "label": "getGitHubIcon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getGitHubIcon()", "community": 82, "community_name": "Community 82", "source_file": "frontend/src/pages/AdminDashboard.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_chat_tsx", "label": "Chat.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Chat.tsx", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 12}, {"id": "pages_chat_gettoken", "label": "getToken()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getToken()", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 4}, {"id": "pages_chat_getproviderfrommodel", "label": "getProviderFromModel()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getProviderFromModel()", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 2}, {"id": "pages_chat_loadaiproviders", "label": "loadAIProviders()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadAIProviders()", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 1}, {"id": "pages_chat_loadaisettings", "label": "loadAISettings()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadAISettings()", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 1}, {"id": "pages_chat_getaimodels", "label": "getAIModels()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getAIModels()", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 1}, {"id": "pages_chat_getproviderdisplayname", "label": "getProviderDisplayName()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getProviderDisplayName()", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 1}, {"id": "pages_chat_getproviderdescription", "label": "getProviderDescription()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getProviderDescription()", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 1}, {"id": "pages_chat_fetchsessions", "label": "fetchSessions()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchSessions()", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 2}, {"id": "pages_chat_parsechatdeeplink", "label": "parseChatDeeplink()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "parseChatDeeplink()", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 1}, {"id": "pages_chat_scrolltohighlightedmessage", "label": "scrollToHighlightedMessage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "scrollToHighlightedMessage()", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 2}, {"id": "pages_chat_loadsessionmessages", "label": "loadSessionMessages()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "loadSessionMessages()", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 3}, {"id": "pages_chat_handlesendmessage", "label": "handleSendMessage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSendMessage()", "community": 50, "community_name": "Community 50", "source_file": "frontend/src/pages/Chat.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_src_pages_analytics_tsx", "label": "Analytics.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Analytics.tsx", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/pages/Analytics.tsx", "file_type": "code", "degree": 6}, {"id": "pages_analytics_createfallbackanalyticsdata", "label": "createFallbackAnalyticsData()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "createFallbackAnalyticsData()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/pages/Analytics.tsx", "file_type": "code", "degree": 3}, {"id": "pages_analytics_normalizeanalyticsdata", "label": "normalizeAnalyticsData()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeAnalyticsData()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/pages/Analytics.tsx", "file_type": "code", "degree": 3}, {"id": "pages_analytics_fetchanalytics", "label": "fetchAnalytics()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchAnalytics()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/pages/Analytics.tsx", "file_type": "code", "degree": 4}, {"id": "pages_analytics_formathours", "label": "formatHours()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatHours()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/pages/Analytics.tsx", "file_type": "code", "degree": 1}, {"id": "pages_analytics_formatdate", "label": "formatDate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDate()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/pages/Analytics.tsx", "file_type": "code", "degree": 1}, {"id": "pages_analytics_getprioritycolor", "label": "getPriorityColor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getPriorityColor()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/pages/Analytics.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_adminsettings_tsx", "label": "AdminSettings.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminSettings.tsx", "community": 124, "community_name": "Community 124", "source_file": "frontend/src/pages/AdminSettings.tsx", "file_type": "code", "degree": 2}, {"id": "pages_adminsettings_updatesetting", "label": "updateSetting()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "updateSetting()", "community": 124, "community_name": "Community 124", "source_file": "frontend/src/pages/AdminSettings.tsx", "file_type": "code", "degree": 1}, {"id": "pages_adminsettings_savesettings", "label": "saveSettings()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "saveSettings()", "community": 124, "community_name": "Community 124", "source_file": "frontend/src/pages/AdminSettings.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_settings_tsx", "label": "Settings.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings.tsx", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/pages/Settings.tsx", "file_type": "code", "degree": 9}, {"id": "pages_settings_applycolorchange", "label": "applyColorChange()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "applyColorChange()", "community": 31, "community_name": "Community 31", "source_file": "frontend/src/pages/Settings.tsx", "file_type": "code", "degree": 2}, {"id": "pages_settings_loadaisettings", "label": "loadAISettings()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "loadAISettings()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/pages/Settings.tsx", "file_type": "code", "degree": 2}, {"id": "pages_settings_loadavailableaiproviders", "label": "loadAvailableAIProviders()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadAvailableAIProviders()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/pages/Settings.tsx", "file_type": "code", "degree": 1}, {"id": "pages_settings_loadsearchsettings", "label": "loadSearchSettings()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "loadSearchSettings()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/pages/Settings.tsx", "file_type": "code", "degree": 2}, {"id": "pages_settings_loadbrowserextensionaccess", "label": "loadBrowserExtensionAccess()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadBrowserExtensionAccess()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/pages/Settings.tsx", "file_type": "code", "degree": 1}, {"id": "pages_settings_handleupdateaisettings", "label": "handleUpdateAISettings()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "handleUpdateAISettings()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/pages/Settings.tsx", "file_type": "code", "degree": 3}, {"id": "pages_settings_handleupdateprofile", "label": "handleUpdateProfile()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleUpdateProfile()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/pages/Settings.tsx", "file_type": "code", "degree": 2}, {"id": "pages_settings_handlechangepassword", "label": "handleChangePassword()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleChangePassword()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/pages/Settings.tsx", "file_type": "code", "degree": 2}, {"id": "pages_settings_handleupdatesearchsettings", "label": "handleUpdateSearchSettings()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "handleUpdateSearchSettings()", "community": 9, "community_name": "Community 9", "source_file": "frontend/src/pages/Settings.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_src_pages_quickselection_tsx", "label": "QuickSelection.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "QuickSelection.tsx", "community": 125, "community_name": "Community 125", "source_file": "frontend/src/pages/QuickSelection.tsx", "file_type": "code", "degree": 2}, {"id": "pages_quickselection_filtereditems", "label": "filteredItems()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "filteredItems()", "community": 125, "community_name": "Community 125", "source_file": "frontend/src/pages/QuickSelection.tsx", "file_type": "code", "degree": 1}, {"id": "pages_quickselection_handleaction", "label": "handleAction()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleAction()", "community": 125, "community_name": "Community 125", "source_file": "frontend/src/pages/QuickSelection.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_timetracking_tsx", "label": "TimeTracking.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TimeTracking.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/TimeTracking.tsx", "file_type": "code", "degree": 7}, {"id": "pages_timetracking_getapi", "label": "getApi()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getApi()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/TimeTracking.tsx", "file_type": "code", "degree": 3}, {"id": "pages_timetracking_loadtimeentries", "label": "loadTimeEntries()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "loadTimeEntries()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/TimeTracking.tsx", "file_type": "code", "degree": 2}, {"id": "pages_timetracking_gettodaystats", "label": "getTodayStats()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getTodayStats()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/TimeTracking.tsx", "file_type": "code", "degree": 1}, {"id": "pages_timetracking_formattime", "label": "formatTime()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatTime()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/TimeTracking.tsx", "file_type": "code", "degree": 1}, {"id": "pages_timetracking_formatamount", "label": "formatAmount()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatAmount()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/TimeTracking.tsx", "file_type": "code", "degree": 1}, {"id": "pages_timetracking_handletimeentrycreated", "label": "handleTimeEntryCreated()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleTimeEntryCreated()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/TimeTracking.tsx", "file_type": "code", "degree": 1}, {"id": "pages_timetracking_handletimerupdate", "label": "handleTimerUpdate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleTimerUpdate()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/TimeTracking.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_stats_tsx", "label": "Stats.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Stats.tsx", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Stats.tsx", "file_type": "code", "degree": 4}, {"id": "pages_stats_handlerefresh", "label": "handleRefresh()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleRefresh()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Stats.tsx", "file_type": "code", "degree": 2}, {"id": "pages_stats_loadstats", "label": "loadStats()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "loadStats()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Stats.tsx", "file_type": "code", "degree": 2}, {"id": "pages_stats_storagepercentage", "label": "storagePercentage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "storagePercentage()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Stats.tsx", "file_type": "code", "degree": 2}, {"id": "pages_stats_taskcompletionrate", "label": "taskCompletionRate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "taskCompletionRate()", "community": 25, "community_name": "Community 25", "source_file": "frontend/src/pages/Stats.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_pages_authcallback_tsx", "label": "AuthCallback.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthCallback.tsx", "community": 219, "community_name": "Community 219", "source_file": "frontend/src/pages/AuthCallback.tsx", "file_type": "code", "degree": 0}, {"id": "frontend_src_lib_demo_mode_ts", "label": "demo-mode.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 21.1, "font": {"size": 12, "color": "#ffffff"}, "title": "demo-mode.ts", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 35}, {"id": "lib_demo_mode_isenvdemomode", "label": "isEnvDemoMode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isEnvDemoMode()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 5}, {"id": "lib_demo_mode_isdemomode", "label": "isDemoMode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isDemoMode()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 4}, {"id": "lib_demo_mode_shoulduserealapis", "label": "shouldUseRealAPIs()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "shouldUseRealAPIs()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 3}, {"id": "lib_demo_mode_shoulduserealbackend", "label": "shouldUseRealBackend()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "shouldUseRealBackend()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 6}, {"id": "lib_demo_mode_shoulduserealsearch", "label": "shouldUseRealSearch()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "shouldUseRealSearch()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 1}, {"id": "lib_demo_mode_cleardemomode", "label": "clearDemoMode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clearDemoMode()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 1}, {"id": "lib_demo_mode_setdemomode", "label": "setDemoMode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "setDemoMode()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 1}, {"id": "lib_demo_mode_generatemockstats", "label": "generateMockStats()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockStats()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockgithubrepos", "label": "generateMockGitHubRepos()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockGitHubRepos()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemocktimeentries", "label": "generateMockTimeEntries()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockTimeEntries()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockvideobookmarks", "label": "generateMockVideoBookmarks()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockVideoBookmarks()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockteams", "label": "generateMockTeams()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockTeams()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockmembers", "label": "generateMockMembers()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockMembers()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 3}, {"id": "lib_demo_mode_generatemocklearningpaths", "label": "generateMockLearningPaths()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockLearningPaths()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockchatsessions", "label": "generateMockChatSessions()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockChatSessions()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockremoveditems", "label": "generateMockRemovedItems()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockRemovedItems()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockaiproviders", "label": "generateMockAIProviders()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockAIProviders()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockfiles", "label": "generateMockFiles()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockFiles()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockaisettings", "label": "generateMockAISettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockAISettings()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemocksearchsettings", "label": "generateMockSearchSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockSearchSettings()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockemailsettings", "label": "generateMockEmailSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockEmailSettings()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockmembersdirectory", "label": "generateMockMembersDirectory()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockMembersDirectory()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 3}, {"id": "lib_demo_mode_generatemockchatsessionsextended", "label": "generateMockChatSessionsExtended()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockChatSessionsExtended()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 3}, {"id": "lib_demo_mode_generatemockchatmessages", "label": "generateMockChatMessages()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockChatMessages()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockanalyticsdashboard", "label": "generateMockAnalyticsDashboard()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockAnalyticsDashboard()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemocksavedsearches", "label": "generateMockSavedSearches()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockSavedSearches()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockmessagesconversations", "label": "generateMockMessagesConversations()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockMessagesConversations()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockmessagesforconversation", "label": "generateMockMessagesForConversation()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockMessagesForConversation()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockbrowserextensionapikeys", "label": "generateMockBrowserExtensionApiKeys()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockBrowserExtensionApiKeys()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_generatemockbrowserextensions", "label": "generateMockBrowserExtensions()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMockBrowserExtensions()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_getcachekey", "label": "getCacheKey()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getCacheKey()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_jsonresponse", "label": "jsonResponse()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "jsonResponse()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_parsebody", "label": "parseBody()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parseBody()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_mode_demofetch", "label": "demoFetch()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.1, "font": {"size": 12, "color": "#ffffff"}, "title": "demoFetch()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 32}, {"id": "lib_demo_mode_initializedemomode", "label": "initializeDemoMode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "initializeDemoMode()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-mode.ts", "file_type": "code", "degree": 2}, {"id": "frontend_src_lib_api_url_ts", "label": "api-url.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "api-url.ts", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/lib/api-url.ts", "file_type": "code", "degree": 4}, {"id": "lib_api_url_trimtrailingslash", "label": "trimTrailingSlash()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "trimTrailingSlash()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/lib/api-url.ts", "file_type": "code", "degree": 2}, {"id": "lib_api_url_trimapisuffix", "label": "trimApiSuffix()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "trimApiSuffix()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/lib/api-url.ts", "file_type": "code", "degree": 2}, {"id": "lib_api_url_getapiorigin", "label": "getApiOrigin()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getApiOrigin()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/lib/api-url.ts", "file_type": "code", "degree": 4}, {"id": "lib_api_url_getapiv1baseurl", "label": "getApiV1BaseUrl()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getApiV1BaseUrl()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/lib/api-url.ts", "file_type": "code", "degree": 3}, {"id": "frontend_src_lib_messages_ts", "label": "messages.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "messages.ts", "community": 60, "community_name": "Community 60", "source_file": "frontend/src/lib/messages.ts", "file_type": "code", "degree": 4}, {"id": "lib_messages_gettoken", "label": "getToken()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getToken()", "community": 60, "community_name": "Community 60", "source_file": "frontend/src/lib/messages.ts", "file_type": "code", "degree": 4}, {"id": "lib_messages_apirequest", "label": "apiRequest()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "apiRequest()", "community": 60, "community_name": "Community 60", "source_file": "frontend/src/lib/messages.ts", "file_type": "code", "degree": 2}, {"id": "lib_messages_uploadchatfile", "label": "uploadChatFile()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "uploadChatFile()", "community": 60, "community_name": "Community 60", "source_file": "frontend/src/lib/messages.ts", "file_type": "code", "degree": 2}, {"id": "lib_messages_messagesrealtimeclient", "label": "MessagesRealtimeClient", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MessagesRealtimeClient", "community": 60, "community_name": "Community 60", "source_file": "frontend/src/lib/messages.ts", "file_type": "code", "degree": 6}, {"id": "lib_messages_messagesrealtimeclient_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 60, "community_name": "Community 60", "source_file": "frontend/src/lib/messages.ts", "file_type": "code", "degree": 1}, {"id": "lib_messages_messagesrealtimeclient_connect", "label": ".connect()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".connect()", "community": 60, "community_name": "Community 60", "source_file": "frontend/src/lib/messages.ts", "file_type": "code", "degree": 3}, {"id": "lib_messages_messagesrealtimeclient_send", "label": ".send()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".send()", "community": 60, "community_name": "Community 60", "source_file": "frontend/src/lib/messages.ts", "file_type": "code", "degree": 1}, {"id": "lib_messages_messagesrealtimeclient_disconnect", "label": ".disconnect()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".disconnect()", "community": 60, "community_name": "Community 60", "source_file": "frontend/src/lib/messages.ts", "file_type": "code", "degree": 2}, {"id": "lib_messages_messagesrealtimeclient_cleanupreconnect", "label": ".cleanupReconnect()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".cleanupReconnect()", "community": 60, "community_name": "Community 60", "source_file": "frontend/src/lib/messages.ts", "file_type": "code", "degree": 3}, {"id": "frontend_src_lib_time_format_ts", "label": "time-format.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "time-format.ts", "community": 83, "community_name": "Community 83", "source_file": "frontend/src/lib/time-format.ts", "file_type": "code", "degree": 5}, {"id": "lib_time_format_formatduration", "label": "formatDuration()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDuration()", "community": 83, "community_name": "Community 83", "source_file": "frontend/src/lib/time-format.ts", "file_type": "code", "degree": 2}, {"id": "lib_time_format_formatdurationshort", "label": "formatDurationShort()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDurationShort()", "community": 83, "community_name": "Community 83", "source_file": "frontend/src/lib/time-format.ts", "file_type": "code", "degree": 2}, {"id": "lib_time_format_formatdurationdetailed", "label": "formatDurationDetailed()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDurationDetailed()", "community": 83, "community_name": "Community 83", "source_file": "frontend/src/lib/time-format.ts", "file_type": "code", "degree": 2}, {"id": "lib_time_format_breakdownduration", "label": "breakDownDuration()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "breakDownDuration()", "community": 83, "community_name": "Community 83", "source_file": "frontend/src/lib/time-format.ts", "file_type": "code", "degree": 5}, {"id": "lib_time_format_getlargesttimeunit", "label": "getLargestTimeUnit()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getLargestTimeUnit()", "community": 83, "community_name": "Community 83", "source_file": "frontend/src/lib/time-format.ts", "file_type": "code", "degree": 2}, {"id": "frontend_src_lib_demo_api_ts", "label": "demo-api.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "demo-api.ts", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-api.ts", "file_type": "code", "degree": 1}, {"id": "lib_demo_api_demomodeapiclient", "label": "DemoModeApiClient", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "DemoModeApiClient", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-api.ts", "file_type": "code", "degree": 9}, {"id": "lib_demo_api_demomodeapiclient_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-api.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_api_demomodeapiclient_request", "label": ".request()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".request()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-api.ts", "file_type": "code", "degree": 6}, {"id": "lib_demo_api_demomodeapiclient_getmockresponse", "label": ".getMockResponse()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getMockResponse()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-api.ts", "file_type": "code", "degree": 10}, {"id": "lib_demo_api_demomodeapiclient_get", "label": ".get()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".get()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-api.ts", "file_type": "code", "degree": 3}, {"id": "lib_demo_api_demomodeapiclient_post", "label": ".post()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".post()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-api.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_api_demomodeapiclient_put", "label": ".put()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".put()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-api.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_api_demomodeapiclient_delete", "label": ".delete()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".delete()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-api.ts", "file_type": "code", "degree": 2}, {"id": "lib_demo_api_demomodeapiclient_upload", "label": ".upload()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".upload()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/demo-api.ts", "file_type": "code", "degree": 2}, {"id": "frontend_src_lib_utils_ts", "label": "utils.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "utils.ts", "community": 76, "community_name": "Community 76", "source_file": "frontend/src/lib/utils.ts", "file_type": "code", "degree": 6}, {"id": "lib_utils_cn", "label": "cn()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cn()", "community": 76, "community_name": "Community 76", "source_file": "frontend/src/lib/utils.ts", "file_type": "code", "degree": 1}, {"id": "lib_utils_formatdate", "label": "formatDate()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDate()", "community": 76, "community_name": "Community 76", "source_file": "frontend/src/lib/utils.ts", "file_type": "code", "degree": 1}, {"id": "lib_utils_formatdatetime", "label": "formatDateTime()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDateTime()", "community": 76, "community_name": "Community 76", "source_file": "frontend/src/lib/utils.ts", "file_type": "code", "degree": 1}, {"id": "lib_utils_truncatetext", "label": "truncateText()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "truncateText()", "community": 76, "community_name": "Community 76", "source_file": "frontend/src/lib/utils.ts", "file_type": "code", "degree": 1}, {"id": "lib_utils_getinitials", "label": "getInitials()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getInitials()", "community": 76, "community_name": "Community 76", "source_file": "frontend/src/lib/utils.ts", "file_type": "code", "degree": 1}, {"id": "lib_utils_generateid", "label": "generateId()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "generateId()", "community": 76, "community_name": "Community 76", "source_file": "frontend/src/lib/utils.ts", "file_type": "code", "degree": 1}, {"id": "frontend_src_lib_api_client_ts", "label": "api-client.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "api-client.ts", "community": 220, "community_name": "Community 220", "source_file": "frontend/src/lib/api-client.ts", "file_type": "code", "degree": 0}, {"id": "frontend_src_lib_oauth_ts", "label": "oauth.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "oauth.ts", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/lib/oauth.ts", "file_type": "code", "degree": 2}, {"id": "lib_oauth_getauthcallbackurl", "label": "getAuthCallbackUrl()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getAuthCallbackUrl()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/lib/oauth.ts", "file_type": "code", "degree": 2}, {"id": "lib_oauth_startgithubsignin", "label": "startGitHubSignIn()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "startGitHubSignIn()", "community": 15, "community_name": "Community 15", "source_file": "frontend/src/lib/oauth.ts", "file_type": "code", "degree": 4}, {"id": "frontend_src_lib_api_ts", "label": "api.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "api.ts", "community": 10, "community_name": "Community 10", "source_file": "frontend/src/lib/api.ts", "file_type": "code", "degree": 3}, {"id": "lib_api_isdemomode", "label": "isDemoMode()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "isDemoMode()", "community": 10, "community_name": "Community 10", "source_file": "frontend/src/lib/api.ts", "file_type": "code", "degree": 3}, {"id": "lib_api_getauthheaders", "label": "getAuthHeaders()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getAuthHeaders()", "community": 10, "community_name": "Community 10", "source_file": "frontend/src/lib/api.ts", "file_type": "code", "degree": 3}, {"id": "lib_api_apiclient", "label": "ApiClient", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiClient", "community": 10, "community_name": "Community 10", "source_file": "frontend/src/lib/api.ts", "file_type": "code", "degree": 9}, {"id": "lib_api_apiclient_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 10, "community_name": "Community 10", "source_file": "frontend/src/lib/api.ts", "file_type": "code", "degree": 1}, {"id": "lib_api_apiclient_request", "label": ".request()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".request()", "community": 10, "community_name": "Community 10", "source_file": "frontend/src/lib/api.ts", "file_type": "code", "degree": 8}, {"id": "lib_api_apiclient_getmockresponse", "label": ".getMockResponse()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getMockResponse()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/api.ts", "file_type": "code", "degree": 10}, {"id": "lib_api_apiclient_get", "label": ".get()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".get()", "community": 10, "community_name": "Community 10", "source_file": "frontend/src/lib/api.ts", "file_type": "code", "degree": 6}, {"id": "lib_api_apiclient_post", "label": ".post()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".post()", "community": 10, "community_name": "Community 10", "source_file": "frontend/src/lib/api.ts", "file_type": "code", "degree": 2}, {"id": "lib_api_apiclient_put", "label": ".put()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".put()", "community": 10, "community_name": "Community 10", "source_file": "frontend/src/lib/api.ts", "file_type": "code", "degree": 2}, {"id": "lib_api_apiclient_delete", "label": ".delete()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".delete()", "community": 11, "community_name": "Community 11", "source_file": "frontend/src/lib/api.ts", "file_type": "code", "degree": 8}, {"id": "lib_api_apiclient_upload", "label": ".upload()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".upload()", "community": 10, "community_name": "Community 10", "source_file": "frontend/src/lib/api.ts", "file_type": "code", "degree": 2}, {"id": "frontend_src_lib_haptics_ts", "label": "haptics.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "haptics.ts", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/lib/haptics.ts", "file_type": "code", "degree": 3}, {"id": "lib_haptics_issupported", "label": "isSupported()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isSupported()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/lib/haptics.ts", "file_type": "code", "degree": 2}, {"id": "lib_haptics_usehaptics", "label": "useHaptics()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useHaptics()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/lib/haptics.ts", "file_type": "code", "degree": 4}, {"id": "lib_haptics_triggerhaptic", "label": "triggerHaptic()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "triggerHaptic()", "community": 37, "community_name": "Community 37", "source_file": "frontend/src/lib/haptics.ts", "file_type": "code", "degree": 2}, {"id": "frontend_src_lib_timeformat_ts", "label": "timeFormat.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "timeFormat.ts", "community": 126, "community_name": "Community 126", "source_file": "frontend/src/lib/timeFormat.ts", "file_type": "code", "degree": 2}, {"id": "lib_timeformat_formatduration", "label": "formatDuration()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDuration()", "community": 126, "community_name": "Community 126", "source_file": "frontend/src/lib/timeFormat.ts", "file_type": "code", "degree": 1}, {"id": "lib_timeformat_formatdurationcompact", "label": "formatDurationCompact()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDurationCompact()", "community": 126, "community_name": "Community 126", "source_file": "frontend/src/lib/timeFormat.ts", "file_type": "code", "degree": 1}, {"id": "frontend_src_lib_auth_tsx", "label": "auth.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/auth.tsx", "file_type": "code", "degree": 4}, {"id": "lib_auth_isdemomode", "label": "isDemoMode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "isDemoMode()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/auth.tsx", "file_type": "code", "degree": 19}, {"id": "lib_auth_authprovider", "label": "AuthProvider()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthProvider()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/auth.tsx", "file_type": "code", "degree": 1}, {"id": "lib_auth_useauth", "label": "useAuth()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "useAuth()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/auth.tsx", "file_type": "code", "degree": 3}, {"id": "lib_auth_getauthheaders", "label": "getAuthHeaders()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getAuthHeaders()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/auth.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_lib_weeklychart_tsx", "label": "weeklyChart.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "weeklyChart.tsx", "community": 165, "community_name": "Community 165", "source_file": "frontend/src/lib/weeklyChart.tsx", "file_type": "code", "degree": 1}, {"id": "lib_weeklychart_weeklybarchart", "label": "WeeklyBarChart()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WeeklyBarChart()", "community": 165, "community_name": "Community 165", "source_file": "frontend/src/lib/weeklyChart.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_lib_mockdata_ts", "label": "mockData.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.1, "font": {"size": 0, "color": "#ffffff"}, "title": "mockData.ts", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 13}, {"id": "lib_mockdata_createdate", "label": "createDate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createDate()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 1}, {"id": "lib_mockdata_getmockdocuments", "label": "getMockDocuments()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getMockDocuments()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 4}, {"id": "lib_mockdata_getmockbookmarks", "label": "getMockBookmarks()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getMockBookmarks()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 4}, {"id": "lib_mockdata_getmocktasks", "label": "getMockTasks()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getMockTasks()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 4}, {"id": "lib_mockdata_getmocknotes", "label": "getMockNotes()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getMockNotes()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 4}, {"id": "lib_mockdata_getmocktimeentries", "label": "getMockTimeEntries()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getMockTimeEntries()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 3}, {"id": "lib_mockdata_getmockvideos", "label": "getMockVideos()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getMockVideos()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 5}, {"id": "lib_mockdata_getmocklearningpaths", "label": "getMockLearningPaths()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getMockLearningPaths()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 4}, {"id": "lib_mockdata_getmockcalendarevents", "label": "getMockCalendarEvents()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getMockCalendarEvents()", "community": 55, "community_name": "Community 55", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 2}, {"id": "lib_mockdata_getmockfiles", "label": "getMockFiles()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getMockFiles()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 1}, {"id": "lib_mockdata_getmockactivities", "label": "getMockActivities()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getMockActivities()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 2}, {"id": "lib_mockdata_getmockstats", "label": "getMockStats()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getMockStats()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 3}, {"id": "lib_mockdata_getpopulartags", "label": "getPopularTags()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getPopularTags()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/lib/mockData.ts", "file_type": "code", "degree": 1}, {"id": "frontend_src_lib_brave_search_ts", "label": "brave-search.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "brave-search.ts", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/lib/brave-search.ts", "file_type": "code", "degree": 5}, {"id": "lib_brave_search_getauthheaders", "label": "getAuthHeaders()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getAuthHeaders()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/lib/brave-search.ts", "file_type": "code", "degree": 8}, {"id": "lib_brave_search_searchbrave", "label": "searchBrave()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "searchBrave()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/lib/brave-search.ts", "file_type": "code", "degree": 5}, {"id": "lib_brave_search_searchweb", "label": "searchWeb()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "searchWeb()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/lib/brave-search.ts", "file_type": "code", "degree": 2}, {"id": "lib_brave_search_searchnews", "label": "searchNews()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "searchNews()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/lib/brave-search.ts", "file_type": "code", "degree": 2}, {"id": "lib_brave_search_getquicksearchsuggestions", "label": "getQuickSearchSuggestions()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getQuickSearchSuggestions()", "community": 29, "community_name": "Community 29", "source_file": "frontend/src/lib/brave-search.ts", "file_type": "code", "degree": 2}, {"id": "frontend_src_lib_export_import_ts", "label": "export-import.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "export-import.ts", "community": 74, "community_name": "Community 74", "source_file": "frontend/src/lib/export-import.ts", "file_type": "code", "degree": 4}, {"id": "lib_export_import_exportdata", "label": "exportData()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "exportData()", "community": 74, "community_name": "Community 74", "source_file": "frontend/src/lib/export-import.ts", "file_type": "code", "degree": 1}, {"id": "lib_export_import_importdata", "label": "importData()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "importData()", "community": 74, "community_name": "Community 74", "source_file": "frontend/src/lib/export-import.ts", "file_type": "code", "degree": 2}, {"id": "lib_export_import_validateimportdata", "label": "validateImportData()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "validateImportData()", "community": 74, "community_name": "Community 74", "source_file": "frontend/src/lib/export-import.ts", "file_type": "code", "degree": 1}, {"id": "lib_export_import_getimportsummary", "label": "getImportSummary()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getImportSummary()", "community": 74, "community_name": "Community 74", "source_file": "frontend/src/lib/export-import.ts", "file_type": "code", "degree": 1}, {"id": "frontend_src_stores_updatestore_ts", "label": "updateStore.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "updateStore.ts", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/stores/updateStore.ts", "file_type": "code", "degree": 6}, {"id": "stores_updatestore_checkforupdates", "label": "checkForUpdates()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "checkForUpdates()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/stores/updateStore.ts", "file_type": "code", "degree": 3}, {"id": "stores_updatestore_installupdate", "label": "installUpdate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "installUpdate()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/stores/updateStore.ts", "file_type": "code", "degree": 4}, {"id": "stores_updatestore_cancelupdate", "label": "cancelUpdate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cancelUpdate()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/stores/updateStore.ts", "file_type": "code", "degree": 1}, {"id": "stores_updatestore_initializeupdatechecking", "label": "initializeUpdateChecking()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "initializeUpdateChecking()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/stores/updateStore.ts", "file_type": "code", "degree": 3}, {"id": "stores_updatestore_cleanup", "label": "cleanup()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cleanup()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/stores/updateStore.ts", "file_type": "code", "degree": 1}, {"id": "stores_updatestore_ensureinitialized", "label": "ensureInitialized()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ensureInitialized()", "community": 7, "community_name": "Community 7", "source_file": "frontend/src/stores/updateStore.ts", "file_type": "code", "degree": 2}];
|
|
const RAW_EDGES = [{"from": "browser_extension_background_js", "to": "browser_extension_background_storagesyncget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_storagelocalget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_storagelocalset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_parseresponseerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_parseyoutubevideometa", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_cleanuphistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_getyoutubehistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_updateyoutubehistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_gettrackeepconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_shouldpromptforyoutubevideo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_saveyoutubebookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_openpopupwithcontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_setcontextandopenpopup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_js", "to": "browser_extension_background_detectcontenttype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_storagesyncget", "to": "browser_extension_background_gettrackeepconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_storagelocalget", "to": "browser_extension_background_getyoutubehistory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_storagelocalset", "to": "browser_extension_background_updateyoutubehistory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_storagelocalset", "to": "browser_extension_background_openpopupwithcontext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_parseresponseerror", "to": "browser_extension_background_saveyoutubebookmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_parseyoutubevideometa", "to": "browser_extension_background_detectcontenttype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_cleanuphistory", "to": "browser_extension_background_updateyoutubehistory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_getyoutubehistory", "to": "browser_extension_background_updateyoutubehistory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_getyoutubehistory", "to": "browser_extension_background_shouldpromptforyoutubevideo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_updateyoutubehistory", "to": "browser_extension_background_shouldpromptforyoutubevideo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_updateyoutubehistory", "to": "browser_extension_background_saveyoutubebookmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_gettrackeepconfig", "to": "browser_extension_background_shouldpromptforyoutubevideo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_gettrackeepconfig", "to": "browser_extension_background_saveyoutubebookmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_background_openpopupwithcontext", "to": "browser_extension_background_setcontextandopenpopup", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_inittabs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_updatestatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_showmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_hidemessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_setbuttonloading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_disableforms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_loadconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_detecttrackeepdomain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_initactivetab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_detectandapplysmartdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_applysmartsuggestions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_addsuggestedtag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_handlequicksave", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_savebookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_uploadfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_js", "to": "browser_extension_popup_openoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_showmessage", "to": "browser_extension_popup_handlequicksave", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_showmessage", "to": "browser_extension_popup_savebookmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_showmessage", "to": "browser_extension_popup_uploadfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_hidemessage", "to": "browser_extension_popup_savebookmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_hidemessage", "to": "browser_extension_popup_uploadfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_setbuttonloading", "to": "browser_extension_popup_savebookmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_setbuttonloading", "to": "browser_extension_popup_uploadfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_detectandapplysmartdata", "to": "browser_extension_popup_applysmartsuggestions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_popup_detectandapplysmartdata", "to": "handlers_webscrapinghandler_detectcontenttype", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "browser_extension_popup_handlequicksave", "to": "browser_extension_popup_savebookmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_showmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_hidemessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_showconnectionstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_hideconnectionstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_setbuttonloading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_detectandprefillapibaseurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_loadsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_savesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_validateconnectiontoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_testconnection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_generateapikey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_testsetupconnection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_completesetup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_showsetupconnectionstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_js", "to": "browser_extension_options_hidesetupconnectionstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_showmessage", "to": "browser_extension_options_savesettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_showmessage", "to": "browser_extension_options_generateapikey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_showmessage", "to": "browser_extension_options_completesetup", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_showconnectionstatus", "to": "browser_extension_options_testconnection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_showconnectionstatus", "to": "browser_extension_options_generateapikey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_setbuttonloading", "to": "browser_extension_options_savesettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_validateconnectiontoken", "to": "browser_extension_options_testconnection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_validateconnectiontoken", "to": "browser_extension_options_testsetupconnection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_options_testsetupconnection", "to": "browser_extension_options_showsetupconnectionstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_js", "to": "browser_extension_youtube_content_parseyoutubevideo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_js", "to": "browser_extension_youtube_content_sendmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_js", "to": "browser_extension_youtube_content_closeprompt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_js", "to": "browser_extension_youtube_content_renderprompt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_js", "to": "browser_extension_youtube_content_escapehtml", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_js", "to": "browser_extension_youtube_content_detectandnotify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_js", "to": "browser_extension_youtube_content_initdetection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_parseyoutubevideo", "to": "browser_extension_youtube_content_detectandnotify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_sendmessage", "to": "browser_extension_youtube_content_detectandnotify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_closeprompt", "to": "browser_extension_youtube_content_renderprompt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_closeprompt", "to": "browser_extension_youtube_content_detectandnotify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_renderprompt", "to": "browser_extension_youtube_content_escapehtml", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "browser_extension_youtube_content_detectandnotify", "to": "browser_extension_youtube_content_initdetection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_tasksscreen_tsx", "to": "screens_tasksscreen_createtask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_tasksscreen_tsx", "to": "screens_tasksscreen_toggletaskstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_tasksscreen_tsx", "to": "screens_tasksscreen_deletetask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "screens_tasksscreen_createtask", "to": "src_main_seterror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "screens_tasksscreen_toggletaskstatus", "to": "src_main_seterror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "screens_tasksscreen_deletetask", "to": "src_main_seterror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mobile_src_screens_notesscreen_tsx", "to": "screens_notesscreen_resetform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_notesscreen_tsx", "to": "screens_notesscreen_savenote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_notesscreen_tsx", "to": "screens_notesscreen_beginedit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_notesscreen_tsx", "to": "screens_notesscreen_deletenote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "screens_notesscreen_resetform", "to": "screens_notesscreen_savenote", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "screens_notesscreen_resetform", "to": "screens_notesscreen_deletenote", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "screens_notesscreen_savenote", "to": "src_main_seterror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "screens_notesscreen_deletenote", "to": "src_main_seterror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mobile_src_screens_settingsscreen_tsx", "to": "screens_settingsscreen_settingsscreen", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_webappscreen_tsx", "to": "screens_webappscreen_isinternalurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_webappscreen_tsx", "to": "screens_webappscreen_pathfromurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_webappscreen_tsx", "to": "screens_webappscreen_toabsolute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_webappscreen_tsx", "to": "screens_webappscreen_isgenericsharetitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_webappscreen_tsx", "to": "screens_webappscreen_uniquefiles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_webappscreen_tsx", "to": "screens_webappscreen_savebookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_webappscreen_tsx", "to": "screens_webappscreen_uploadincomingfiles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_webappscreen_tsx", "to": "screens_webappscreen_submitmanualshare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "screens_webappscreen_savebookmark", "to": "screens_webappscreen_submitmanualshare", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "screens_webappscreen_savebookmark", "to": "pages_sharetarget_lookslikeyoutube", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "screens_webappscreen_submitmanualshare", "to": "pages_sharetarget_lookslikeyoutube", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mobile_src_screens_filesscreen_tsx", "to": "screens_filesscreen_filesscreen", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_connectionsetupscreen_tsx", "to": "screens_connectionsetupscreen_connectionsetupscreen", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "screens_connectionsetupscreen_connectionsetupscreen", "to": "assets_index_0vyyz8r_or", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mobile_src_screens_timeentriesscreen_tsx", "to": "screens_timeentriesscreen_resolvedurationseconds", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_timeentriesscreen_tsx", "to": "screens_timeentriesscreen_startentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_timeentriesscreen_tsx", "to": "screens_timeentriesscreen_stopentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_screens_timeentriesscreen_tsx", "to": "screens_timeentriesscreen_deleteentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "screens_timeentriesscreen_startentry", "to": "src_main_seterror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "screens_timeentriesscreen_stopentry", "to": "src_main_seterror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "screens_timeentriesscreen_deleteentry", "to": "src_main_seterror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mobile_src_screens_authscreen_tsx", "to": "screens_authscreen_authscreen", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_components_ui_tsx", "to": "components_ui_screenshell", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_components_ui_tsx", "to": "components_ui_sectioncard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_components_ui_tsx", "to": "components_ui_errortext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_context_appcontext_tsx", "to": "context_appcontext_savetoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_context_appcontext_tsx", "to": "context_appcontext_loadtoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_context_appcontext_tsx", "to": "context_appcontext_cleartoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_context_appcontext_tsx", "to": "context_appcontext_appprovider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_format_ts", "to": "lib_format_formatdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_format_ts", "to": "lib_format_formatduration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_format_ts", "to": "lib_format_formatfilesize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_format_ts", "to": "lib_format_tagstotext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_api_ts", "to": "lib_api_parseresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_api_ts", "to": "lib_api_parseerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_api_ts", "to": "lib_api_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_api_ts", "to": "lib_api_requestpublic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_parseresponse", "to": "lib_api_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_parseresponse", "to": "lib_api_requestpublic", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_parseerror", "to": "lib_api_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_parseerror", "to": "lib_api_requestpublic", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_request", "to": "lib_url_getapibaseurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mobile_src_lib_url_ts", "to": "lib_url_hasprotocol", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_url_ts", "to": "lib_url_normalizeinstanceurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_url_ts", "to": "lib_url_getapibaseurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_url_hasprotocol", "to": "lib_url_normalizeinstanceurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_url_normalizeinstanceurl", "to": "lib_url_getapibaseurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_url_getapibaseurl", "to": "search_browsersearch_handlesearch", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_url_getapibaseurl", "to": "search_browsersearch_bookmarkresult", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mobile_src_lib_share_ts", "to": "lib_share_firsturlfromtext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_share_ts", "to": "lib_share_firstcandidatetitlefromtext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_share_ts", "to": "lib_share_normalizeurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_share_ts", "to": "lib_share_titlefromurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_share_ts", "to": "lib_share_buildsharedraft", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mobile_src_lib_share_ts", "to": "lib_share_lookslikeyoutube", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_share_firsturlfromtext", "to": "lib_share_buildsharedraft", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_share_firstcandidatetitlefromtext", "to": "lib_share_buildsharedraft", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_share_normalizeurl", "to": "lib_share_buildsharedraft", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_share_titlefromurl", "to": "lib_share_buildsharedraft", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_main_go", "to": "backend_main_isdemomode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_main_go", "to": "backend_main_initializesecuritysecrets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_main_go", "to": "backend_main_initializedragonflydb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_main_go", "to": "backend_main_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_main_initializesecuritysecrets", "to": "backend_main_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_main_initializesecuritysecrets", "to": "utils_security_getorcreatejwtsecret", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_initializesecuritysecrets", "to": "utils_security_getorcreateencryptionkey", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_initializedragonflydb", "to": "backend_main_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_main_main", "to": "config_config_load", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "config_database_initdatabase", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "models_models_initdb", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "models_models_automigrate", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_session_initsessionstore", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_cache_defaultcacheconfig", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_logger_logger", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_cors_corsmiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_cache_cachemiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_cache_cacheinvalidationmiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_session_sessionmiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_audit_auditmiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_input_validation_inputvalidationmiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_rate_limiter_defaultratelimitconfig", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_rate_limiter_ratelimit", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_rate_limiter_generalratelimit", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_member_newmemberhandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "config_database_getdb", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_time_entry_newtimeentryhandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_calendar_newcalendarhandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_integration_newintegrationhandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_analytics_newanalyticshandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_learning_progress_newlearningprogresshandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_web_scraping_newwebscrapinghandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_knowledge_base_newknowledgebasehandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_goals_habits_newgoalshabitshandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_social_newsocialhandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_teams_newteamshandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_ai_recommendations_newairecommendationhandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_marketplace_newmarketplacehandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_community_newcommunityhandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_performance_newperformancehandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_rate_limiter_authratelimit", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_auth_authmiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_demo_demomodemiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_admin_adminmiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "handlers_video_bookmark_newvideobookmarkhandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_main_main", "to": "middleware_session_cleanupsessionsonshutdown", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_seed_go", "to": "backend_seed_seeddata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_seed_seeddata", "to": "config_database_getdb", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_examples_user_service_example_go", "to": "examples_userserviceexample", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_examples_user_service_example_go", "to": "examples_user_service_example_newuserserviceexample", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "examples_userserviceexample", "to": "examples_userserviceexample_createuserexample", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "examples_userserviceexample", "to": "examples_userserviceexample_getuserexample", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "examples_userserviceexample", "to": "examples_userserviceexample_searchusersexample", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "examples_userserviceexample", "to": "examples_userserviceexample_transactionexample", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tools_favicon_cli_go", "to": "tools_favicon_cli_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tools_favicon_cli_main", "to": "services_favicon_fetcher_newfaviconfetcher", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "tools_favicon_cli_main", "to": "services_metadata_fetchwebsitemetadata", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_services_youtube_channels_go", "to": "services_youtubechannelservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_channels_go", "to": "services_youtube_channels_newyoutubechannelservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_channels_go", "to": "services_youtube_channels_getpredefinedchannels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_channels_go", "to": "services_channel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_channels_go", "to": "services_channelinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_channels_go", "to": "services_youtube_channels_parseyoutubeduration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_channels_go", "to": "services_youtube_channels_containsignorecase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_channels_go", "to": "services_youtube_channels_containssubstringignorecase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_channels_go", "to": "services_youtube_channels_tolower", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_channels_go", "to": "services_youtube_channels_contains", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_channels_go", "to": "services_youtube_channels_isrecentvideo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubechannelservice", "to": "services_youtubechannelservice_getfireshipvideos", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubechannelservice", "to": "services_youtubechannelservice_getnetworkchuckvideos", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubechannelservice", "to": "services_youtubechannelservice_getchannelinfo", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtube_channels_newyoutubechannelservice", "to": "handlers_youtube_channels_getfireshipvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_newyoutubechannelservice", "to": "handlers_youtube_channels_getnetworkchuckvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_newyoutubechannelservice", "to": "handlers_youtube_channels_getchannelvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_getpredefinedchannels", "to": "services_youtubechannelservice_getchannelinfo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtube_channels_containsignorecase", "to": "services_youtube_channels_containssubstringignorecase", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtube_channels_containssubstringignorecase", "to": "services_youtube_channels_tolower", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtube_channels_containssubstringignorecase", "to": "services_youtube_channels_contains", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtube_channels_tolower", "to": "services_message_detector_detectmessagecontent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "services_computervisionservice_detectlanguage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "services_computervisionservice_detectdocumenttype", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "services_youtube_integrated_normalizechannelinput", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "services_youtube_integrated_parserelativetoiso", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "services_youtube_integrated_parsecounttext", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "models_knowledge_base_generateslug", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_webscrapinghandler_getimageformat", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_webscrapinghandler_getvideoplatform", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_webscrapinghandler_extractkeywordsfromcontent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_webscrapinghandler_detectcontenttype", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_semantic_search_normalizesemanticcontenttype", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_knowledge_base_generateslug", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_knowledgebasehandler_createwikiversion", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_bookmark_generateenhancedpreviewhtml", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_messages_searchmessages", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_messages_normalizeattachmentkind", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_messages_normalizereferencetype", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_search_enhanced_searchbookmarks", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_search_enhanced_searchtasks", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_search_enhanced_searchnotes", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_search_enhanced_searchfiles", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_search_enhanced_calculaterelevancescore", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_file_getfiles", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_file_determinefiletype", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_encryption_determinefiletypeforencryption", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_github_backup_backupgithubrepositories", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_github_backup_resolvegithubbackuptoken", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_github_backup_resolvecentralizedgithubbackuptoken", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "handlers_socialhandler_searchusers", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "middleware_input_validation_containsmaliciouscontent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_tolower", "to": "middleware_audit_sanitizejson", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "services_message_detector_detectmessagecontent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "services_metadata_getdefaultfavicon", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "services_favicon_fetcher_test_testextractheadsection", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "services_youtubeservice_extractchannelhandle", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "services_ai_service_parsethinkingresponse", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "services_computervisionservice_detectlanguage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "services_computervisionservice_detectdocumenttype", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "services_computervisionservice_extracttables", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "services_youtubeintegratedservice_getvideodetailsintegrated", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "services_youtube_integrated_normalizechannelinput", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "services_youtube_integrated_extractvideoid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_webscrapinghandler_scrapewebpage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_webscrapinghandler_getvideoplatform", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_webscrapinghandler_getvideoid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_webscrapinghandler_detectcontenttype", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_knowledgebasehandler_createwikiversion", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_messages_extractyoutubevideoid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_search_enhanced_calculaterelevancescore", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_file_determinefiletype", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_encryption_determinefiletypeforencryption", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_github_backup_loadgithubappprivatekey", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_updates_getcurrentversion", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_github_app_auth_test_testgetgithubreposusescontrolserviceandpersistsrefreshedtoken", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_github_app_auth_test_testgithubappinstallcallbackrejectsinaccessibleinstallationviacontrolservice", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_auth_requiredapikeypermission", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_auth_authmiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_auth_isrunningindocker", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_auth_getdockerimageversion", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "handlers_auth_getcontainerid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "middleware_demo_demomodemiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "middleware_input_validation_containsmaliciouscontent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "middleware_memorycache_deletepattern", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "middleware_audit_getactionfrommethodandpath", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "middleware_audit_getresourcefrompath", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "middleware_audit_sanitizejson", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "middleware_audit_getdevicefromuseragent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "middleware_audit_getplatformfromuseragent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "middleware_audit_getbrowserfromuseragent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "middleware_audit_assessrisk", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_channels_contains", "to": "middleware_audit_issuspiciousactivity", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_services_message_detector_go", "to": "services_detectedsuggestion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_message_detector_go", "to": "services_detectedattachment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_message_detector_go", "to": "services_message_detector_detectmessagecontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_message_detector_go", "to": "services_message_detector_buildcompacttitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_message_detector_detectmessagecontent", "to": "services_message_detector_buildcompacttitle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_message_detector_detectmessagecontent", "to": "services_message_detector_test_testdetectmessagecontent_urlsandsuggestions", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_message_detector_detectmessagecontent", "to": "services_message_detector_test_testdetectmessagecontent_taskandeventintents", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_message_detector_detectmessagecontent", "to": "services_message_detector_test_testdetectmessagecontent_passwordwarning", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_message_detector_detectmessagecontent", "to": "handlers_messages_createconversationmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_services_youtube_cache_go", "to": "services_youtubecacheservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_cache_go", "to": "services_cacheentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_cache_go", "to": "services_youtube_cache_newyoutubecacheservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubecacheservice", "to": "services_youtubecacheservice_getcachedchannelvideos", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubecacheservice", "to": "services_youtubecacheservice_getinmemorycachedvideos", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubecacheservice", "to": "services_youtubecacheservice_fetchandcachevideos", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubecacheservice", "to": "services_youtubecacheservice_clearexpiredcache", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtube_cache_newyoutubecacheservice", "to": "handlers_youtube_channels_getfireshipvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_cache_newyoutubecacheservice", "to": "handlers_youtube_channels_getnetworkchuckvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_cache_newyoutubecacheservice", "to": "handlers_youtube_channels_getchannelvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtubecacheservice_getcachedchannelvideos", "to": "services_youtubecacheservice_fetchandcachevideos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubecacheservice_getinmemorycachedvideos", "to": "services_youtubecacheservice_fetchandcachevideos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubecacheservice_fetchandcachevideos", "to": "lib_api_apiclient_get", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtubecacheservice_fetchandcachevideos", "to": "handlers_saved_search_min", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_services_favicon_fetcher_go", "to": "services_faviconfetcher", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_favicon_fetcher_go", "to": "services_favicon_fetcher_newfaviconfetcher", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_favicon_fetcher_go", "to": "services_favicon_fetcher_containsstring", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_favicon_fetcher_go", "to": "services_favicon_fetcher_getfavicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_favicon_fetcher_go", "to": "services_favicon_fetcher_getallfavicons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher", "to": "services_faviconfetcher_fetchfavicon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher", "to": "services_faviconfetcher_extractfromhtml", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher", "to": "services_faviconfetcher_extractheadsection", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher", "to": "services_faviconfetcher_findfaviconinhead", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher", "to": "services_faviconfetcher_makeabsoluteurl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher", "to": "services_faviconfetcher_trycommonlocations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher", "to": "services_faviconfetcher_verifyfaviconexists", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher", "to": "services_faviconfetcher_getgooglefavicon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher", "to": "services_faviconfetcher_fetchmultiplefavicons", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_favicon_fetcher_newfaviconfetcher", "to": "services_favicon_fetcher_test_testfaviconfetcher", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_favicon_fetcher_newfaviconfetcher", "to": "services_favicon_fetcher_test_testmultiplefavicons", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_favicon_fetcher_newfaviconfetcher", "to": "services_favicon_fetcher_test_testmakeabsoluteurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_favicon_fetcher_newfaviconfetcher", "to": "services_favicon_fetcher_test_testextractheadsection", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_favicon_fetcher_newfaviconfetcher", "to": "services_favicon_fetcher_test_benchmarkfaviconfetch", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_faviconfetcher_fetchfavicon", "to": "services_faviconfetcher_extractfromhtml", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_fetchfavicon", "to": "services_faviconfetcher_verifyfaviconexists", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_fetchfavicon", "to": "services_faviconfetcher_trycommonlocations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_fetchfavicon", "to": "services_faviconfetcher_getgooglefavicon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_fetchfavicon", "to": "services_favicon_fetcher_getfavicon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_extractfromhtml", "to": "services_faviconfetcher_extractheadsection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_extractfromhtml", "to": "services_faviconfetcher_findfaviconinhead", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_extractfromhtml", "to": "services_faviconfetcher_fetchmultiplefavicons", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_findfaviconinhead", "to": "services_faviconfetcher_makeabsoluteurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_trycommonlocations", "to": "services_faviconfetcher_verifyfaviconexists", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_verifyfaviconexists", "to": "services_faviconfetcher_fetchmultiplefavicons", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_getgooglefavicon", "to": "services_faviconfetcher_fetchmultiplefavicons", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_fetchmultiplefavicons", "to": "services_favicon_fetcher_containsstring", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_faviconfetcher_fetchmultiplefavicons", "to": "services_favicon_fetcher_getallfavicons", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_favicon_fetcher_getfavicon", "to": "services_metadata_fetchwebsitemetadata", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_services_performance_go", "to": "services_performanceservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_performance_go", "to": "services_performance_newperformanceservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_performanceservice", "to": "services_performanceservice_optimizedatabase", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_performanceservice", "to": "services_performanceservice_cleanupoldauditlogs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_performanceservice", "to": "services_performanceservice_getdatabasestats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_performanceservice", "to": "services_performanceservice_optimizequeries", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_performanceservice", "to": "services_performanceservice_monitorperformance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_performanceservice", "to": "services_performanceservice_warmupcache", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_performanceservice", "to": "services_performanceservice_clearcache", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_performanceservice", "to": "services_performanceservice_getcachestats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_performance_newperformanceservice", "to": "handlers_performance_newperformancehandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_services_ai_recommendation_service_go", "to": "services_airecommendationservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_ai_recommendation_service_go", "to": "services_ai_recommendation_service_newairecommendationservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_ai_recommendation_service_go", "to": "services_recommendationrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_ai_recommendation_service_go", "to": "services_recommendationscore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_getrecommendations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_generatecontentrecommendations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_generatetaskrecommendations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_generatelearningrecommendations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_generateconnectionrecommendations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_generatemixedrecommendations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_getuserinterests", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_getusercategories", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_calculatecontentscore", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_getpriorityfromscore", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_getskillnames", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_calculateusersimilarity", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_getsharedinterests", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice", "to": "services_airecommendationservice_recordinteraction", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_ai_recommendation_service_newairecommendationservice", "to": "handlers_ai_recommendations_newairecommendationhandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_airecommendationservice_getrecommendations", "to": "services_airecommendationservice_generatecontentrecommendations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_getrecommendations", "to": "services_airecommendationservice_generatetaskrecommendations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_getrecommendations", "to": "services_airecommendationservice_generatelearningrecommendations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_getrecommendations", "to": "services_airecommendationservice_generateconnectionrecommendations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_getrecommendations", "to": "services_airecommendationservice_generatemixedrecommendations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_generatecontentrecommendations", "to": "services_airecommendationservice_getuserinterests", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_generatecontentrecommendations", "to": "services_airecommendationservice_getusercategories", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_generatecontentrecommendations", "to": "services_airecommendationservice_calculatecontentscore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_generatecontentrecommendations", "to": "services_airecommendationservice_getpriorityfromscore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_generatecontentrecommendations", "to": "services_airecommendationservice_generatemixedrecommendations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_generatetaskrecommendations", "to": "services_airecommendationservice_generatemixedrecommendations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_generatelearningrecommendations", "to": "services_airecommendationservice_generatemixedrecommendations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_generateconnectionrecommendations", "to": "services_airecommendationservice_getskillnames", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_generateconnectionrecommendations", "to": "services_airecommendationservice_calculateusersimilarity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_generateconnectionrecommendations", "to": "services_airecommendationservice_getsharedinterests", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_airecommendationservice_generateconnectionrecommendations", "to": "services_airecommendationservice_generatemixedrecommendations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_metadata_go", "to": "services_websitemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_metadata_go", "to": "services_metadata_fetchwebsitemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_metadata_go", "to": "services_metadata_extractopengraphmetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_metadata_go", "to": "services_metadata_extracttwittermetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_metadata_go", "to": "services_metadata_extractbasichtmlmetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_metadata_go", "to": "services_metadata_extractfavicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_metadata_go", "to": "services_metadata_getdefaultfavicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_metadata_go", "to": "services_cacheservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_metadata_go", "to": "services_metadata_newcacheservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_metadata_go", "to": "services_metadata_getcachedmetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_metadata_fetchwebsitemetadata", "to": "services_cacheservice_set", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_metadata_fetchwebsitemetadata", "to": "services_metadata_extractopengraphmetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_metadata_fetchwebsitemetadata", "to": "services_metadata_extracttwittermetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_metadata_fetchwebsitemetadata", "to": "services_metadata_extractbasichtmlmetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_metadata_fetchwebsitemetadata", "to": "services_metadata_getcachedmetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_metadata_fetchwebsitemetadata", "to": "handlers_bookmark_fetchpagecontentwithscreenshot", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_metadata_getdefaultfavicon", "to": "services_cacheservice_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_cacheservice", "to": "services_cacheservice_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_cacheservice", "to": "services_cacheservice_set", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_cacheservice_get", "to": "services_metadata_getcachedmetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_cacheservice_set", "to": "services_metadata_getcachedmetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_metadata_getcachedmetadata", "to": "handlers_bookmark_createbookmark", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_metadata_getcachedmetadata", "to": "handlers_bookmark_refreshbookmarkmetadata", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_metadata_getcachedmetadata", "to": "handlers_bookmark_getbookmarkmetadata", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_services_favicon_fetcher_test_go", "to": "services_favicon_fetcher_test_testfaviconfetcher", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_favicon_fetcher_test_go", "to": "services_favicon_fetcher_test_testmultiplefavicons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_favicon_fetcher_test_go", "to": "services_favicon_fetcher_test_testmakeabsoluteurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_favicon_fetcher_test_go", "to": "services_favicon_fetcher_test_testextractheadsection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_favicon_fetcher_test_go", "to": "services_favicon_fetcher_test_benchmarkfaviconfetch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtubevideo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_videoitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtubesearchresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtubeservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtube_newyoutubeservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtube_searchyoutubevideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtubesearchvideo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtube_fetchyoutubevideosreal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtube_min", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtube_htmlunescape", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtube_searchyoutubevideosreal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtube_getyoutubevideodetails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtube_getyoutubechannelvideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtube_getyoutubechannelvideosreal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_predefinedchannel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtube_getpredefinedchannelvideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_go", "to": "services_youtube_getmockyoutubevideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeservice", "to": "services_youtubeservice_searchvideos", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeservice", "to": "services_youtubeservice_fetchyoutubevideoidandchannel", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeservice", "to": "services_youtubeservice_getchannelvideosfromurl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeservice", "to": "services_youtubeservice_extractchannelhandle", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeservice", "to": "services_youtubeservice_fetchchannelvideos", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeservice", "to": "services_youtubeservice_getvideodetails", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeservice", "to": "services_youtubeservice_getchannelvideos", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeservice", "to": "services_youtubeservice_getmockvideodetails", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtube_newyoutubeservice", "to": "handlers_youtube_channels_getfireshipvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_newyoutubeservice", "to": "handlers_youtube_channels_getnetworkchuckvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_newyoutubeservice", "to": "handlers_youtube_channels_getchannelvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_newyoutubeservice", "to": "handlers_youtube_getyoutubechannelvideosfromurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtubeservice_searchvideos", "to": "services_youtubeservice_fetchyoutubevideoidandchannel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeservice_getchannelvideosfromurl", "to": "services_youtubeservice_extractchannelhandle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeservice_getchannelvideosfromurl", "to": "services_youtubeservice_fetchchannelvideos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeservice_fetchchannelvideos", "to": "lib_api_apiclient_get", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtubeservice_getvideodetails", "to": "services_youtube_getyoutubevideodetails", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeservice_getchannelvideos", "to": "services_youtube_integrated_getyoutubechannelvideosintegrated", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_searchyoutubevideos", "to": "services_youtube_integrated_searchyoutubevideosintegrated", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_searchyoutubevideos", "to": "handlers_youtube_searchyoutube", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_searchyoutubevideos", "to": "handlers_youtube_getyoutubetrending", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_searchyoutubevideos", "to": "handlers_youtube_youtubesearchtest", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_fetchyoutubevideosreal", "to": "services_youtube_searchyoutubevideosreal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtube_fetchyoutubevideosreal", "to": "lib_api_apiclient_get", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_getyoutubechannelvideos", "to": "services_youtube_getpredefinedchannelvideos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtube_getyoutubechannelvideos", "to": "services_youtube_integrated_getyoutubechannelvideosintegrated", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_youtube_getyoutubechannelvideosreal", "to": "lib_api_apiclient_get", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_services_ai_service_go", "to": "services_aiprovider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_ai_service_go", "to": "services_airequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_ai_service_go", "to": "services_message", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_ai_service_go", "to": "services_airesponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_ai_service_go", "to": "services_choice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_ai_service_go", "to": "services_usage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_ai_service_go", "to": "services_aiservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_ai_service_go", "to": "services_ai_service_newaiservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_ai_service_go", "to": "services_ai_service_getavailableproviders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_ai_service_go", "to": "services_ai_service_parsethinkingresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice", "to": "services_aiservice_chatcompletion", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice", "to": "services_aiservice_chatcompletionwiththinking", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice", "to": "services_aiservice_chatcompletionwithupgradedthinking", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice", "to": "services_aiservice_getthinkingmodel", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice", "to": "services_aiservice_callopenrouter", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice", "to": "services_aiservice_callmistral", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice", "to": "services_aiservice_calllongcat", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice", "to": "services_aiservice_callgrok", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice", "to": "services_aiservice_calldeepseek", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice", "to": "services_aiservice_callollama", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice", "to": "services_aiservice_setprovider", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice", "to": "services_aiservice_getprovider", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_ai_service_newaiservice", "to": "handlers_ai_features_generateaisummary", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_ai_service_newaiservice", "to": "handlers_ai_features_generatetasksuggestions", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_ai_service_newaiservice", "to": "handlers_ai_features_generatetagsuggestions", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_ai_service_newaiservice", "to": "handlers_ai_features_generateaicontent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_ai_service_newaiservice", "to": "handlers_chat_sendmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_ai_service_getavailableproviders", "to": "handlers_ai_features_getaiproviders", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_aiservice_chatcompletion", "to": "services_aiservice_callmistral", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice_chatcompletion", "to": "services_aiservice_calllongcat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice_chatcompletion", "to": "services_aiservice_callgrok", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice_chatcompletion", "to": "services_aiservice_calldeepseek", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice_chatcompletion", "to": "services_aiservice_callollama", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice_chatcompletion", "to": "services_aiservice_callopenrouter", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice_chatcompletion", "to": "services_aiservice_chatcompletionwiththinking", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice_chatcompletion", "to": "services_aiservice_chatcompletionwithupgradedthinking", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_aiservice_chatcompletionwiththinking", "to": "services_aiservice_getthinkingmodel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_ai_service_parsethinkingresponse", "to": "handlers_ai_features_generateaisummary", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_ai_service_parsethinkingresponse", "to": "handlers_ai_features_generatetasksuggestions", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_ai_service_parsethinkingresponse", "to": "handlers_ai_features_generatetagsuggestions", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_ai_service_parsethinkingresponse", "to": "handlers_ai_features_generateaicontent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_ai_service_parsethinkingresponse", "to": "handlers_chat_sendmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_services_computer_vision_service_go", "to": "services_computervisionservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_computer_vision_service_go", "to": "services_computer_vision_service_newcomputervisionservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_computer_vision_service_go", "to": "services_imageanalysisrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_computer_vision_service_go", "to": "services_imageanalysisresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_computer_vision_service_go", "to": "services_objectdetection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_computer_vision_service_go", "to": "services_facedetection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_computer_vision_service_go", "to": "services_boundingbox", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_computer_vision_service_go", "to": "services_imagemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_computer_vision_service_go", "to": "services_documentanalysis", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_computer_vision_service_go", "to": "services_documentsection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_computer_vision_service_go", "to": "services_documenttable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_analyzeimage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_extracttext", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_detectobjects", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_detectfaces", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_extractdominantcolors", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_saveimageanalysis", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_processdocumentimage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_detectlanguage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_detectdocumenttype", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_extractsections", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_extracttables", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_extractlinks", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_extractemails", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_extractphonenumbers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice", "to": "services_computervisionservice_createfileanalysis", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_analyzeimage", "to": "services_computervisionservice_extracttext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_analyzeimage", "to": "services_computervisionservice_detectobjects", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_analyzeimage", "to": "services_computervisionservice_detectfaces", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_analyzeimage", "to": "services_computervisionservice_extractdominantcolors", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_analyzeimage", "to": "services_computervisionservice_saveimageanalysis", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_extracttext", "to": "services_computervisionservice_processdocumentimage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_processdocumentimage", "to": "services_computervisionservice_detectlanguage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_processdocumentimage", "to": "services_computervisionservice_detectdocumenttype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_processdocumentimage", "to": "services_computervisionservice_extractsections", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_processdocumentimage", "to": "services_computervisionservice_extracttables", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_processdocumentimage", "to": "services_computervisionservice_extractlinks", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_processdocumentimage", "to": "services_computervisionservice_extractemails", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_computervisionservice_processdocumentimage", "to": "services_computervisionservice_extractphonenumbers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_messages_realtime_go", "to": "services_wsevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_messages_realtime_go", "to": "services_messageswsclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_messages_realtime_go", "to": "services_messageshub", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_messages_realtime_go", "to": "services_messages_realtime_getmessageshub", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_messages_realtime_go", "to": "services_messages_realtime_newmessageshub", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_messages_realtime_go", "to": "services_messages_realtime_newwsclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_messageshub", "to": "services_messageshub_addclienttoconversation", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_messageshub", "to": "services_messageshub_removeclientfromconversation", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_messageshub", "to": "services_messageshub_removeclient", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_messageshub", "to": "services_messageshub_broadcast", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_messageshub", "to": "services_messageshub_sendtouser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_messages_realtime_getmessageshub", "to": "handlers_messages_createconversation", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messages_realtime_getmessageshub", "to": "handlers_messages_updateconversation", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messages_realtime_getmessageshub", "to": "handlers_messages_addconversationmember", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messages_realtime_getmessageshub", "to": "handlers_messages_removeconversationmember", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messages_realtime_getmessageshub", "to": "handlers_messages_getconversationmessages", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messages_realtime_getmessageshub", "to": "handlers_messages_createconversationmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messages_realtime_getmessageshub", "to": "handlers_messages_updatemessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messages_realtime_getmessageshub", "to": "handlers_messages_deletemessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messages_realtime_getmessageshub", "to": "handlers_messages_addmessagereaction", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messages_realtime_getmessageshub", "to": "handlers_messages_removemessagereaction", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messages_realtime_getmessageshub", "to": "handlers_messages_acceptmessagesuggestion", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messages_realtime_getmessageshub", "to": "handlers_messages_messageswebsocket", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messages_realtime_newwsclient", "to": "handlers_messages_messageswebsocket", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messageshub_removeclientfromconversation", "to": "lib_api_apiclient_delete", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messageshub_removeclient", "to": "services_messageshub_broadcast", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_messageshub_removeclient", "to": "services_messageshub_sendtouser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_messageshub_removeclient", "to": "lib_api_apiclient_delete", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_messageshub_removeclient", "to": "middleware_requestbody_close", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_services_video_bookmark_go", "to": "services_videobookmarkservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_video_bookmark_go", "to": "services_video_bookmark_newvideobookmarkservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_video_bookmark_go", "to": "services_videoinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_video_bookmark_go", "to": "services_savevideorequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice", "to": "services_videobookmarkservice_savevideobookmark", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice", "to": "services_videobookmarkservice_getuserbookmarks", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice", "to": "services_videobookmarkservice_getbookmarkbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice", "to": "services_videobookmarkservice_updatebookmark", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice", "to": "services_videobookmarkservice_deletebookmark", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice", "to": "services_videobookmarkservice_togglewatched", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice", "to": "services_videobookmarkservice_togglefavorite", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice", "to": "services_videobookmarkservice_searchbookmarks", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice", "to": "services_videobookmarkservice_getbookmarkstats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice", "to": "services_videobookmarkservice_extractvideoinfo", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_video_bookmark_newvideobookmarkservice", "to": "handlers_video_bookmark_newvideobookmarkhandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_videobookmarkservice_savevideobookmark", "to": "services_videobookmarkservice_extractvideoinfo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice_getbookmarkbyid", "to": "services_videobookmarkservice_updatebookmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice_getbookmarkbyid", "to": "services_videobookmarkservice_togglewatched", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_videobookmarkservice_getbookmarkbyid", "to": "services_videobookmarkservice_togglefavorite", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_integrated_go", "to": "services_youtubeintegratedservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_integrated_go", "to": "services_youtube_integrated_newyoutubeintegratedservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_integrated_go", "to": "services_channelvideosresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_integrated_go", "to": "services_integratedvideoinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_integrated_go", "to": "services_youtube_integrated_normalizechannelinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_integrated_go", "to": "services_youtube_integrated_unescapeyt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_integrated_go", "to": "services_youtube_integrated_parserelativetoiso", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_integrated_go", "to": "services_youtube_integrated_parsecounttext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_integrated_go", "to": "services_youtube_integrated_extractvideoid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_integrated_go", "to": "services_youtube_integrated_searchyoutubevideosintegrated", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_youtube_integrated_go", "to": "services_youtube_integrated_getyoutubechannelvideosintegrated", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeintegratedservice", "to": "services_youtubeintegratedservice_searchvideosintegrated", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeintegratedservice", "to": "services_youtubeintegratedservice_getchannelvideosintegrated", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeintegratedservice", "to": "services_youtubeintegratedservice_getvideodetailsintegrated", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeintegratedservice_searchvideosintegrated", "to": "services_youtube_integrated_unescapeyt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeintegratedservice_searchvideosintegrated", "to": "services_youtube_integrated_searchyoutubevideosintegrated", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeintegratedservice_getchannelvideosintegrated", "to": "services_youtube_integrated_normalizechannelinput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeintegratedservice_getchannelvideosintegrated", "to": "services_youtube_integrated_unescapeyt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeintegratedservice_getchannelvideosintegrated", "to": "services_youtube_integrated_parserelativetoiso", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeintegratedservice_getchannelvideosintegrated", "to": "services_youtube_integrated_parsecounttext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeintegratedservice_getchannelvideosintegrated", "to": "services_youtube_integrated_getyoutubechannelvideosintegrated", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_youtubeintegratedservice_getvideodetailsintegrated", "to": "services_youtube_integrated_extractvideoid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_message_detector_test_go", "to": "services_message_detector_test_testdetectmessagecontent_urlsandsuggestions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_message_detector_test_go", "to": "services_message_detector_test_testdetectmessagecontent_taskandeventintents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_services_message_detector_test_go", "to": "services_message_detector_test_testdetectmessagecontent_passwordwarning", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_ai_features_go", "to": "models_aisummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_ai_features_go", "to": "models_aitasksuggestion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_ai_features_go", "to": "models_aitagsuggestion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_ai_features_go", "to": "models_aicontentgeneration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_ai_features_go", "to": "models_aicodereview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_ai_features_go", "to": "models_ailearningrecommendation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_search_settings_go", "to": "models_usersearchsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_search_settings_go", "to": "models_search_settings_getusersearchsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_search_settings_go", "to": "models_search_settings_saveusersearchsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_search_settings_getusersearchsettings", "to": "handlers_search_settings_getsearchsettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "models_search_settings_getusersearchsettings", "to": "handlers_search_settings_updatesearchsettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "models_search_settings_getusersearchsettings", "to": "handlers_search_settings_getsearchsettingsforapi", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "models_search_settings_saveusersearchsettings", "to": "handlers_search_settings_updatesearchsettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_models_community_go", "to": "models_challenge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_community_go", "to": "models_challengeparticipant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_community_go", "to": "models_challengeteam", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_community_go", "to": "models_challengemilestone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_community_go", "to": "models_challengemilestonecompletion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_community_go", "to": "models_challengeresource", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_community_go", "to": "models_challengetag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_community_go", "to": "models_mentorship", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_community_go", "to": "models_mentorshipsession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_community_go", "to": "models_mentorshipreview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_community_go", "to": "models_mentorshipmilestone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_community_go", "to": "models_mentorshiprequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_challenge", "to": "models_challenge_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_challengeparticipant", "to": "models_challengeparticipant_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_challengeteam", "to": "models_challengeteam_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_mentorship", "to": "models_mentorship_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_mentorshipsession", "to": "models_mentorshipsession_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_mentorshipreview", "to": "models_mentorshipreview_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_mentorshipmilestone", "to": "models_mentorshipmilestone_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_mentorshiprequest", "to": "models_mentorshiprequest_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_audit_log_go", "to": "models_auditaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_audit_log_go", "to": "models_auditresource", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_audit_log_go", "to": "models_auditlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_auditaction", "to": "middleware_audit_logsecurityevent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "models_auditlog", "to": "models_auditlog_tablename", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_auditlog", "to": "models_auditlog_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_note_go", "to": "models_note", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_user_go", "to": "models_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_web_scraping_go", "to": "models_scrapedcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_web_scraping_go", "to": "models_scrapedimage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_web_scraping_go", "to": "models_scrapedlink", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_web_scraping_go", "to": "models_scrapedvideo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_web_scraping_go", "to": "models_scrapingjob", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_scrapedcontent", "to": "models_scrapedcontent_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_scrapingjob", "to": "models_scrapingjob_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_task_go", "to": "models_taskstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_task_go", "to": "models_taskpriority", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_task_go", "to": "models_task", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_taskpriority", "to": "handlers_ai_features_accepttasksuggestion", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_models_knowledge_base_go", "to": "models_wikipage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_knowledge_base_go", "to": "models_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_knowledge_base_go", "to": "models_wikiversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_knowledge_base_go", "to": "models_wikibacklink", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_knowledge_base_go", "to": "models_wikiattachment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_knowledge_base_go", "to": "models_template", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_knowledge_base_go", "to": "models_templatevariable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_knowledge_base_go", "to": "models_knowledge_base_generateslug", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_knowledge_base_go", "to": "models_knowledge_base_estimatereadingtime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_wikipage", "to": "models_wikipage_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_wikipage", "to": "models_wikipage_beforeupdate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_category", "to": "models_category_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_template", "to": "models_template_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_wikipage_beforecreate", "to": "models_knowledge_base_generateslug", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_category_beforecreate", "to": "models_knowledge_base_generateslug", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_template_beforecreate", "to": "models_knowledge_base_generateslug", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_wikipage_beforeupdate", "to": "models_knowledge_base_generateslug", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_wikipage_beforeupdate", "to": "models_knowledge_base_estimatereadingtime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_teams_go", "to": "models_team", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_teams_go", "to": "models_teammember", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_teams_go", "to": "models_teaminvitation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_teams_go", "to": "models_teamproject", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_teams_go", "to": "models_teamprojecttag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_teams_go", "to": "models_teambookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_teams_go", "to": "models_teamnote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_teams_go", "to": "models_teamtask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_teams_go", "to": "models_teamfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_teams_go", "to": "models_teamactivity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_teams_go", "to": "models_teamstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_analytics_go", "to": "models_analytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_analytics_go", "to": "models_productivitymetrics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_analytics_go", "to": "models_learninganalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_analytics_go", "to": "models_contentanalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_analytics_go", "to": "models_githubanalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_analytics_go", "to": "models_habitanalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_analytics_go", "to": "models_goal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_analytics_go", "to": "models_milestone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_analytics_go", "to": "models_analyticsreport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_analytics", "to": "models_analytics_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_productivitymetrics", "to": "models_productivitymetrics_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_learninganalytics", "to": "models_learninganalytics_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_contentanalytics", "to": "models_contentanalytics_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_githubanalytics", "to": "models_githubanalytics_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_habitanalytics", "to": "models_habitanalytics_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_goal", "to": "models_goal_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_milestone", "to": "models_milestone_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_bookmark_go", "to": "models_bookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_messages_go", "to": "models_conversationtype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_messages_go", "to": "models_conversationmemberrole", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_messages_go", "to": "models_suggestionstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_messages_go", "to": "models_conversation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_messages_go", "to": "models_conversationmember", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_messages_go", "to": "models_message", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_messages_go", "to": "models_messageattachment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_messages_go", "to": "models_messagereference", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_messages_go", "to": "models_messagesuggestion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_messages_go", "to": "models_messagereaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_messages_go", "to": "models_passwordvaultitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_messages_go", "to": "models_passwordvaultshare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_conversationtype", "to": "handlers_messages_createconversation", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "models_conversationmemberrole", "to": "handlers_messages_addconversationmember", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_models_learning_path_go", "to": "models_learningpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_learning_path_go", "to": "models_learningmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_learning_path_go", "to": "models_moduleresource", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_learning_path_go", "to": "models_enrollment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_learning_path_go", "to": "models_progress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_file_go", "to": "models_filetype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_file_go", "to": "models_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_browser_extension_go", "to": "models_apikey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_browser_extension_go", "to": "models_browserextension", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_chat_go", "to": "models_chatmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_chat_go", "to": "models_chatsession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_tag_go", "to": "models_tag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_github_user_auth_go", "to": "models_githubuserauth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_youtube_cache_go", "to": "models_youtubechannelcache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_youtubechannelcache", "to": "models_youtubechannelcache_tablename", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_youtubechannelcache", "to": "models_youtubechannelcache_isexpired", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_goals_habits_go", "to": "models_habit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_goals_habits_go", "to": "models_habitentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_goals_habits_go", "to": "models_goaltag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_goals_habits_go", "to": "models_habittag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_goals_habits_go", "to": "models_goaltemplate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_goals_habits_go", "to": "models_goaltemplatemilestone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_habit", "to": "models_habit_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_habit", "to": "models_habit_beforeupdate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_habit", "to": "models_habit_updatestreakandrate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_habit", "to": "models_habit_gettodayentry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_habit", "to": "models_habit_getweeklystreak", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_habitentry", "to": "models_habitentry_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_habit_beforeupdate", "to": "models_habit_updatestreakandrate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_integrationtype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_integrationstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_integration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_integrationconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_slackconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_discordconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_notionconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_googleconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_pocketconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_todoistconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_githubconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_twitterconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_redditconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_obsidianconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_synclog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_integration_go", "to": "models_webhookevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_models_go", "to": "models_models_initdb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_models_go", "to": "models_models_tablehascolumn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_models_go", "to": "models_models_tableexists", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_models_go", "to": "models_models_repairlegacybootstrapschema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_models_go", "to": "models_models_automigrate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_models_initdb", "to": "config_database_getdb", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "models_models_tablehascolumn", "to": "models_models_repairlegacybootstrapschema", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_models_tableexists", "to": "models_models_repairlegacybootstrapschema", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_models_repairlegacybootstrapschema", "to": "models_models_automigrate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_models_automigrate", "to": "config_database_getdb", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_models_file_analysis_go", "to": "models_fileanalysis", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_fileanalysis", "to": "models_fileanalysis_tablename", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_fileanalysis", "to": "models_fileanalysis_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_ai_recommendation_go", "to": "models_airecommendation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_ai_recommendation_go", "to": "models_userpreference", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_ai_recommendation_go", "to": "models_recommendationinteraction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_airecommendation", "to": "models_airecommendation_tablename", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_airecommendation", "to": "models_airecommendation_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_userpreference", "to": "models_userpreference_tablename", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_userpreference", "to": "models_userpreference_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_recommendationinteraction", "to": "models_recommendationinteraction_tablename", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_github_backup_go", "to": "models_githubappinstallstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_github_backup_go", "to": "models_githubappinstallation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_github_backup_go", "to": "models_githubrepobackup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_calendar_go", "to": "models_calendarevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_calendar_go", "to": "models_recurrencerule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_calendar_go", "to": "models_calendarsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_calendarevent", "to": "models_calendarevent_getduration", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_calendarevent", "to": "models_calendarevent_isoverdue", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_calendarevent", "to": "models_calendarevent_istoday", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_calendarevent", "to": "models_calendarevent_isupcoming", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_calendarevent", "to": "models_calendarevent_getprioritycolor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_calendarevent", "to": "models_calendarevent_gettypecolor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_social_go", "to": "models_skill", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_social_go", "to": "models_project", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_social_go", "to": "models_projecttag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_social_go", "to": "models_sociallink", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_social_go", "to": "models_follow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_social_go", "to": "models_userprofilestats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_update_settings_go", "to": "models_userupdatesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_update_settings_go", "to": "models_update_settings_getuserupdatesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_update_settings_go", "to": "models_update_settings_saveuserupdatesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_update_settings_getuserupdatesettings", "to": "handlers_update_settings_getupdatesettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "models_update_settings_getuserupdatesettings", "to": "handlers_update_settings_getupdatesettingsforapi", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "models_update_settings_saveuserupdatesettings", "to": "handlers_update_settings_updateupdatesettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_models_control_service_auth_go", "to": "models_controlservicesession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_time_entry_go", "to": "models_timeentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_timeentry", "to": "models_timeentry_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_timeentry", "to": "models_timeentry_beforeupdate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_timeentry", "to": "models_timeentry_stop", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_timeentry", "to": "models_timeentry_getduration", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_timeentry", "to": "models_timeentry_getformattedduration", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_timeentry_getduration", "to": "models_timeentry_getformattedduration", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_ai_settings_go", "to": "models_useraisettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_video_bookmark_go", "to": "models_videobookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_videobookmark", "to": "models_videobookmark_tablename", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_search_go", "to": "models_contentembedding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_search_go", "to": "models_savedsearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_search_go", "to": "models_savedsearchtag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_search_go", "to": "models_searchanalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_search_go", "to": "models_searchsuggestion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_contentembedding", "to": "models_contentembedding_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_marketplace_go", "to": "models_marketplaceitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_marketplace_go", "to": "models_marketplacetag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_marketplace_go", "to": "models_marketplacereview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_marketplace_go", "to": "models_marketplacepurchase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_marketplace_go", "to": "models_contentshare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_marketplace_go", "to": "models_marketplace_generatesharetoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_marketplaceitem", "to": "models_marketplaceitem_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_marketplacereview", "to": "models_marketplacereview_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_marketplacepurchase", "to": "models_marketplacepurchase_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_contentshare", "to": "models_contentshare_beforecreate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "models_contentshare_beforecreate", "to": "models_marketplace_generatesharetoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_course_go", "to": "models_course", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_models_course_go", "to": "models_learningpathcourse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_config_go", "to": "config_serverconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_config_go", "to": "config_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_config_go", "to": "config_databaseconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_config_go", "to": "config_appconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_config_go", "to": "config_config_load", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_config_go", "to": "config_config_getenvwithdefault", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_config_go", "to": "config_config_getdurationenv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_config", "to": "config_config_validate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_config", "to": "config_config_dsn", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_config_load", "to": "config_config_getenvwithdefault", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_config_load", "to": "config_config_getdurationenv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_config_validate", "to": "handlers_two_factor_verifytotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_config_validate", "to": "handlers_two_factor_enabletotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_config_validate", "to": "handlers_two_factor_disabletotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_config_validate", "to": "handlers_two_factor_loginwithtotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_config_validate", "to": "handlers_two_factor_regeneratebackupcodes", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_config_database_go", "to": "config_database_getjwtsecret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_database_go", "to": "config_database_shouldrunlegacysqlmigrations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_database_go", "to": "config_database_initdatabase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_database_go", "to": "config_database_getdb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_database_shouldrunlegacysqlmigrations", "to": "config_database_initdatabase", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_database_initdatabase", "to": "config_logger_initlogger", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_initdatabase", "to": "middleware_loggerconfig_getlogger", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_initdatabase", "to": "utils_response_error", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_initdatabase", "to": "migrations_migrate_runmigrations", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_youtube_channels_getfireshipvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_youtube_channels_getnetworkchuckvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_youtube_channels_getchannelvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_task_gettasks", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_task_createtask", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_task_gettask", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_task_updatetask", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_task_deletetask", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_semantic_search_semanticsearch", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_semantic_search_generateembedding", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_semantic_search_reindexcontent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_bookmark_getbookmarks", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_bookmark_createbookmark", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_bookmark_getbookmark", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_bookmark_updatebookmark", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_bookmark_deletebookmark", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_bookmark_refreshbookmarkmetadata", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_two_factor_setuptotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_two_factor_enabletotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_two_factor_disabletotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_two_factor_verifybackupcode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_two_factor_loginwithtotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_two_factor_regeneratebackupcodes", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_search_enhanced_enhancedsearch", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_learning_path_getlearningpaths", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_learning_path_getlearningpath", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_learning_path_createlearningpath", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_learning_path_updatelearningpath", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_learning_path_deletelearningpath", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_learning_path_enrollinlearningpath", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_learning_path_getuserenrollments", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_learning_path_updateprogress", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_learning_path_ratelearningpath", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_browser_extension_generateapikey", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_browser_extension_getapikeys", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_browser_extension_revokeapikey", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_browser_extension_validateapikey", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_browser_extension_registerbrowserextension", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_browser_extension_getbrowserextensions", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_browser_extension_revokebrowserextension", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_github_githubcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_github_getgithubrepos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_github_getgithubactivity", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_encryption_createencryptednote", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_encryption_getencryptednote", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_encryption_uploadencryptedfile", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_encryption_downloadencryptedfile", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_encryption_getencryptionstatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_health_healthcheck", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_health_readinesscheck", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_github_backup_getgithubappstatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_github_backup_getgithubappinstallurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_github_backup_githubappinstallcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_github_backup_getgithubapprepos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_github_backup_getgithubbackups", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_github_backup_backupgithubrepositories", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_control_service_auth_handleoauthcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_admin_adminmiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_admin_admingetalllearningpaths", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_admin_adminreviewlearningpath", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_admin_admingetusers", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_admin_admincreateuser", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_admin_adminupdateuserrole", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_admin_admingetstats", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_admin_admindeletelearningpath", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_video_bookmark_newvideobookmarkhandler", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_auth_validateapikeyforrequest", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_auth_authmiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_auth_checkusers", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_auth_register", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_auth_login", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_auth_updateprofile", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_auth_changepassword", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_auth_requestpasswordreset", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_auth_confirmpasswordreset", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_auth_getdashboardstats", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_audit_getauditlogs", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_audit_getauditlogstats", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_audit_getauditlog", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_audit_exportauditlogs", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_audit_cleanupauditlogs", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_course_getcourses", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_course_getcourse", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_course_getcoursebyslug", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_course_getfeaturedcourses", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_course_getztmcourses", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_course_getcoursecategories", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_course_searchcourses", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "handlers_course_getlearningpathcourses", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "config_database_getdb", "to": "middleware_audit_saveauditlog", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_config_logger_go", "to": "config_logger_initlogger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_logger_go", "to": "config_logger_getlogger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_logger_go", "to": "config_logger_synclogger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "config_logger_initlogger", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_config_production_go", "to": "config_productionconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_config_production_go", "to": "config_production_defaultproductionconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_summarizecontentrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_generatetasksuggestionsrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_generatetagsrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_generatecontentrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_summarizecontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_gettasksuggestions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_generatetagsuggestions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_generatecontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_getaiproviders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_getproviderdisplayname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_getaisummaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_gettasksuggestionslist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_accepttasksuggestion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_dismisstasksuggestion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_aisummaryresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_tasksuggestionresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_tagsuggestionresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_contentgenerationresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_generateaisummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_generatetasksuggestions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_generateaicontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_buildtaskcontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_features_go", "to": "handlers_ai_features_getprovidermodel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_ai_features_summarizecontent", "to": "handlers_ai_features_generateaisummary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_ai_features_summarizecontent", "to": "handlers_ai_features_getprovidermodel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_ai_features_gettasksuggestions", "to": "handlers_ai_features_buildtaskcontext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_ai_features_gettasksuggestions", "to": "handlers_ai_features_generatetasksuggestions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_ai_features_gettasksuggestions", "to": "handlers_ai_features_getprovidermodel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_ai_features_generatetagsuggestions", "to": "handlers_ai_features_getprovidermodel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_ai_features_generatecontent", "to": "handlers_ai_features_generateaicontent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_ai_features_generatecontent", "to": "handlers_ai_features_getprovidermodel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_ai_features_getaiproviders", "to": "handlers_ai_features_getproviderdisplayname", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_settings_go", "to": "handlers_searchsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_settings_go", "to": "handlers_search_settings_getsearchsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_settings_go", "to": "handlers_search_settings_updatesearchsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_settings_go", "to": "handlers_search_settings_gettestsearchsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_settings_go", "to": "handlers_search_settings_getsearchsettingsforapi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_settings_go", "to": "handlers_search_settings_getdefaultsearchsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_settings_go", "to": "handlers_search_settings_getenvwithdefault", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_settings_go", "to": "handlers_search_settings_getintenvwithdefault", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_settings_go", "to": "handlers_search_settings_getboolenvwithdefault", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_searchsettings", "to": "pages_settings_handleupdatesearchsettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_search_settings_getsearchsettings", "to": "handlers_search_settings_updatesearchsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_settings_gettestsearchsettings", "to": "handlers_search_settings_getdefaultsearchsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_settings_getsearchsettingsforapi", "to": "handlers_search_settings_getdefaultsearchsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_settings_getsearchsettingsforapi", "to": "handlers_search_searchweb", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_search_settings_getsearchsettingsforapi", "to": "handlers_search_searchnews", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_search_settings_getdefaultsearchsettings", "to": "handlers_search_settings_getenvwithdefault", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_settings_getdefaultsearchsettings", "to": "handlers_search_settings_getintenvwithdefault", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_settings_getenvwithdefault", "to": "handlers_update_settings_getdefaultupdatesettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_search_settings_getboolenvwithdefault", "to": "handlers_update_settings_getdefaultupdatesettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_youtube_channels_go", "to": "handlers_youtubechannelrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_channels_go", "to": "handlers_youtube_channels_getfireshipvideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_channels_go", "to": "handlers_youtube_channels_getnetworkchuckvideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_channels_go", "to": "handlers_youtube_channels_getchannelvideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_savedsearchrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_savedsearchresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_createsavedsearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_getusersavedsearches", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_getsavedsearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_updatesavedsearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_deletesavedsearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_runsavedsearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_getsavedsearchtags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_performsearchfromsavedsearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_performenhancedsearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_getstringvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_getintvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_min", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_saved_search_go", "to": "handlers_saved_search_logsearchanalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_saved_search_runsavedsearch", "to": "handlers_saved_search_performsearchfromsavedsearch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_saved_search_runsavedsearch", "to": "handlers_saved_search_logsearchanalytics", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_saved_search_performsearchfromsavedsearch", "to": "handlers_saved_search_getstringvalue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_saved_search_performsearchfromsavedsearch", "to": "handlers_saved_search_getintvalue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_saved_search_performsearchfromsavedsearch", "to": "handlers_saved_search_performenhancedsearch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_saved_search_performenhancedsearch", "to": "handlers_saved_search_min", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_saved_search_min", "to": "handlers_analyticshandler_calculateproductivityscore", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_community_go", "to": "handlers_communityhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_community_go", "to": "handlers_community_newcommunityhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_community_go", "to": "handlers_community_calculatematchscore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_getchallenges", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_getchallenge", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_createchallenge", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_joinchallenge", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_getmychallenges", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_updatechallengeprogress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_getmentorshiprequests", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_creatementorshiprequest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_respondtomentorshiprequest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_getmymentorships", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_creatementorshipsession", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_getmentorshipsessions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler", "to": "handlers_communityhandler_getcommunitystats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_communityhandler_creatementorshiprequest", "to": "handlers_community_calculatematchscore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_learning_progress_go", "to": "handlers_learningprogresshandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_learning_progress_go", "to": "handlers_learning_progress_newlearningprogresshandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_learningprogresshandler", "to": "handlers_learningprogresshandler_updatelearningprogress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_learningprogresshandler", "to": "handlers_learningprogresshandler_getlearningprogress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_learningprogresshandler", "to": "handlers_learningprogresshandler_getcourseprogress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_learningprogresshandler", "to": "handlers_learningprogresshandler_markcoursecompleted", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_learningprogresshandler", "to": "handlers_learningprogresshandler_calculatelearningstreak", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_learningprogresshandler", "to": "handlers_learningprogresshandler_generatelearninginsights", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_learningprogresshandler_updatelearningprogress", "to": "handlers_learningprogresshandler_calculatelearningstreak", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_learningprogresshandler_getcourseprogress", "to": "handlers_learningprogresshandler_generatelearninginsights", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_note_go", "to": "handlers_note_getnotes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_note_go", "to": "handlers_note_createnote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_note_go", "to": "handlers_note_getnote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_note_go", "to": "handlers_note_updatenote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_note_go", "to": "handlers_note_deletenote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_note_go", "to": "handlers_note_getnotestats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_web_scraping_go", "to": "handlers_webscrapinghandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_web_scraping_go", "to": "handlers_web_scraping_newwebscrapinghandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_createscrapingjob", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_getscrapingjobs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_getscrapingjob", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_getscrapedcontent", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_getscrapedcontentlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_deletescrapingjob", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_deletescrapedcontent", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_searchscrapedcontent", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_processscrapingjob", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_scrapewebpage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_extracttextfromhtml", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_estimatereadingtime", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_calculatequalityscore", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_getimageformat", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_getdomainfromurl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_getvideoplatform", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_getvideoid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_extractkeywordsfromcontent", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_iscommonword", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_detectcontenttype", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler", "to": "handlers_webscrapinghandler_generatesummary", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler_createscrapingjob", "to": "handlers_webscrapinghandler_processscrapingjob", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler_processscrapingjob", "to": "handlers_webscrapinghandler_scrapewebpage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler_scrapewebpage", "to": "handlers_webscrapinghandler_getimageformat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler_scrapewebpage", "to": "handlers_webscrapinghandler_getdomainfromurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler_scrapewebpage", "to": "handlers_webscrapinghandler_getvideoplatform", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler_scrapewebpage", "to": "handlers_webscrapinghandler_getvideoid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler_scrapewebpage", "to": "handlers_webscrapinghandler_extractkeywordsfromcontent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler_scrapewebpage", "to": "handlers_webscrapinghandler_detectcontenttype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler_scrapewebpage", "to": "handlers_webscrapinghandler_estimatereadingtime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler_scrapewebpage", "to": "handlers_webscrapinghandler_generatesummary", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler_scrapewebpage", "to": "handlers_webscrapinghandler_calculatequalityscore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_webscrapinghandler_extractkeywordsfromcontent", "to": "handlers_webscrapinghandler_iscommonword", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_task_go", "to": "handlers_task_gettasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_task_go", "to": "handlers_task_createtask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_task_go", "to": "handlers_task_gettask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_task_go", "to": "handlers_task_updatetask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_task_go", "to": "handlers_task_deletetask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semanticsearchrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semanticsearchresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semanticsearchresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_generateembeddingrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_generateembeddingresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semantic_search_semanticsearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semantic_search_generateembedding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semantic_search_reindexcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semantic_search_simplehash", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semantic_search_findsimilarcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semantic_search_cosinesimilarity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semantic_search_buildsemanticsearchresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semantic_search_generatehighlights", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semantic_search_reindexusercontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semantic_search_upsertembedding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semantic_search_normalizesemanticcontenttype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_semantic_search_go", "to": "handlers_semantic_search_compactsemantictext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_semantic_search_semanticsearch", "to": "handlers_semantic_search_generateembedding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_semantic_search_semanticsearch", "to": "handlers_semantic_search_findsimilarcontent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_semantic_search_generateembedding", "to": "handlers_semantic_search_simplehash", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_semantic_search_generateembedding", "to": "handlers_semantic_search_upsertembedding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_semantic_search_reindexcontent", "to": "handlers_semantic_search_reindexusercontent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_semantic_search_findsimilarcontent", "to": "handlers_semantic_search_normalizesemanticcontenttype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_semantic_search_findsimilarcontent", "to": "handlers_semantic_search_cosinesimilarity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_semantic_search_findsimilarcontent", "to": "handlers_semantic_search_buildsemanticsearchresult", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_semantic_search_buildsemanticsearchresult", "to": "handlers_semantic_search_compactsemantictext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_semantic_search_buildsemanticsearchresult", "to": "handlers_semantic_search_generatehighlights", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_semantic_search_reindexusercontent", "to": "handlers_semantic_search_upsertembedding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_knowledge_base_go", "to": "handlers_knowledgebasehandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_knowledge_base_go", "to": "handlers_knowledge_base_newknowledgebasehandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_knowledge_base_go", "to": "handlers_knowledge_base_generateslug", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_knowledge_base_go", "to": "handlers_knowledge_base_estimatereadingtime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_createwikipage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_getwikipages", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_getwikipage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_updatewikipage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_deletewikipage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_createcategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_getcategories", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_searchwikipages", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_addtagstowikipage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_updatewikipagetags", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_addcollaboratorstowikipage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_createwikiversion", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_getlastwikiversion", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler", "to": "handlers_knowledgebasehandler_processbacklinks", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_createwikipage", "to": "handlers_knowledge_base_generateslug", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_createwikipage", "to": "handlers_knowledge_base_estimatereadingtime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_createwikipage", "to": "handlers_knowledgebasehandler_addtagstowikipage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_createwikipage", "to": "handlers_knowledgebasehandler_addcollaboratorstowikipage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_createwikipage", "to": "handlers_knowledgebasehandler_createwikiversion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_createwikipage", "to": "handlers_knowledgebasehandler_processbacklinks", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_updatewikipage", "to": "handlers_knowledge_base_generateslug", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_updatewikipage", "to": "handlers_knowledge_base_estimatereadingtime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_updatewikipage", "to": "handlers_knowledgebasehandler_updatewikipagetags", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_updatewikipage", "to": "handlers_knowledgebasehandler_getlastwikiversion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_updatewikipage", "to": "handlers_knowledgebasehandler_createwikiversion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_updatewikipage", "to": "handlers_knowledgebasehandler_processbacklinks", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_createcategory", "to": "handlers_knowledge_base_generateslug", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_knowledgebasehandler_addtagstowikipage", "to": "handlers_knowledgebasehandler_updatewikipagetags", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_teams_go", "to": "handlers_teamshandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_teams_go", "to": "handlers_teams_newteamshandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_teams_go", "to": "handlers_teams_generateinvitationtoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teamshandler", "to": "handlers_teamshandler_getteams", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teamshandler", "to": "handlers_teamshandler_createteam", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teamshandler", "to": "handlers_teamshandler_getteam", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teamshandler", "to": "handlers_teamshandler_updateteam", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teamshandler", "to": "handlers_teamshandler_deleteteam", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teamshandler", "to": "handlers_teamshandler_invitemember", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teamshandler", "to": "handlers_teamshandler_acceptinvitation", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teamshandler", "to": "handlers_teamshandler_getteammembers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teamshandler", "to": "handlers_teamshandler_removemember", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teamshandler", "to": "handlers_teamshandler_getteamactivity", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teamshandler", "to": "handlers_teamshandler_getteamstats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teams_generateinvitationtoken", "to": "handlers_teamshandler_invitemember", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_teams_generateinvitationtoken", "to": "middleware_requestbody_read", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_analytics_go", "to": "handlers_analyticshandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_analytics_go", "to": "handlers_analytics_newanalyticshandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_analytics_go", "to": "handlers_analytics_calculatefocusscore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_getdashboardanalytics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_getproductivitymetrics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_getlearninganalytics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_getcontentanalytics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_getgithubanalytics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_getgoals", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_creategoal", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_updategoal", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_deletegoal", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_generateanalyticsreport", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_generatedailyanalytics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_calculatestudystreak", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_calculateproductivityscore", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_generateproductivitymetrics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_generateinsights", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler", "to": "handlers_analyticshandler_generaterecommendations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler_getproductivitymetrics", "to": "handlers_analyticshandler_generateproductivitymetrics", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler_generateanalyticsreport", "to": "handlers_analyticshandler_generateinsights", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler_generateanalyticsreport", "to": "handlers_analyticshandler_generaterecommendations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler_generatedailyanalytics", "to": "handlers_analyticshandler_calculatestudystreak", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler_generatedailyanalytics", "to": "handlers_analyticshandler_calculateproductivityscore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_analyticshandler_generateproductivitymetrics", "to": "handlers_analytics_calculatefocusscore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_bookmark_go", "to": "handlers_bookmark_getbookmarks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_bookmark_go", "to": "handlers_bookmark_createbookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_bookmark_go", "to": "handlers_bookmark_getbookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_bookmark_go", "to": "handlers_bookmark_updatebookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_bookmark_go", "to": "handlers_bookmark_deletebookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_bookmark_go", "to": "handlers_bookmark_refreshbookmarkmetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_bookmark_go", "to": "handlers_bookmark_getbookmarkmetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_bookmark_go", "to": "handlers_bookmark_getbookmarkcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_bookmark_go", "to": "handlers_bookmark_fetchpagecontentwithscreenshot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_bookmark_go", "to": "handlers_bookmark_capturescreenshot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_bookmark_go", "to": "handlers_bookmark_generateenhancedpreviewhtml", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_bookmark_getbookmarkcontent", "to": "handlers_bookmark_fetchpagecontentwithscreenshot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_bookmark_fetchpagecontentwithscreenshot", "to": "handlers_bookmark_capturescreenshot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_bookmark_fetchpagecontentwithscreenshot", "to": "handlers_bookmark_generateenhancedpreviewhtml", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_config_go", "to": "handlers_config_getapiconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_createconversationrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_addconversationmemberrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_attachmentinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_referenceinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_createmessagerequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_updatemessagerequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_createreactionrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messagesearchrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_suggestionactionrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_createvaultitemrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_sharevaultitemrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_unsharevaultitemrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_conversationlistitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_getconversations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_createconversation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_getconversation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_updateconversation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_addconversationmember", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_removeconversationmember", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_getconversationmessages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_createconversationmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_updatemessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_deletemessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_addmessagereaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_removemessagereaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_searchmessages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_getmessagesuggestions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_acceptmessagesuggestion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_dismissmessagesuggestion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_revealsensitivemessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_getpasswordvaultitems", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_createpasswordvaultitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_sharepasswordvaultitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_revealpasswordvaultitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_unsharepasswordvaultitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_messageswebsocket", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_applysuggestionaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_ensuremessagingdefaults", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_ensureglobalconversations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_ensureuserconversation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_getconversationwithmembership", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_isconversationadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_canwritemessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_getauthuserid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_parseuintparam", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_parseuintany", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_findexistingdm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_usersexist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_hasattachment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_masksensitivebody", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_extractsensitiveplaintext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_extractsensitivepayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_normalizeattachmentkind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_normalizereferencetype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_isreferencedeeplinkallowed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_canreferenceentity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_compactmessagetitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_firsturlfromtext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_extractyoutubevideoid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_asstring", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_messages_go", "to": "handlers_messages_isconversationmember", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_getconversations", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_getconversations", "to": "handlers_messages_ensuremessagingdefaults", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversation", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversation", "to": "handlers_messages_ensuremessagingdefaults", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversation", "to": "handlers_messages_findexistingdm", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversation", "to": "handlers_messages_usersexist", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_getconversation", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_getconversation", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_getconversation", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_updateconversation", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_updateconversation", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_updateconversation", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_updateconversation", "to": "handlers_messages_isconversationadmin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_addconversationmember", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_addconversationmember", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_addconversationmember", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_addconversationmember", "to": "handlers_messages_isconversationadmin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_removeconversationmember", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_removeconversationmember", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_removeconversationmember", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_removeconversationmember", "to": "handlers_messages_isconversationadmin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_getconversationmessages", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_getconversationmessages", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_getconversationmessages", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversationmessage", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversationmessage", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversationmessage", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversationmessage", "to": "handlers_messages_canwritemessage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversationmessage", "to": "handlers_messages_normalizeattachmentkind", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversationmessage", "to": "handlers_messages_normalizereferencetype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversationmessage", "to": "handlers_messages_isreferencedeeplinkallowed", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversationmessage", "to": "handlers_messages_canreferenceentity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversationmessage", "to": "handlers_messages_hasattachment", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversationmessage", "to": "handlers_messages_masksensitivebody", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createconversationmessage", "to": "utils_encryption_encrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_messages_updatemessage", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_updatemessage", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_updatemessage", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_updatemessage", "to": "handlers_messages_isconversationadmin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_deletemessage", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_deletemessage", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_deletemessage", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_deletemessage", "to": "handlers_messages_isconversationadmin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_addmessagereaction", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_addmessagereaction", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_addmessagereaction", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_removemessagereaction", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_removemessagereaction", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_removemessagereaction", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_searchmessages", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_getmessagesuggestions", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_getmessagesuggestions", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_getmessagesuggestions", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_acceptmessagesuggestion", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_acceptmessagesuggestion", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_acceptmessagesuggestion", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_acceptmessagesuggestion", "to": "handlers_messages_applysuggestionaction", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_dismissmessagesuggestion", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_dismissmessagesuggestion", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_dismissmessagesuggestion", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_revealsensitivemessage", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_revealsensitivemessage", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_revealsensitivemessage", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_revealsensitivemessage", "to": "handlers_messages_extractsensitiveplaintext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_getpasswordvaultitems", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createpasswordvaultitem", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_createpasswordvaultitem", "to": "utils_encryption_encrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_messages_sharepasswordvaultitem", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_sharepasswordvaultitem", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_sharepasswordvaultitem", "to": "handlers_messages_getconversationwithmembership", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_revealpasswordvaultitem", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_revealpasswordvaultitem", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_revealpasswordvaultitem", "to": "utils_encryption_decrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_messages_unsharepasswordvaultitem", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_unsharepasswordvaultitem", "to": "handlers_messages_parseuintparam", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_messageswebsocket", "to": "handlers_messages_getauthuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_messageswebsocket", "to": "handlers_messages_parseuintany", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_messageswebsocket", "to": "handlers_messages_isconversationmember", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_applysuggestionaction", "to": "handlers_messages_asstring", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_applysuggestionaction", "to": "handlers_messages_compactmessagetitle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_applysuggestionaction", "to": "handlers_messages_firsturlfromtext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_applysuggestionaction", "to": "handlers_messages_extractyoutubevideoid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_applysuggestionaction", "to": "handlers_messages_extractsensitiveplaintext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_applysuggestionaction", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_messages_applysuggestionaction", "to": "utils_encryption_encrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_messages_ensuremessagingdefaults", "to": "handlers_messages_ensureglobalconversations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_ensuremessagingdefaults", "to": "handlers_messages_ensureuserconversation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_ensuremessagingdefaults", "to": "handlers_oauth_service_upsertcentralizedoauthuser", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_messages_ensuremessagingdefaults", "to": "handlers_admin_admincreateuser", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_messages_ensuremessagingdefaults", "to": "handlers_auth_register", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_messages_extractsensitiveplaintext", "to": "handlers_messages_extractsensitivepayload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_extractsensitiveplaintext", "to": "handlers_messages_asstring", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_messages_extractsensitiveplaintext", "to": "utils_encryption_decrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_totpsetuprequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_totpsetupresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_totpverifyrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_totpenablerequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_totpdisablerequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_totploginrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_two_factor_encrypt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_two_factor_decrypt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_two_factor_generatebackupcodes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_two_factor_setuptotp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_two_factor_verifytotp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_two_factor_enabletotp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_two_factor_disabletotp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_two_factor_gettotpstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_two_factor_verifybackupcode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_two_factor_loginwithtotp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_two_factor_go", "to": "handlers_two_factor_regeneratebackupcodes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_encrypt", "to": "handlers_two_factor_setuptotp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_encrypt", "to": "handlers_two_factor_verifybackupcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_encrypt", "to": "handlers_two_factor_loginwithtotp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_encrypt", "to": "handlers_two_factor_regeneratebackupcodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_decrypt", "to": "handlers_two_factor_verifytotp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_decrypt", "to": "handlers_two_factor_enabletotp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_decrypt", "to": "handlers_two_factor_disabletotp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_decrypt", "to": "handlers_two_factor_verifybackupcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_decrypt", "to": "handlers_two_factor_loginwithtotp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_decrypt", "to": "handlers_two_factor_regeneratebackupcodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_generatebackupcodes", "to": "handlers_two_factor_setuptotp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_generatebackupcodes", "to": "handlers_two_factor_regeneratebackupcodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_two_factor_loginwithtotp", "to": "handlers_auth_generatejwt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_oauth_service_go", "to": "handlers_centralizedoauthuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_oauth_service_go", "to": "handlers_oauth_service_getoauthserviceurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_oauth_service_go", "to": "handlers_oauth_service_headervalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_oauth_service_go", "to": "handlers_oauth_service_backendpublicbaseurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_oauth_service_go", "to": "handlers_oauth_service_normalizefrontendredirecturl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_oauth_service_go", "to": "handlers_oauth_service_resolvefrontendredirecturl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_oauth_service_go", "to": "handlers_oauth_service_buildgithubusercallbackurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_oauth_service_go", "to": "handlers_oauth_service_buildfrontendcallbackredirecturl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_oauth_service_go", "to": "handlers_oauth_service_firstnonempty", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_oauth_service_go", "to": "handlers_oauth_service_uniqueusername", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_oauth_service_go", "to": "handlers_oauth_service_upsertcentralizedoauthuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_oauth_service_headervalue", "to": "handlers_oauth_service_backendpublicbaseurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_oauth_service_headervalue", "to": "handlers_github_user_auth_issecurerequest", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_oauth_service_backendpublicbaseurl", "to": "handlers_oauth_service_buildgithubusercallbackurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_oauth_service_backendpublicbaseurl", "to": "handlers_control_service_auth_buildcontrolservicecallbackurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_oauth_service_backendpublicbaseurl", "to": "handlers_control_service_auth_buildgithubappinstallcallbackurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_oauth_service_normalizefrontendredirecturl", "to": "handlers_oauth_service_resolvefrontendredirecturl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_oauth_service_normalizefrontendredirecturl", "to": "handlers_oauth_service_buildfrontendcallbackredirecturl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_oauth_service_normalizefrontendredirecturl", "to": "handlers_github_user_auth_getgithubfrontendredirectfromcookie", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_oauth_service_normalizefrontendredirecturl", "to": "handlers_control_service_auth_getcontrolservicefrontendredirectfromcookie", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_oauth_service_resolvefrontendredirecturl", "to": "handlers_github_githublogin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_oauth_service_buildgithubusercallbackurl", "to": "handlers_github_githubcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_oauth_service_buildfrontendcallbackredirecturl", "to": "handlers_github_githubcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_oauth_service_buildfrontendcallbackredirecturl", "to": "handlers_control_service_auth_handleoauthcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_oauth_service_firstnonempty", "to": "handlers_oauth_service_upsertcentralizedoauthuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_oauth_service_uniqueusername", "to": "handlers_oauth_service_upsertcentralizedoauthuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_oauth_service_upsertcentralizedoauthuser", "to": "handlers_control_service_auth_generaterandomstring", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_oauth_service_upsertcentralizedoauthuser", "to": "handlers_github_githubcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_oauth_service_upsertcentralizedoauthuser", "to": "handlers_control_service_auth_handleoauthcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_searchfilters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_daterange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_searchresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_searchresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_search_enhanced_enhancedsearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_search_enhanced_searchbookmarks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_search_enhanced_searchtasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_search_enhanced_searchnotes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_search_enhanced_searchfiles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_search_enhanced_calculaterelevancescore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_search_enhanced_getsearchsuggestions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_search_enhanced_savesearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_enhanced_go", "to": "handlers_search_enhanced_getsearchanalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_enhanced_enhancedsearch", "to": "handlers_search_enhanced_searchbookmarks", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_enhanced_enhancedsearch", "to": "handlers_search_enhanced_searchtasks", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_enhanced_enhancedsearch", "to": "handlers_search_enhanced_searchnotes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_enhanced_enhancedsearch", "to": "handlers_search_enhanced_searchfiles", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_enhanced_enhancedsearch", "to": "handlers_search_enhanced_getsearchsuggestions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_enhanced_searchbookmarks", "to": "handlers_search_enhanced_calculaterelevancescore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_enhanced_searchtasks", "to": "handlers_search_enhanced_calculaterelevancescore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_enhanced_searchnotes", "to": "handlers_search_enhanced_calculaterelevancescore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_search_enhanced_searchfiles", "to": "handlers_search_enhanced_calculaterelevancescore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_learning_path_go", "to": "handlers_learning_path_getlearningpaths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_learning_path_go", "to": "handlers_learning_path_getlearningpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_learning_path_go", "to": "handlers_learning_path_createlearningpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_learning_path_go", "to": "handlers_learning_path_updatelearningpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_learning_path_go", "to": "handlers_learning_path_deletelearningpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_learning_path_go", "to": "handlers_learning_path_enrollinlearningpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_learning_path_go", "to": "handlers_learning_path_getuserenrollments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_learning_path_go", "to": "handlers_learning_path_updateprogress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_learning_path_go", "to": "handlers_learning_path_ratelearningpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_learning_path_go", "to": "handlers_learning_path_getlearningpathcategories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_createfilesharerequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_fileshareresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_file_generatesecuresharetoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_file_buildpublicshareurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_file_mapfileshareresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_file_getfiles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_file_uploadfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_file_getfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_file_downloadfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_file_createfileshare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_file_getfileshares", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_file_deletefileshare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_file_deletefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_file_go", "to": "handlers_file_determinefiletype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_file_generatesecuresharetoken", "to": "handlers_file_createfileshare", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_file_generatesecuresharetoken", "to": "middleware_requestbody_read", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_file_buildpublicshareurl", "to": "handlers_file_mapfileshareresponse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_file_mapfileshareresponse", "to": "handlers_file_createfileshare", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_file_mapfileshareresponse", "to": "handlers_file_getfileshares", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_file_uploadfile", "to": "handlers_file_determinefiletype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_browser_extension_go", "to": "handlers_createapikeyrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_browser_extension_go", "to": "handlers_apikeyresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_browser_extension_go", "to": "handlers_browser_extension_generateapikey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_browser_extension_go", "to": "handlers_browser_extension_getapikeys", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_browser_extension_go", "to": "handlers_browser_extension_revokeapikey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_browser_extension_go", "to": "handlers_browser_extension_validateapikey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_browser_extension_go", "to": "handlers_browser_extension_registerbrowserextension", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_browser_extension_go", "to": "handlers_browser_extension_getbrowserextensions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_browser_extension_go", "to": "handlers_browser_extension_revokebrowserextension", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_browser_extension_go", "to": "handlers_browser_extension_downloadbrowserextension", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_browser_extension_go", "to": "handlers_browser_extension_createzip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_browser_extension_generateapikey", "to": "middleware_requestbody_read", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_browser_extension_downloadbrowserextension", "to": "handlers_browser_extension_createzip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_mistralconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_chatrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_chatresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_tokenusage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_mistralmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_mistralrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_mistralresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_chat_getmistralconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_chat_sendmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_chat_getsessions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_chat_getsessionmessages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_chat_deletesession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_go", "to": "handlers_chat_callmistral", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_chat_sendmessage", "to": "handlers_chat_context_buildusercontext", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_chat_sendmessage", "to": "handlers_chat_context_buildsystemprompt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_chat_sendmessage", "to": "handlers_chat_context_getcontextitemids", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_demo_go", "to": "handlers_demo_demostatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_demo_demostatus", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_githubusertokenresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_githubuseremail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_githubuserinstallationsresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_getgithubappclientid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_getgithubappclientsecret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_hasgithubuserauthconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_issecurerequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_setgithubauthcookie", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_storegithubauthflowstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_cleargithubauthflowstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_getgithubfrontendredirectfromcookie", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_postgithubtokenrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_exchangegithubauthorizationcode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_refreshgithubuseraccesstoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_tokenexpiryfromseconds", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_upsertgithubuserauth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_getgithubuserauthrecord", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_decryptgithubusertoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_getgithubuseraccesstokenforuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_fetchgithubprimaryverifiedemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_listgithubuserinstallations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_user_auth_go", "to": "handlers_github_user_auth_verifygithubinstallationaccessforuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_getgithubappclientid", "to": "handlers_github_user_auth_hasgithubuserauthconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_getgithubappclientid", "to": "handlers_github_user_auth_exchangegithubauthorizationcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_getgithubappclientid", "to": "handlers_github_user_auth_refreshgithubuseraccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_getgithubappclientsecret", "to": "handlers_github_user_auth_hasgithubuserauthconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_getgithubappclientsecret", "to": "handlers_github_user_auth_exchangegithubauthorizationcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_getgithubappclientsecret", "to": "handlers_github_user_auth_refreshgithubuseraccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_hasgithubuserauthconfig", "to": "handlers_github_user_auth_exchangegithubauthorizationcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_hasgithubuserauthconfig", "to": "handlers_github_user_auth_refreshgithubuseraccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_hasgithubuserauthconfig", "to": "handlers_github_backup_getgithubappstatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_issecurerequest", "to": "handlers_github_user_auth_setgithubauthcookie", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_setgithubauthcookie", "to": "handlers_github_user_auth_storegithubauthflowstate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_setgithubauthcookie", "to": "handlers_github_user_auth_cleargithubauthflowstate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_setgithubauthcookie", "to": "handlers_control_service_auth_storecontrolserviceauthflowstate", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_setgithubauthcookie", "to": "handlers_control_service_auth_clearcontrolserviceauthflowstate", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_cleargithubauthflowstate", "to": "handlers_github_githubcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_getgithubfrontendredirectfromcookie", "to": "handlers_github_githubcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_postgithubtokenrequest", "to": "handlers_github_user_auth_exchangegithubauthorizationcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_postgithubtokenrequest", "to": "handlers_github_user_auth_refreshgithubuseraccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_postgithubtokenrequest", "to": "handlers_github_backup_truncatestring", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_postgithubtokenrequest", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_exchangegithubauthorizationcode", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_exchangegithubauthorizationcode", "to": "handlers_github_githubcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_refreshgithubuseraccesstoken", "to": "handlers_github_user_auth_getgithubuseraccesstokenforuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_refreshgithubuseraccesstoken", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_tokenexpiryfromseconds", "to": "handlers_github_user_auth_upsertgithubuserauth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_upsertgithubuserauth", "to": "handlers_github_user_auth_getgithubuseraccesstokenforuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_upsertgithubuserauth", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_upsertgithubuserauth", "to": "utils_encryption_encrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_upsertgithubuserauth", "to": "handlers_github_githubcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_getgithubuserauthrecord", "to": "handlers_github_user_auth_getgithubuseraccesstokenforuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_getgithubuserauthrecord", "to": "handlers_github_getgithubrepos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_decryptgithubusertoken", "to": "handlers_github_user_auth_getgithubuseraccesstokenforuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_decryptgithubusertoken", "to": "utils_encryption_decrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_getgithubuseraccesstokenforuser", "to": "handlers_github_user_auth_verifygithubinstallationaccessforuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_getgithubuseraccesstokenforuser", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_getgithubuseraccesstokenforuser", "to": "handlers_github_getgithubrepos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_getgithubuseraccesstokenforuser", "to": "handlers_github_getgithubactivity", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_getgithubuseraccesstokenforuser", "to": "handlers_github_backup_getgithubappinstallurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_getgithubuseraccesstokenforuser", "to": "handlers_github_backup_resolvegithubbackuptoken", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_fetchgithubprimaryverifiedemail", "to": "handlers_github_backup_truncatestring", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_fetchgithubprimaryverifiedemail", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_fetchgithubprimaryverifiedemail", "to": "handlers_github_getprimaryemail", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_listgithubuserinstallations", "to": "handlers_github_user_auth_verifygithubinstallationaccessforuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_user_auth_listgithubuserinstallations", "to": "handlers_github_backup_truncatestring", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_verifygithubinstallationaccessforuser", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_user_auth_verifygithubinstallationaccessforuser", "to": "handlers_github_backup_githubappinstallcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_member_go", "to": "handlers_memberhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_member_go", "to": "handlers_member_newmemberhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_member_go", "to": "handlers_member_getinitials", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_member_go", "to": "handlers_member_formattime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_member_go", "to": "handlers_member_plurals", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_memberhandler", "to": "handlers_memberhandler_getmembers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_memberhandler", "to": "handlers_memberhandler_getmemberstats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_memberhandler_getmembers", "to": "handlers_member_getinitials", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_memberhandler_getmembers", "to": "handlers_member_formattime", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_member_formattime", "to": "handlers_member_plurals", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_githubuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_githubrepo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_github_githublogin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_github_githubcallback", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_github_getgithubuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_github_getprimaryemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_github_getcurrentuserwithgithub", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_github_getgithubrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_githubcontribution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_githubactivityresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_github_fetchgithubrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_github_fetchgithubcontributions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_go", "to": "handlers_github_getgithubactivity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_githublogin", "to": "handlers_control_service_auth_storecontrolserviceauthflowstate", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_githublogin", "to": "handlers_control_service_auth_buildcontrolservicegithubstarturl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_githublogin", "to": "handlers_github_app_auth_test_testgithubloginredirectstocontrolservice", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_githubcallback", "to": "handlers_github_getgithubuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_githubcallback", "to": "handlers_auth_generatejwt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_getgithubuser", "to": "handlers_github_getprimaryemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_getgithubuser", "to": "handlers_github_backup_truncatestring", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_getgithubrepos", "to": "handlers_github_fetchgithubrepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_getgithubrepos", "to": "handlers_github_backup_getgithubrequestuserid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_getgithubrepos", "to": "handlers_control_service_auth_getcontrolservicesessionrecord", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_getgithubrepos", "to": "handlers_control_service_auth_fetchcontrolservicegithubrepos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_getgithubrepos", "to": "handlers_github_app_auth_test_testgetgithubreposusescontrolserviceandpersistsrefreshedtoken", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_fetchgithubrepos", "to": "handlers_github_backup_truncatestring", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_fetchgithubrepos", "to": "handlers_github_backup_backupgithubrepositories", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_fetchgithubcontributions", "to": "handlers_github_getgithubactivity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_fetchgithubcontributions", "to": "handlers_github_backup_truncatestring", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_getgithubactivity", "to": "handlers_github_backup_getgithubrequestuserid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_getgithubactivity", "to": "handlers_control_service_auth_getcontrolservicesessionrecord", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_getgithubactivity", "to": "handlers_control_service_auth_fetchcontrolservicegithubuseraccesstoken", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_encryption_go", "to": "handlers_encryptionrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_encryption_go", "to": "handlers_encryptionresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_encryption_go", "to": "handlers_encryption_encryptnotecontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_encryption_go", "to": "handlers_encryption_decryptnotecontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_encryption_go", "to": "handlers_encryption_createencryptednote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_encryption_go", "to": "handlers_encryption_getencryptednote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_encryption_go", "to": "handlers_encryption_uploadencryptedfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_encryption_go", "to": "handlers_encryption_downloadencryptedfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_encryption_go", "to": "handlers_encryption_getencryptionstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_encryption_go", "to": "handlers_encryption_generaterandomstringforfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_encryption_go", "to": "handlers_encryption_determinefiletypeforencryption", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_encryption_encryptnotecontent", "to": "utils_encryption_encrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_encryption_decryptnotecontent", "to": "utils_encryption_decrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_encryption_createencryptednote", "to": "utils_encryption_encrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_encryption_getencryptednote", "to": "utils_encryption_decrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_encryption_getencryptednote", "to": "utils_encryption_isencrypted", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_encryption_uploadencryptedfile", "to": "handlers_encryption_generaterandomstringforfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_encryption_uploadencryptedfile", "to": "handlers_encryption_determinefiletypeforencryption", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_encryption_uploadencryptedfile", "to": "utils_encryption_encryptfile", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_encryption_downloadencryptedfile", "to": "utils_encryption_decryptfile", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_chat_context_go", "to": "handlers_usercontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_context_go", "to": "handlers_chat_context_buildusercontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_context_go", "to": "handlers_chat_context_buildsystemprompt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_context_go", "to": "handlers_chat_context_getcontextitemids", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_chat_context_go", "to": "handlers_chat_context_formatfilesize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_chat_context_buildsystemprompt", "to": "handlers_chat_context_formatfilesize", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_goals_habits_go", "to": "handlers_goalshabitshandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_goals_habits_go", "to": "handlers_goals_habits_newgoalshabitshandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_creategoal", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_getgoals", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_getgoal", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_updategoal", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_deletegoal", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_createhabit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_gethabits", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_gethabit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_updatehabit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_deletehabit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_createhabitentry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_gethabitentries", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_goalshabitshandler", "to": "handlers_goalshabitshandler_getdashboardstats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_performance_go", "to": "handlers_performancehandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_performance_go", "to": "handlers_performance_newperformancehandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_performancehandler", "to": "handlers_performancehandler_optimizedatabase", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_performancehandler", "to": "handlers_performancehandler_getdatabasestats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_performancehandler", "to": "handlers_performancehandler_monitorperformance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_performancehandler", "to": "handlers_performancehandler_cleanupoldauditlogs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_integration_go", "to": "handlers_integrationhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_integration_go", "to": "handlers_integration_newintegrationhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_getintegrations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_getintegration", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_createintegration", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_updateintegration", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_deleteintegration", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_authorizeintegration", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_oauthcallback", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_syncintegration", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_getsynclogs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_getslackauthurl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_getdiscordauthurl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_getnotionauthurl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_getgoogleauthurl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_getgithubauthurl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_exchangeslackcode", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_exchangediscordcode", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_exchangenotioncode", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_exchangegooglecode", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_exchangegithubcode", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_performsync", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_syncslack", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_syncdiscord", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_syncnotion", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_syncgoogle", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler", "to": "handlers_integrationhandler_syncgithub", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_authorizeintegration", "to": "handlers_integrationhandler_getslackauthurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_authorizeintegration", "to": "handlers_integrationhandler_getdiscordauthurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_authorizeintegration", "to": "handlers_integrationhandler_getnotionauthurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_authorizeintegration", "to": "handlers_integrationhandler_getgoogleauthurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_authorizeintegration", "to": "handlers_integrationhandler_getgithubauthurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_oauthcallback", "to": "handlers_integrationhandler_exchangeslackcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_oauthcallback", "to": "handlers_integrationhandler_exchangediscordcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_oauthcallback", "to": "handlers_integrationhandler_exchangenotioncode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_oauthcallback", "to": "handlers_integrationhandler_exchangegooglecode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_oauthcallback", "to": "handlers_integrationhandler_exchangegithubcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_syncintegration", "to": "handlers_integrationhandler_performsync", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_performsync", "to": "handlers_integrationhandler_syncslack", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_performsync", "to": "handlers_integrationhandler_syncdiscord", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_performsync", "to": "handlers_integrationhandler_syncnotion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_performsync", "to": "handlers_integrationhandler_syncgoogle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_integrationhandler_performsync", "to": "handlers_integrationhandler_syncgithub", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_health_go", "to": "handlers_health_healthcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_health_go", "to": "handlers_health_readinesscheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_health_go", "to": "handlers_health_livenesscheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_githubinstallationreposresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_githubappinstallationdetails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_githubinstallationtokenresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_githubbackuprequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_githubbackupresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_getgithubappstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_getgithubappinstallurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_githubappinstallcallback", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_getgithubapprepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_getgithubbackups", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_backupgithubrepositories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_getgithubrequestuserid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_getusergithubinstallation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_resolvegithubbackuptoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_resolvecentralizedgithubbackuptoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_getgithubappaccesstokenforuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_upsertgithubbackuprecord", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_normalizegithubrepofullname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_buildgithubbackuppath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_getgithubbackuproot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_getgithubbackuptimeout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_backupgithubrepositorymirror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_calculatedirectorysize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_fetchgithubinstallationrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_fetchgithubrepobyfullname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_isgithubappinstallenabled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_hasgithubappcredentials", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_getgithubappslug", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_creategithubinstallationaccesstoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_fetchgithubappinstallationdetails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_creategithubappjwt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_loadgithubappprivatekey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_redirecttogithubintegrationpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_backup_go", "to": "handlers_github_backup_truncatestring", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubappstatus", "to": "handlers_github_backup_getgithubrequestuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubappstatus", "to": "handlers_github_backup_getgithubappslug", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubappstatus", "to": "handlers_github_backup_isgithubappinstallenabled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubappstatus", "to": "handlers_github_backup_hasgithubappcredentials", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubappstatus", "to": "handlers_github_backup_getusergithubinstallation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubappstatus", "to": "handlers_control_service_auth_getcontrolservicesessionrecord", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_getgithubappstatus", "to": "handlers_control_service_auth_fetchcontrolservicegithubappinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_getgithubappinstallurl", "to": "handlers_github_backup_getgithubrequestuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubappinstallurl", "to": "handlers_github_backup_isgithubappinstallenabled", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubappinstallurl", "to": "handlers_github_backup_getgithubappslug", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubappinstallurl", "to": "handlers_control_service_auth_generaterandomstring", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_getgithubappinstallurl", "to": "handlers_control_service_auth_getcontrolservicesessionrecord", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_getgithubappinstallurl", "to": "handlers_control_service_auth_buildgithubappinstallcallbackurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_getgithubappinstallurl", "to": "handlers_control_service_auth_fetchcontrolservicegithubappinstallurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_githubappinstallcallback", "to": "handlers_github_backup_redirecttogithubintegrationpage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_githubappinstallcallback", "to": "handlers_github_backup_hasgithubappcredentials", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_githubappinstallcallback", "to": "handlers_github_backup_fetchgithubappinstallationdetails", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_githubappinstallcallback", "to": "handlers_github_backup_getgithubappslug", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_githubappinstallcallback", "to": "handlers_control_service_auth_getcontrolservicesessionrecord", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_githubappinstallcallback", "to": "handlers_control_service_auth_verifycontrolservicegithubinstallation", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_githubappinstallcallback", "to": "handlers_control_service_auth_fetchcontrolservicegithubappinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_githubappinstallcallback", "to": "handlers_github_app_auth_test_testgithubappinstallcallbackrejectsinaccessibleinstallationviacontrolservice", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_getgithubapprepos", "to": "handlers_github_backup_getgithubrequestuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubapprepos", "to": "handlers_github_backup_getusergithubinstallation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubapprepos", "to": "handlers_github_backup_creategithubinstallationaccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubapprepos", "to": "handlers_github_backup_fetchgithubinstallationrepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubapprepos", "to": "handlers_control_service_auth_getcontrolservicesessionrecord", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_getgithubapprepos", "to": "handlers_control_service_auth_fetchcontrolservicegithubapprepos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_getgithubbackups", "to": "handlers_github_backup_getgithubrequestuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubbackups", "to": "handlers_github_backup_getgithubbackuproot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_backupgithubrepositories", "to": "handlers_github_backup_getgithubrequestuserid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_backupgithubrepositories", "to": "handlers_github_backup_resolvegithubbackuptoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_backupgithubrepositories", "to": "handlers_github_backup_getgithubbackuproot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_backupgithubrepositories", "to": "handlers_github_backup_fetchgithubinstallationrepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_backupgithubrepositories", "to": "handlers_github_backup_normalizegithubrepofullname", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_backupgithubrepositories", "to": "handlers_github_backup_fetchgithubrepobyfullname", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_backupgithubrepositories", "to": "handlers_github_backup_buildgithubbackuppath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_backupgithubrepositories", "to": "handlers_github_backup_getgithubbackuptimeout", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_backupgithubrepositories", "to": "handlers_github_backup_backupgithubrepositorymirror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_backupgithubrepositories", "to": "handlers_github_backup_upsertgithubbackuprecord", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getusergithubinstallation", "to": "handlers_github_backup_resolvecentralizedgithubbackuptoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getusergithubinstallation", "to": "handlers_github_backup_getgithubappaccesstokenforuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_resolvegithubbackuptoken", "to": "handlers_github_backup_resolvecentralizedgithubbackuptoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_resolvegithubbackuptoken", "to": "handlers_github_backup_getgithubappaccesstokenforuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_resolvegithubbackuptoken", "to": "handlers_control_service_auth_getcontrolservicesessionrecord", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_resolvecentralizedgithubbackuptoken", "to": "handlers_control_service_auth_fetchcontrolservicegithubuseraccesstoken", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_resolvecentralizedgithubbackuptoken", "to": "handlers_control_service_auth_fetchcontrolservicegithubinstallationaccesstoken", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_resolvecentralizedgithubbackuptoken", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_getgithubappaccesstokenforuser", "to": "handlers_github_backup_creategithubinstallationaccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_getgithubappaccesstokenforuser", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_buildgithubbackuppath", "to": "handlers_github_backup_getgithubbackuproot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_backupgithubrepositorymirror", "to": "handlers_github_backup_calculatedirectorysize", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_fetchgithubinstallationrepos", "to": "handlers_github_backup_truncatestring", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_fetchgithubrepobyfullname", "to": "handlers_github_backup_truncatestring", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_fetchgithubrepobyfullname", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_isgithubappinstallenabled", "to": "handlers_github_backup_getgithubappslug", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_hasgithubappcredentials", "to": "handlers_github_backup_creategithubinstallationaccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_hasgithubappcredentials", "to": "handlers_github_backup_fetchgithubappinstallationdetails", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_creategithubinstallationaccesstoken", "to": "handlers_github_backup_creategithubappjwt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_creategithubinstallationaccesstoken", "to": "handlers_github_backup_truncatestring", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_creategithubinstallationaccesstoken", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_fetchgithubappinstallationdetails", "to": "handlers_github_backup_creategithubappjwt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_fetchgithubappinstallationdetails", "to": "handlers_github_backup_truncatestring", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_fetchgithubappinstallationdetails", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_creategithubappjwt", "to": "handlers_github_backup_loadgithubappprivatekey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_backup_creategithubappjwt", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_loadgithubappprivatekey", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_backup_truncatestring", "to": "handlers_control_service_auth_parsecontrolserviceerror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_youtube_go", "to": "handlers_youtubesearchrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_go", "to": "handlers_youtubevideodetailsrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_go", "to": "handlers_youtubechannelvideosrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_go", "to": "handlers_youtube_searchyoutube", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_go", "to": "handlers_youtube_getyoutubevideodetails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_go", "to": "handlers_youtubechannelurlrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_go", "to": "handlers_youtube_getyoutubechannelvideosfromurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_go", "to": "handlers_youtube_getyoutubechannelvideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_go", "to": "handlers_youtube_getyoutubetrending", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_go", "to": "handlers_youtube_getpredefinedchannelvideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_youtube_go", "to": "handlers_youtube_youtubesearchtest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_calendar_go", "to": "handlers_calendarhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_calendar_go", "to": "handlers_calendar_newcalendarhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_calendar_go", "to": "handlers_calendareventrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_calendarhandler", "to": "handlers_calendarhandler_getevents", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_calendarhandler", "to": "handlers_calendarhandler_getevent", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_calendarhandler", "to": "handlers_calendarhandler_createevent", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_calendarhandler", "to": "handlers_calendarhandler_updateevent", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_calendarhandler", "to": "handlers_calendarhandler_deleteevent", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_calendarhandler", "to": "handlers_calendarhandler_getupcomingevents", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_calendarhandler", "to": "handlers_calendarhandler_gettodayevents", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_calendarhandler", "to": "handlers_calendarhandler_getdeadlines", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_calendarhandler", "to": "handlers_calendarhandler_toggleeventcompletion", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_social_go", "to": "handlers_socialhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_social_go", "to": "handlers_social_newsocialhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_socialhandler", "to": "handlers_socialhandler_getprofile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_socialhandler", "to": "handlers_socialhandler_updateprofile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_socialhandler", "to": "handlers_socialhandler_followuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_socialhandler", "to": "handlers_socialhandler_getfollowers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_socialhandler", "to": "handlers_socialhandler_getfollowing", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_socialhandler", "to": "handlers_socialhandler_searchusers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updateinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updatestatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updaterequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_init", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_getcurrentversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_checkforupdates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_installupdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_getupdateprogress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_updateprogresswebsocket", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_checkforupdateswithdocker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_getlatestgithubrelease", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_getlateststablerelease", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_checkforupdateswithdockerregistry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_getimageid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_pullimage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_isnewerversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_performupdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_updatewithdockercompose", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_downloadupdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_progresswriter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_verifychecksum", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_extractandinstall", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_extractfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_backupuserdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_applyupdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_restartapplication", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_broadcastprogress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_getupdatestatusstring", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_rollbackupdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_copyfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_updates_go", "to": "handlers_updates_copydirectory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updateinfo", "to": "stores_updatestore_installupdate", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_updates_getcurrentversion", "to": "handlers_updates_checkforupdates", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_checkforupdates", "to": "handlers_updates_checkforupdateswithdocker", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_installupdate", "to": "handlers_updates_performupdate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_checkforupdateswithdocker", "to": "handlers_updates_getlatestgithubrelease", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_checkforupdateswithdocker", "to": "handlers_updates_checkforupdateswithdockerregistry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_checkforupdateswithdocker", "to": "handlers_updates_isnewerversion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_getlatestgithubrelease", "to": "handlers_updates_getlateststablerelease", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_performupdate", "to": "handlers_updates_backupuserdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_performupdate", "to": "handlers_updates_updatewithdockercompose", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_performupdate", "to": "handlers_updates_rollbackupdate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_performupdate", "to": "handlers_updates_restartapplication", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_downloadupdate", "to": "middleware_requestbody_close", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_progresswriter", "to": "handlers_progresswriter_write", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_verifychecksum", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_updates_extractandinstall", "to": "handlers_updates_extractfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_backupuserdata", "to": "handlers_updates_copyfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_backupuserdata", "to": "handlers_updates_copydirectory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_broadcastprogress", "to": "handlers_updates_getupdatestatusstring", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_rollbackupdate", "to": "handlers_updates_copyfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_rollbackupdate", "to": "handlers_updates_copydirectory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_updates_copyfile", "to": "handlers_updates_copydirectory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_update_settings_go", "to": "handlers_updatesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_update_settings_go", "to": "handlers_update_settings_getupdatesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_update_settings_go", "to": "handlers_update_settings_updateupdatesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_update_settings_go", "to": "handlers_update_settings_gettestupdatesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_update_settings_go", "to": "handlers_update_settings_getupdatesettingsforapi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_update_settings_go", "to": "handlers_update_settings_getdefaultupdatesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_update_settings_getupdatesettings", "to": "handlers_update_settings_updateupdatesettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_update_settings_gettestupdatesettings", "to": "handlers_update_settings_getdefaultupdatesettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_update_settings_getupdatesettingsforapi", "to": "handlers_update_settings_getdefaultupdatesettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_app_auth_test_go", "to": "handlers_github_app_auth_test_setupgithubauthtestdb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_app_auth_test_go", "to": "handlers_github_app_auth_test_withcontrolservicebaseurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_app_auth_test_go", "to": "handlers_github_app_auth_test_testgithubloginredirectstocontrolservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_app_auth_test_go", "to": "handlers_github_app_auth_test_testhandleoauthcallbackstorescontrollersessionandredirects", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_app_auth_test_go", "to": "handlers_github_app_auth_test_testgetgithubreposusescontrolserviceandpersistsrefreshedtoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_github_app_auth_test_go", "to": "handlers_github_app_auth_test_testgithubappinstallcallbackrejectsinaccessibleinstallationviacontrolservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_app_auth_test_setupgithubauthtestdb", "to": "handlers_github_app_auth_test_testhandleoauthcallbackstorescontrollersessionandredirects", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_app_auth_test_setupgithubauthtestdb", "to": "handlers_github_app_auth_test_testgetgithubreposusescontrolserviceandpersistsrefreshedtoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_app_auth_test_setupgithubauthtestdb", "to": "handlers_github_app_auth_test_testgithubappinstallcallbackrejectsinaccessibleinstallationviacontrolservice", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_app_auth_test_withcontrolservicebaseurl", "to": "handlers_github_app_auth_test_testgithubloginredirectstocontrolservice", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_app_auth_test_withcontrolservicebaseurl", "to": "handlers_github_app_auth_test_testhandleoauthcallbackstorescontrollersessionandredirects", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_app_auth_test_withcontrolservicebaseurl", "to": "handlers_github_app_auth_test_testgetgithubreposusescontrolserviceandpersistsrefreshedtoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_app_auth_test_withcontrolservicebaseurl", "to": "handlers_github_app_auth_test_testgithubappinstallcallbackrejectsinaccessibleinstallationviacontrolservice", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_github_app_auth_test_testhandleoauthcallbackstorescontrollersessionandredirects", "to": "utils_errors_notfound", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_app_auth_test_testhandleoauthcallbackstorescontrollersessionandredirects", "to": "handlers_control_service_auth_handleoauthcallback", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_app_auth_test_testhandleoauthcallbackstorescontrollersessionandredirects", "to": "utils_encryption_decrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_app_auth_test_testgetgithubreposusescontrolserviceandpersistsrefreshedtoken", "to": "utils_encryption_encrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_app_auth_test_testgetgithubreposusescontrolserviceandpersistsrefreshedtoken", "to": "utils_errors_notfound", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_app_auth_test_testgetgithubreposusescontrolserviceandpersistsrefreshedtoken", "to": "utils_encryption_decrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_app_auth_test_testgithubappinstallcallbackrejectsinaccessibleinstallationviacontrolservice", "to": "utils_encryption_encrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_github_app_auth_test_testgithubappinstallcallbackrejectsinaccessibleinstallationviacontrolservice", "to": "utils_errors_notfound", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_controlservicetokenvalidationresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_controlserviceerrorresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_controlservicegithubappinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_controlserviceinstallationverification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_controlserviceaccesstokenpayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_storecontrolserviceauthflowstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_clearcontrolserviceauthflowstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_getcontrolservicefrontendredirectfromcookie", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_buildcontrolservicecallbackurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_buildgithubappinstallcallbackurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_buildcontrolservicegithubstarturl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_controlserviceclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_parsecontrolserviceerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_validatecontrolservicetoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_upsertcontrolservicesession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_getcontrolservicesessionrecord", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_getcontrolservicetokenforuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_persistcontrolservicetoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_performcontrolservicerequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_fetchcontrolservicegithubrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_fetchcontrolservicegithubappinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_fetchcontrolservicegithubappinstallurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_verifycontrolservicegithubinstallation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_fetchcontrolservicegithubapprepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_fetchcontrolservicegithubuseraccesstoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_fetchcontrolservicegithubinstallationaccesstoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_handleoauthcallback", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_control_service_auth_go", "to": "handlers_control_service_auth_generaterandomstring", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_clearcontrolserviceauthflowstate", "to": "handlers_control_service_auth_handleoauthcallback", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_getcontrolservicefrontendredirectfromcookie", "to": "handlers_control_service_auth_handleoauthcallback", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_buildcontrolservicecallbackurl", "to": "handlers_control_service_auth_buildcontrolservicegithubstarturl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_buildcontrolservicegithubstarturl", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_control_service_auth_controlserviceclient", "to": "handlers_control_service_auth_validatecontrolservicetoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_controlserviceclient", "to": "handlers_control_service_auth_performcontrolservicerequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_parsecontrolserviceerror", "to": "handlers_control_service_auth_validatecontrolservicetoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_parsecontrolserviceerror", "to": "handlers_control_service_auth_performcontrolservicerequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_validatecontrolservicetoken", "to": "handlers_control_service_auth_handleoauthcallback", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_validatecontrolservicetoken", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_control_service_auth_upsertcontrolservicesession", "to": "handlers_control_service_auth_handleoauthcallback", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_upsertcontrolservicesession", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_control_service_auth_upsertcontrolservicesession", "to": "utils_encryption_encrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_control_service_auth_getcontrolservicesessionrecord", "to": "handlers_control_service_auth_getcontrolservicetokenforuser", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_getcontrolservicetokenforuser", "to": "handlers_control_service_auth_performcontrolservicerequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_getcontrolservicetokenforuser", "to": "utils_encryption_decrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_control_service_auth_getcontrolservicetokenforuser", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_control_service_auth_persistcontrolservicetoken", "to": "handlers_control_service_auth_performcontrolservicerequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_persistcontrolservicetoken", "to": "utils_encryption_encrypt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_control_service_auth_performcontrolservicerequest", "to": "handlers_control_service_auth_fetchcontrolservicegithubrepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_performcontrolservicerequest", "to": "handlers_control_service_auth_fetchcontrolservicegithubappinfo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_performcontrolservicerequest", "to": "handlers_control_service_auth_fetchcontrolservicegithubappinstallurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_performcontrolservicerequest", "to": "handlers_control_service_auth_verifycontrolservicegithubinstallation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_performcontrolservicerequest", "to": "handlers_control_service_auth_fetchcontrolservicegithubapprepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_performcontrolservicerequest", "to": "handlers_control_service_auth_fetchcontrolservicegithubuseraccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_performcontrolservicerequest", "to": "handlers_control_service_auth_fetchcontrolservicegithubinstallationaccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_control_service_auth_fetchcontrolservicegithubappinstallurl", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_control_service_auth_verifycontrolservicegithubinstallation", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_control_service_auth_fetchcontrolservicegithubuseraccesstoken", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_control_service_auth_fetchcontrolservicegithubinstallationaccesstoken", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_control_service_auth_handleoauthcallback", "to": "handlers_auth_generatejwt", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_control_service_auth_generaterandomstring", "to": "middleware_requestbody_read", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_time_entry_go", "to": "handlers_timeentryhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_time_entry_go", "to": "handlers_time_entry_newtimeentryhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_time_entry_go", "to": "handlers_createtimeentryrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_time_entry_go", "to": "handlers_updatetimeentryrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_timeentryhandler", "to": "handlers_timeentryhandler_gettimeentries", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_timeentryhandler", "to": "handlers_timeentryhandler_gettimeentry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_timeentryhandler", "to": "handlers_timeentryhandler_createtimeentry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_timeentryhandler", "to": "handlers_timeentryhandler_updatetimeentry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_timeentryhandler", "to": "handlers_timeentryhandler_stoptimeentry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_timeentryhandler", "to": "handlers_timeentryhandler_deletetimeentry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_timeentryhandler", "to": "handlers_timeentryhandler_gettimestats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_admin_go", "to": "handlers_admin_adminmiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_admin_go", "to": "handlers_admin_admingetalllearningpaths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_admin_go", "to": "handlers_admin_adminreviewlearningpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_admin_go", "to": "handlers_admin_admingetusers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_admin_go", "to": "handlers_admin_admincreateuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_admin_go", "to": "handlers_admin_adminupdateuserrole", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_admin_go", "to": "handlers_admin_admingetstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_admin_go", "to": "handlers_admin_admindeletelearningpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_recommendations_go", "to": "handlers_airecommendationhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_recommendations_go", "to": "handlers_ai_recommendations_newairecommendationhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_airecommendationhandler", "to": "handlers_airecommendationhandler_getrecommendations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_airecommendationhandler", "to": "handlers_airecommendationhandler_getrecommendationstats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_airecommendationhandler", "to": "handlers_airecommendationhandler_updatepreferences", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_airecommendationhandler", "to": "handlers_airecommendationhandler_recordinteraction", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_airecommendationhandler", "to": "handlers_airecommendationhandler_getrecommendationhistory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_airecommendationhandler", "to": "handlers_airecommendationhandler_deleterecommendation", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_airecommendationhandler", "to": "handlers_airecommendationhandler_getinsights", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_settings_go", "to": "handlers_aisettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_settings_go", "to": "handlers_ai_settings_getaisettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_settings_go", "to": "handlers_ai_settings_updateaisettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_settings_go", "to": "handlers_ai_settings_testaiconnection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_settings_go", "to": "handlers_ai_settings_getdefaultaisettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_settings_go", "to": "handlers_ai_settings_maskapikey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_settings_go", "to": "handlers_ai_settings_ismasked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_ai_settings_go", "to": "handlers_ai_settings_getboolenv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_aisettings", "to": "pages_settings_handleupdateaisettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_ai_settings_getaisettings", "to": "handlers_ai_settings_getdefaultaisettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_ai_settings_updateaisettings", "to": "handlers_ai_settings_ismasked", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_video_bookmark_go", "to": "handlers_videobookmarkhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_video_bookmark_go", "to": "handlers_video_bookmark_newvideobookmarkhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_videobookmarkhandler", "to": "handlers_videobookmarkhandler_savevideobookmark", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_videobookmarkhandler", "to": "handlers_videobookmarkhandler_getuserbookmarks", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_videobookmarkhandler", "to": "handlers_videobookmarkhandler_getbookmarkbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_videobookmarkhandler", "to": "handlers_videobookmarkhandler_updatebookmark", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_videobookmarkhandler", "to": "handlers_videobookmarkhandler_deletebookmark", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_videobookmarkhandler", "to": "handlers_videobookmarkhandler_togglewatched", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_videobookmarkhandler", "to": "handlers_videobookmarkhandler_togglefavorite", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_videobookmarkhandler", "to": "handlers_videobookmarkhandler_searchbookmarks", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_videobookmarkhandler", "to": "handlers_videobookmarkhandler_getbookmarkstats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_loginrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_registerrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_authresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_passwordresetrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_passwordresetconfirm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_passwordresetcode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_claims", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_getdurationenv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_generatejwt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_generatejwtwithgithubaccesstoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_validatejwt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_getauthenticateduserfromheader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_hasapikeypermission", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_requiredapikeypermission", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_validateapikeyforrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_authmiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_checkusers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_register", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_login", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_getcurrentuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_updateprofile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_changepassword", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_logout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_generateresetcode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_sendresetemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_requestpasswordreset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_confirmpasswordreset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_getdashboardstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_formattimeago", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_githubrelease", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_getlatestversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_getcurrentversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_isrunningindocker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_getdockerimageversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_getcontainerid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_readversionfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_getgitversion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_auth_go", "to": "handlers_auth_getversionhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_getdurationenv", "to": "handlers_auth_generatejwt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_generatejwt", "to": "handlers_auth_generatejwtwithgithubaccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_generatejwt", "to": "handlers_auth_register", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_generatejwt", "to": "handlers_auth_login", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_validatejwt", "to": "handlers_auth_getauthenticateduserfromheader", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_validatejwt", "to": "handlers_auth_authmiddleware", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_validatejwt", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_getauthenticateduserfromheader", "to": "handlers_auth_register", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_getauthenticateduserfromheader", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_hasapikeypermission", "to": "handlers_auth_validateapikeyforrequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_requiredapikeypermission", "to": "handlers_auth_validateapikeyforrequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_validateapikeyforrequest", "to": "handlers_auth_authmiddleware", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_validateapikeyforrequest", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_register", "to": "pages_login_handlesubmit", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_login", "to": "pages_login_handlesubmit", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_updateprofile", "to": "pages_settings_handleupdateprofile", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_changepassword", "to": "pages_settings_handlechangepassword", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_logout", "to": "ui_userprofiledropdown_handlelogout", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_generateresetcode", "to": "handlers_auth_requestpasswordreset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_generateresetcode", "to": "middleware_requestbody_read", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_sendresetemail", "to": "handlers_auth_requestpasswordreset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_sendresetemail", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_getdashboardstats", "to": "handlers_auth_formattimeago", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_getlatestversion", "to": "handlers_auth_getversionhandler", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_getlatestversion", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_getcurrentversion", "to": "handlers_auth_isrunningindocker", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_getcurrentversion", "to": "handlers_auth_getdockerimageversion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_getcurrentversion", "to": "handlers_auth_readversionfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_getcurrentversion", "to": "handlers_auth_getgitversion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_getcurrentversion", "to": "handlers_auth_getversionhandler", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_isrunningindocker", "to": "handlers_auth_getversionhandler", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_getdockerimageversion", "to": "handlers_auth_getcontainerid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_getcontainerid", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_readversionfile", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "handlers_auth_getgitversion", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_handlers_search_go", "to": "handlers_bravesearchresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_go", "to": "handlers_bravenewsresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_go", "to": "handlers_bravesearchresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_go", "to": "handlers_search_searchweb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_go", "to": "handlers_search_searchnews", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_search_go", "to": "handlers_search_getsearchsuggestions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_audit_go", "to": "handlers_audit_getauditlogs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_audit_go", "to": "handlers_audit_getauditlogstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_audit_go", "to": "handlers_audit_getauditlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_audit_go", "to": "handlers_audit_exportauditlogs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_audit_go", "to": "handlers_audit_cleanupauditlogs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_audit_go", "to": "handlers_audit_generatecsv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_audit_exportauditlogs", "to": "handlers_audit_generatecsv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_marketplace_go", "to": "handlers_marketplacehandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_marketplace_go", "to": "handlers_marketplace_newmarketplacehandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_getmarketplaceitems", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_getmarketplaceitem", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_createmarketplaceitem", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_updatemarketplaceitem", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_deletemarketplaceitem", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_getmymarketplaceitems", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_createmarketplacereview", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_getmarketplacereviews", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_createcontentshare", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_getcontentshare", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_getmycontentshares", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_deletecontentshare", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_marketplacehandler", "to": "handlers_marketplacehandler_getmarketplacestats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_course_go", "to": "handlers_course_getcourses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_course_go", "to": "handlers_course_getcourse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_course_go", "to": "handlers_course_getcoursebyslug", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_course_go", "to": "handlers_course_getfeaturedcourses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_course_go", "to": "handlers_course_getztmcourses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_course_go", "to": "handlers_course_getcoursecategories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_course_go", "to": "handlers_course_searchcourses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_handlers_course_go", "to": "handlers_course_getlearningpathcourses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_migrations_migrate_go", "to": "migrations_migrate_runmigrations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_migrations_migrate_go", "to": "migrations_migrate_getmigrationstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_migrations_migrate_go", "to": "migrations_migrate_createmigration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_validator_go", "to": "utils_validator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_validator_go", "to": "utils_validator_newvalidator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_validator", "to": "utils_validator_required", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_validator", "to": "utils_validator_minlength", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_validator", "to": "utils_validator_maxlength", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_validator", "to": "utils_validator_email", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_validator", "to": "utils_validator_url", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_validator", "to": "utils_validator_match", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_validator", "to": "utils_validator_in", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_validator", "to": "utils_validator_haserrors", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_validator", "to": "utils_validator_geterrors", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_validator", "to": "utils_validator_geterror", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_validator", "to": "utils_validator_clear", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_validator", "to": "utils_validator_validatepassword", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_security_go", "to": "utils_security_generatesecuresecret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_security_go", "to": "utils_security_generatesecurekey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_security_go", "to": "utils_security_getorcreatejwtsecret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_security_go", "to": "utils_security_getorcreateencryptionkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_security_go", "to": "utils_security_readsecretfromfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_security_go", "to": "utils_security_savesecrettofile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_security_go", "to": "utils_security_validatesecretstrength", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_security_go", "to": "utils_security_calculateentropy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_security_go", "to": "utils_security_log2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_security_go", "to": "utils_security_lognatural", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_security_go", "to": "utils_security_rotatesecret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_security_go", "to": "utils_security_getsecretfilepath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_security_generatesecuresecret", "to": "utils_security_getorcreatejwtsecret", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_security_generatesecuresecret", "to": "utils_security_rotatesecret", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_security_generatesecuresecret", "to": "middleware_requestbody_read", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "utils_security_generatesecurekey", "to": "utils_security_getorcreateencryptionkey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_security_generatesecurekey", "to": "utils_security_rotatesecret", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_security_generatesecurekey", "to": "middleware_requestbody_read", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "utils_security_getorcreatejwtsecret", "to": "utils_security_readsecretfromfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_security_getorcreatejwtsecret", "to": "utils_security_savesecrettofile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_security_getorcreateencryptionkey", "to": "utils_security_readsecretfromfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_security_getorcreateencryptionkey", "to": "utils_security_savesecrettofile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_security_savesecrettofile", "to": "utils_security_rotatesecret", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_security_validatesecretstrength", "to": "utils_security_calculateentropy", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_security_calculateentropy", "to": "utils_security_log2", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_security_log2", "to": "utils_security_lognatural", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_encryption_go", "to": "utils_encryption_getencryptionkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_encryption_go", "to": "utils_encryption_encrypt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_encryption_go", "to": "utils_encryption_decrypt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_encryption_go", "to": "utils_encryption_encryptfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_encryption_go", "to": "utils_encryption_decryptfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_encryption_go", "to": "utils_encryption_isencrypted", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_encryption_go", "to": "utils_encryption_generateencryptionkey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_encryption_getencryptionkey", "to": "utils_encryption_encrypt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_encryption_getencryptionkey", "to": "utils_encryption_decrypt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_encryption_getencryptionkey", "to": "utils_encryption_encryptfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_encryption_getencryptionkey", "to": "utils_encryption_decryptfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_encryption_generateencryptionkey", "to": "middleware_requestbody_read", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_utils_graceful_shutdown_go", "to": "utils_gracefulshutdown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_graceful_shutdown_go", "to": "utils_graceful_shutdown_newgracefulshutdown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_gracefulshutdown", "to": "utils_gracefulshutdown_addcleanupfunc", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_gracefulshutdown", "to": "utils_gracefulshutdown_wait", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errorcode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_apperror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_newapperror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_newapperrorwithdetails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_wraperror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_isapperror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_badrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_badrequestwithdetails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_unauthorized", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_forbidden", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_notfound", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_conflict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_validationerr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_internalerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_internalerrorwithdetails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_ratelimitexceeded", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_errors_go", "to": "utils_errors_serviceunavailable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_apperror", "to": "utils_apperror_error", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_apperror_error", "to": "utils_errors_wraperror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_errors_newapperror", "to": "utils_errors_badrequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_errors_newapperror", "to": "utils_errors_unauthorized", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_errors_newapperror", "to": "utils_errors_forbidden", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_errors_newapperror", "to": "utils_errors_notfound", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_errors_newapperror", "to": "utils_errors_conflict", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_errors_newapperror", "to": "utils_errors_validationerr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_errors_newapperror", "to": "utils_errors_internalerror", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_errors_newapperror", "to": "utils_errors_ratelimitexceeded", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_errors_newapperror", "to": "utils_errors_serviceunavailable", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_errors_newapperrorwithdetails", "to": "utils_errors_badrequestwithdetails", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_errors_newapperrorwithdetails", "to": "utils_errors_internalerrorwithdetails", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_response_go", "to": "utils_apiresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_response_go", "to": "utils_paginatedresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_response_go", "to": "utils_paginationinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_response_go", "to": "utils_response_success", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_response_go", "to": "utils_response_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_response_go", "to": "utils_response_validationerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_response_go", "to": "utils_response_paginated", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_response_go", "to": "utils_response_calculatepagination", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_response_go", "to": "utils_response_created", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_response_go", "to": "utils_response_updated", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_utils_response_go", "to": "utils_response_deleted", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_db_go", "to": "db_db", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_db_go", "to": "db_db_newdb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "db_db", "to": "db_db_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "db_db", "to": "db_db_begintx", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "db_db", "to": "db_db_commit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "db_db", "to": "db_db_rollback", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "db_db", "to": "db_db_getpool", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "db_db_newdb", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "db_db_begintx", "to": "sqlc_db_new", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_internal_db_sqlc_tasks_sql_go", "to": "sqlc_addtasktagparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_tasks_sql_go", "to": "sqlc_createtaskparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_tasks_sql_go", "to": "sqlc_deletetaskparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_tasks_sql_go", "to": "sqlc_gettaskbyidparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_tasks_sql_go", "to": "sqlc_gettasksbystatusparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_tasks_sql_go", "to": "sqlc_gettasksbytagparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_tasks_sql_go", "to": "sqlc_gettasksbyuserparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_tasks_sql_go", "to": "sqlc_removetasktagparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_tasks_sql_go", "to": "sqlc_searchtasksparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_tasks_sql_go", "to": "sqlc_updatetaskparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_addtasktag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_createtask", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_deletetask", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_gettaskbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_gettasksbystatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_gettasksbytag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_gettasksbyuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_removetasktag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_searchtasks", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_updatetask", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "backend_internal_db_sqlc_db_go", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_withtx", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_addbookmarktag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_createbookmark", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_deletebookmark", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_getbookmarkbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_getbookmarksbytag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_getbookmarksbyuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_removebookmarktag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_searchbookmarks", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_updatebookmark", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_createuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_deleteuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_getuserbyemail", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_getuserbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_listusers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_updatelastlogin", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_queries", "to": "sqlc_queries_updateuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_querier_go", "to": "sqlc_querier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_db_go", "to": "sqlc_dbtx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_db_go", "to": "sqlc_db_new", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sqlc_db_new", "to": "src_main_select_sync_folder", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_upload_files_now", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_quick_share_files", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_collect_files", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_upload_single_file", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_quick_share_paths", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_copy_links_to_clipboard", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_validate_token_permissions", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_truncate", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_open_setup_window", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_open_main_window", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_show_summary_dialog", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_show_error_dialog", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sqlc_db_new", "to": "src_main_boxed_error", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_internal_db_sqlc_bookmarks_sql_go", "to": "sqlc_addbookmarktagparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_bookmarks_sql_go", "to": "sqlc_createbookmarkparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_bookmarks_sql_go", "to": "sqlc_deletebookmarkparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_bookmarks_sql_go", "to": "sqlc_getbookmarkbyidparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_bookmarks_sql_go", "to": "sqlc_getbookmarksbytagparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_bookmarks_sql_go", "to": "sqlc_getbookmarksbyuserparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_bookmarks_sql_go", "to": "sqlc_removebookmarktagparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_bookmarks_sql_go", "to": "sqlc_searchbookmarksparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_bookmarks_sql_go", "to": "sqlc_updatebookmarkparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_models_go", "to": "sqlc_auditlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_models_go", "to": "sqlc_bookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_models_go", "to": "sqlc_bookmarktag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_models_go", "to": "sqlc_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_models_go", "to": "sqlc_filetag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_models_go", "to": "sqlc_note", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_models_go", "to": "sqlc_notetag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_models_go", "to": "sqlc_tag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_models_go", "to": "sqlc_task", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_models_go", "to": "sqlc_tasktag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_models_go", "to": "sqlc_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_users_sql_go", "to": "sqlc_createuserparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_users_sql_go", "to": "sqlc_createuserrow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_users_sql_go", "to": "sqlc_getuserbyemailrow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_users_sql_go", "to": "sqlc_getuserbyidrow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_users_sql_go", "to": "sqlc_listusersparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_users_sql_go", "to": "sqlc_listusersrow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_users_sql_go", "to": "sqlc_updateuserparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_internal_db_sqlc_users_sql_go", "to": "sqlc_updateuserrow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_cache_go", "to": "middleware_cacheconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_cache_go", "to": "middleware_cache_defaultcacheconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_cache_go", "to": "middleware_cache_cachemiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_cache_go", "to": "middleware_cache_shouldskipcache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_cache_go", "to": "middleware_cache_generatecachekey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_cache_go", "to": "middleware_cachedresponsewriter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_cache_go", "to": "middleware_cache_invalidatecache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_cache_go", "to": "middleware_cache_cacheinvalidationmiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_cache_cachemiddleware", "to": "middleware_cache_shouldskipcache", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_cache_cachemiddleware", "to": "middleware_cache_generatecachekey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_cachedresponsewriter", "to": "middleware_cachedresponsewriter_write", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_cache_invalidatecache", "to": "middleware_cache_cacheinvalidationmiddleware", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_rate_limiter_go", "to": "middleware_ratelimiter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_rate_limiter_go", "to": "middleware_clientinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_rate_limiter_go", "to": "middleware_rate_limiter_newratelimiter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_rate_limiter_go", "to": "middleware_ratelimitconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_rate_limiter_go", "to": "middleware_rate_limiter_defaultratelimitconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_rate_limiter_go", "to": "middleware_rate_limiter_ratelimit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_rate_limiter_go", "to": "middleware_rate_limiter_authratelimit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_rate_limiter_go", "to": "middleware_rate_limiter_generalratelimit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_ratelimiter", "to": "middleware_ratelimiter_middleware", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_ratelimiter", "to": "middleware_ratelimiter_cleanup", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_rate_limiter_newratelimiter", "to": "middleware_ratelimiter_cleanup", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_rate_limiter_newratelimiter", "to": "middleware_rate_limiter_ratelimit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_ratelimiter_middleware", "to": "middleware_rate_limiter_authratelimit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_ratelimiter_middleware", "to": "middleware_rate_limiter_generalratelimit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_ratelimiter_cleanup", "to": "lib_api_apiclient_delete", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_middleware_session_go", "to": "middleware_sessiondata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_session_go", "to": "middleware_sessionstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_session_go", "to": "middleware_redissessionstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_session_go", "to": "middleware_session_newsessionstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_session_go", "to": "middleware_session_initsessionstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_session_go", "to": "middleware_session_sessionmiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_session_go", "to": "middleware_session_getsessionfromcontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_session_go", "to": "middleware_session_getuseridfromsession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_session_go", "to": "middleware_session_getuseremailfromsession", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_session_go", "to": "middleware_session_generatesessionid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_session_go", "to": "middleware_session_getsessionstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_session_go", "to": "middleware_session_cleanupsessionsonshutdown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_redissessionstore", "to": "middleware_redissessionstore_createsession", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_redissessionstore", "to": "middleware_redissessionstore_getsession", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_redissessionstore", "to": "middleware_redissessionstore_updatesession", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_redissessionstore", "to": "middleware_redissessionstore_deletesession", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_redissessionstore", "to": "middleware_redissessionstore_cleanupexpiredsessions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_session_newsessionstore", "to": "middleware_session_initsessionstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_redissessionstore_createsession", "to": "middleware_session_sessionmiddleware", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_redissessionstore_getsession", "to": "middleware_session_sessionmiddleware", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_redissessionstore_getsession", "to": "middleware_session_getsessionfromcontext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_redissessionstore_deletesession", "to": "lib_api_apiclient_delete", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "middleware_redissessionstore_cleanupexpiredsessions", "to": "middleware_session_initsessionstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_redissessionstore_cleanupexpiredsessions", "to": "middleware_session_cleanupsessionsonshutdown", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_redissessionstore_cleanupexpiredsessions", "to": "lib_api_apiclient_delete", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "middleware_session_sessionmiddleware", "to": "middleware_session_generatesessionid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_session_getsessionfromcontext", "to": "middleware_session_getuseridfromsession", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_session_getsessionfromcontext", "to": "middleware_session_getuseremailfromsession", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_session_getuseridfromsession", "to": "middleware_audit_auditmiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "middleware_session_getuseremailfromsession", "to": "middleware_audit_auditmiddleware", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_middleware_demo_go", "to": "middleware_demo_demomodemiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_demo_go", "to": "middleware_demo_isdemomode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_performance_go", "to": "middleware_performance_performancemiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_performance_go", "to": "middleware_performance_requestidmiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_performance_go", "to": "middleware_performance_generaterequestid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_performance_go", "to": "middleware_performance_slowquerymiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_performance_requestidmiddleware", "to": "middleware_performance_generaterequestid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_performance_generaterequestid", "to": "middleware_logger_requestlogger", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_middleware_logger_go", "to": "middleware_loggerconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_logger_go", "to": "middleware_logger_logger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_logger_go", "to": "middleware_logger_requestlogger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_logger_go", "to": "middleware_logger_logrequestbody", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_logger_go", "to": "middleware_logger_securitylogger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_logger_go", "to": "middleware_logger_logsecurityevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_logger_go", "to": "middleware_logger_performancelogger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_logger_go", "to": "middleware_logger_logperformanceevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_loggerconfig", "to": "middleware_loggerconfig_getlogger", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_loggerconfig_getlogger", "to": "middleware_logger_logger", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_loggerconfig_getlogger", "to": "middleware_logger_requestlogger", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_loggerconfig_getlogger", "to": "middleware_logger_logsecurityevent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_loggerconfig_getlogger", "to": "middleware_logger_logperformanceevent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_logger_requestlogger", "to": "middleware_logger_logrequestbody", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_logger_securitylogger", "to": "middleware_logger_logsecurityevent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_logger_performancelogger", "to": "middleware_logger_logperformanceevent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_input_validation_go", "to": "middleware_input_validation_inputvalidationmiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_input_validation_go", "to": "middleware_input_validation_validaterequestbody", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_input_validation_go", "to": "middleware_requestbody", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_input_validation_go", "to": "middleware_input_validation_containsmaliciouscontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_input_validation_go", "to": "middleware_input_validation_sanitizeinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_input_validation_go", "to": "middleware_input_validation_validateemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_input_validation_go", "to": "middleware_input_validation_validatepassword", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_input_validation_go", "to": "middleware_input_validation_validateusername", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_input_validation_go", "to": "middleware_input_validation_validateid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_input_validation_go", "to": "middleware_input_validation_validatepagination", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_input_validation_inputvalidationmiddleware", "to": "middleware_input_validation_containsmaliciouscontent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_input_validation_inputvalidationmiddleware", "to": "middleware_input_validation_sanitizeinput", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_input_validation_validaterequestbody", "to": "middleware_input_validation_containsmaliciouscontent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_requestbody", "to": "middleware_requestbody_read", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_requestbody", "to": "middleware_requestbody_close", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_cors_go", "to": "middleware_cors_corsmiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_error_handler_go", "to": "middleware_errorresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_error_handler_go", "to": "middleware_error_handler_errorhandlermiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_error_handler_go", "to": "middleware_error_handler_notfoundhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_error_handler_go", "to": "middleware_error_handler_methodnotallowedhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_memory_cache_go", "to": "middleware_memorycacheitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_memory_cache_go", "to": "middleware_memorycache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_memory_cache_go", "to": "middleware_memory_cache_newmemorycache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_memory_cache_go", "to": "middleware_memorycacheconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_memory_cache_go", "to": "middleware_memory_cache_defaultmemorycacheconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_memory_cache_go", "to": "middleware_memory_cache_memorycachemiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_memory_cache_go", "to": "middleware_memory_cache_generatememorycachekey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_memory_cache_go", "to": "middleware_memorycachedresponsewriter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_memory_cache_go", "to": "middleware_memory_cache_invalidatememorycache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_memory_cache_go", "to": "middleware_memory_cache_memorycacheinvalidationmiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memorycache", "to": "middleware_memorycache_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memorycache", "to": "middleware_memorycache_set", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memorycache", "to": "middleware_memorycache_delete", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memorycache", "to": "middleware_memorycache_deletepattern", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memorycache", "to": "middleware_memorycache_cleanup", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memory_cache_newmemorycache", "to": "middleware_memorycache_cleanup", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memorycache_get", "to": "middleware_memory_cache_memorycachemiddleware", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memorycache_set", "to": "middleware_memory_cache_memorycachemiddleware", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memorycache_delete", "to": "middleware_memorycache_deletepattern", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memorycache_delete", "to": "middleware_memorycache_cleanup", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memorycache_delete", "to": "lib_api_apiclient_delete", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "middleware_memorycache_deletepattern", "to": "middleware_memory_cache_invalidatememorycache", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memory_cache_memorycachemiddleware", "to": "middleware_memory_cache_generatememorycachekey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memorycachedresponsewriter", "to": "middleware_memorycachedresponsewriter_write", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_memorycachedresponsewriter_write", "to": "src_main_save_config", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "middleware_memory_cache_invalidatememorycache", "to": "middleware_memory_cache_memorycacheinvalidationmiddleware", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_getmetrics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_metricsmiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_incrementuserstotal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_incrementbookmarkstotal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_decrementbookmarkstotal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_incrementtaskstotal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_decrementtaskstotal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_incrementfilestotal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_decrementfilestotal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_incrementnotestotal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_decrementnotestotal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_setdatabaseconnections", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_resetmetrics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_copymap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_metrics_go", "to": "middleware_metrics_copydurationmap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_metrics_getmetrics", "to": "middleware_metrics_copymap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_metrics_getmetrics", "to": "middleware_metrics_copydurationmap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_auditmiddleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_logsecurityevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_loguseraction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_shouldskipaudit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_getuintfrominterface", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_getuseremail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_getactionfrommethodandpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_getresourcefrompath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_getresourceidfrompath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_generatedescription", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_generatedetails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_sanitizejson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_getsessionid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_getcountryfromip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_getdevicefromuseragent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_getplatformfromuseragent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_getbrowserfromuseragent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_assessrisk", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_assesssecurityrisk", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_assessactionrisk", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_issuspiciousactivity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_getfailurereason", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_middleware_audit_go", "to": "middleware_audit_saveauditlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_shouldskipaudit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_getactionfrommethodandpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_getresourcefrompath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_getresourceidfrompath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_generatedescription", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_generatedetails", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_getsessionid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_getcountryfromip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_getdevicefromuseragent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_getplatformfromuseragent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_getbrowserfromuseragent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_assessrisk", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_getfailurereason", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_auditmiddleware", "to": "middleware_audit_saveauditlog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_logsecurityevent", "to": "middleware_audit_assesssecurityrisk", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_logsecurityevent", "to": "middleware_audit_issuspiciousactivity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_logsecurityevent", "to": "middleware_audit_saveauditlog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_loguseraction", "to": "middleware_audit_assessactionrisk", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_loguseraction", "to": "middleware_audit_saveauditlog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_audit_generatedetails", "to": "middleware_audit_sanitizejson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_build_rs", "to": "src_tauri_build_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_desktopconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_desktopconfigview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_uploadsummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_tokenvalidationresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_uploadedfileresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_fileshareresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_runtimedesktopconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_get_desktop_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_connect_instance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_select_sync_folder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_open_sync_folder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_upload_files_now", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_sync_folder_now", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_quick_share_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_validate_integration_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_normalize_instance_url", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_normalize_api_key", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_normalize_sync_folder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_normalize_optional_sync_folder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_config_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_load_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_save_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_load_runtime_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_collect_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_upload_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_upload_single_file", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_quick_share_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_create_file_share", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_copy_links_to_clipboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_validate_token_permissions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_truncate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_close_window_if_exists", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_open_setup_window", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_open_main_window", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_setup_menu", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_show_summary_dialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_show_error_dialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_handle_menu_event", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_boxed_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_path_to_string", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_tauri_src_main_rs", "to": "src_main_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_get_desktop_config", "to": "src_main_load_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_get_desktop_config", "to": "src_main_normalize_instance_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_get_desktop_config", "to": "src_main_normalize_sync_folder", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_get_desktop_config", "to": "src_main_normalize_api_key", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_connect_instance", "to": "src_main_normalize_instance_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_connect_instance", "to": "src_main_normalize_api_key", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_connect_instance", "to": "src_main_normalize_optional_sync_folder", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_connect_instance", "to": "src_main_save_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_connect_instance", "to": "src_main_open_main_window", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_connect_instance", "to": "src_main_close_window_if_exists", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_select_sync_folder", "to": "src_main_path_to_string", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_open_sync_folder", "to": "src_main_load_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_open_sync_folder", "to": "src_main_normalize_sync_folder", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_open_sync_folder", "to": "src_main_handle_menu_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_upload_files_now", "to": "src_main_load_runtime_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_upload_files_now", "to": "src_main_upload_paths", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_upload_files_now", "to": "src_main_handle_menu_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_sync_folder_now", "to": "src_main_load_runtime_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_sync_folder_now", "to": "src_main_collect_files", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_sync_folder_now", "to": "src_main_upload_paths", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_sync_folder_now", "to": "src_main_handle_menu_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_quick_share_files", "to": "src_main_load_runtime_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_quick_share_files", "to": "src_main_quick_share_paths", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_quick_share_files", "to": "src_main_handle_menu_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_validate_integration_token", "to": "src_main_normalize_instance_url", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_validate_integration_token", "to": "src_main_normalize_api_key", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_validate_integration_token", "to": "src_main_validate_token_permissions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_normalize_instance_url", "to": "src_main_load_runtime_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_normalize_api_key", "to": "src_main_load_runtime_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_normalize_sync_folder", "to": "src_main_path_to_string", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_normalize_sync_folder", "to": "src_main_normalize_optional_sync_folder", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_normalize_sync_folder", "to": "src_main_load_runtime_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_config_path", "to": "src_main_load_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_config_path", "to": "src_main_save_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_load_config", "to": "src_main_load_runtime_config", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_load_config", "to": "src_main_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_upload_paths", "to": "src_main_upload_single_file", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_upload_single_file", "to": "src_main_quick_share_paths", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_quick_share_paths", "to": "src_main_create_file_share", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_quick_share_paths", "to": "src_main_copy_links_to_clipboard", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_close_window_if_exists", "to": "src_main_open_main_window", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_open_setup_window", "to": "src_main_handle_menu_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_open_setup_window", "to": "src_main_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_open_main_window", "to": "src_main_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_setup_menu", "to": "src_main_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_show_summary_dialog", "to": "src_main_handle_menu_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_show_error_dialog", "to": "src_main_handle_menu_event", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_handle_menu_event", "to": "src_main_main", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_main_js", "to": "src_main_setstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_main_js", "to": "src_main_seterror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_main_js", "to": "src_main_setpermissionstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_main_js", "to": "src_main_setbusy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_main_js", "to": "src_main_isvalidurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_main_js", "to": "src_main_formatsummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "desktop_src_main_js", "to": "src_main_hydrate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_setstatus", "to": "src_main_hydrate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_seterror", "to": "src_main_hydrate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_seterror", "to": "components_twofactorauth_fetchtotpstatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "components_twofactorauth_setuptotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "components_twofactorauth_verifytotpcode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "components_twofactorauth_enabletotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "components_twofactorauth_disabletotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "components_twofactorauth_verifybackupcode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "components_twofactorauth_regeneratebackupcodes", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "ui_errorboundary_reset", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "search_browsersearch_handlesearch", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "pages_login_handlesubmit", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "pages_login_togglemode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "pages_youtube_handlesearch", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "pages_analytics_fetchanalytics", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "stores_updatestore_checkforupdates", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_seterror", "to": "stores_updatestore_installupdate", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_main_setpermissionstatus", "to": "src_main_hydrate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_setbusy", "to": "src_main_hydrate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_poster_tsx", "to": "src_poster_poster", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_root_tsx", "to": "src_root_remotionroot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_traileraudio_tsx", "to": "src_traileraudio_traileraudio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_scenes_metricsactivationscene_tsx", "to": "scenes_metricsactivationscene_s", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_scenes_searchaiscene_tsx", "to": "scenes_searchaiscene_s", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_scenes_endcardscene_tsx", "to": "scenes_endcardscene_endcardscene", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_scenes_analyticsscene_tsx", "to": "scenes_analyticsscene_s", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_scenes_dashboardflybyscene_tsx", "to": "scenes_dashboardflybyscene_s", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_scenes_timetrackingscene_tsx", "to": "scenes_timetrackingscene_s", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_scenes_portrait_portraitsceneshell_tsx", "to": "portrait_portraitsceneshell_portraitsceneshell", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_components_demosurface_tsx", "to": "components_demosurface_resolvemotion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_lib_trailer_config_tsx", "to": "lib_trailer_config_usetrailerconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_lib_motion_ts", "to": "lib_motion_springin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_lib_motion_ts", "to": "lib_motion_easedprogress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_lib_motion_ts", "to": "lib_motion_fadeslideupstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_lib_format_ts", "to": "lib_format_formatmetricvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_lib_format_ts", "to": "lib_format_formatstopwatch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_lib_format_ts", "to": "lib_format_formatanalyticshours", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "video_src_lib_format_ts", "to": "lib_format_clamp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_r", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_n", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_fe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_k", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_p", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ut", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_j", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ee", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ft", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_lt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_qt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_bt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_kt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_t", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_vt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ct", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_st", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ae", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_zt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_at", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ke", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ye", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_gt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_et", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ht", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ve", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_xt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_jt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_yt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_s", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ne", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_tt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_er", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_tr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_de", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_re", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_rr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_nr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_xe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_sr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ze", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_h", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_it", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_pt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_se", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_or", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_cr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_dr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ur", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_fr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_gr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_hr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_rt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_xr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_vr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_wr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_ue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_qr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_jr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "static_assets_index_0vyyz8r_js", "to": "assets_index_0vyyz8r_children", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_r", "to": "assets_index_0vyyz8r_n", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_r", "to": "assets_index_0vyyz8r_ge", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_r", "to": "assets_index_0vyyz8r_ur", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_r", "to": "assets_index_0vyyz8r_fr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_r", "to": "assets_index_0vyyz8r_hr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_r", "to": "assets_index_0vyyz8r_rt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_r", "to": "assets_index_0vyyz8r_s", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_r", "to": "assets_index_0vyyz8r_k", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_r", "to": "assets_index_0vyyz8r_wr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_r", "to": "assets_index_0vyyz8r_p", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_r", "to": "assets_index_0vyyz8r_xe", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_r", "to": "assets_index_0vyyz8r_ot", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ot", "to": "assets_index_0vyyz8r_yt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ot", "to": "assets_index_0vyyz8r_ur", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_fe", "to": "assets_index_0vyyz8r_ye", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_fe", "to": "assets_index_0vyyz8r_nr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_k", "to": "assets_index_0vyyz8r_ur", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_k", "to": "assets_index_0vyyz8r_fr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_k", "to": "assets_index_0vyyz8r_vt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_k", "to": "assets_index_0vyyz8r_qr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_k", "to": "assets_index_0vyyz8r_xr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_p", "to": "assets_index_0vyyz8r_at", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_p", "to": "assets_index_0vyyz8r_ae", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_p", "to": "assets_index_0vyyz8r_jt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_p", "to": "assets_index_0vyyz8r_h", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_p", "to": "assets_index_0vyyz8r_ge", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ut", "to": "assets_index_0vyyz8r_at", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ut", "to": "assets_index_0vyyz8r_ae", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ut", "to": "assets_index_0vyyz8r_lt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_j", "to": "assets_index_0vyyz8r_at", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_j", "to": "assets_index_0vyyz8r_ae", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_j", "to": "assets_index_0vyyz8r_ct", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_j", "to": "assets_index_0vyyz8r_er", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_j", "to": "assets_index_0vyyz8r_de", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_j", "to": "assets_index_0vyyz8r_re", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_j", "to": "assets_index_0vyyz8r_wr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ee", "to": "assets_index_0vyyz8r_ae", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ee", "to": "assets_index_0vyyz8r_ke", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ee", "to": "assets_index_0vyyz8r_s", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ft", "to": "assets_index_0vyyz8r_wr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_lt", "to": "assets_index_0vyyz8r_vt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_lt", "to": "assets_index_0vyyz8r_qr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_lt", "to": "assets_index_0vyyz8r_xr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_qt", "to": "assets_index_0vyyz8r_vr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_bt", "to": "assets_index_0vyyz8r_ye", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_bt", "to": "assets_index_0vyyz8r_ct", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_bt", "to": "assets_index_0vyyz8r_rt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_kt", "to": "assets_index_0vyyz8r_ye", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_kt", "to": "assets_index_0vyyz8r_zt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_t", "to": "assets_index_0vyyz8r_jt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ct", "to": "assets_index_0vyyz8r_zt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ct", "to": "assets_index_0vyyz8r_ye", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ct", "to": "assets_index_0vyyz8r_xt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ct", "to": "assets_index_0vyyz8r_ue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_st", "to": "assets_index_0vyyz8r_ae", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_st", "to": "assets_index_0vyyz8r_ye", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ae", "to": "assets_index_0vyyz8r_zt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ae", "to": "assets_index_0vyyz8r_ke", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ke", "to": "assets_index_0vyyz8r_ve", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ke", "to": "assets_index_0vyyz8r_ye", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ke", "to": "assets_index_0vyyz8r_et", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ke", "to": "assets_index_0vyyz8r_ht", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ye", "to": "assets_index_0vyyz8r_gt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_gt", "to": "assets_index_0vyyz8r_et", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_yt", "to": "assets_index_0vyyz8r_de", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_s", "to": "assets_index_0vyyz8r_tt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_s", "to": "assets_index_0vyyz8r_jr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_s", "to": "assets_index_0vyyz8r_children", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_tt", "to": "assets_index_0vyyz8r_gr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_er", "to": "assets_index_0vyyz8r_ue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_rr", "to": "assets_index_0vyyz8r_ge", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_h", "to": "assets_index_0vyyz8r_ge", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ge", "to": "assets_index_0vyyz8r_se", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ge", "to": "assets_index_0vyyz8r_it", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ge", "to": "assets_index_0vyyz8r_pt", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ar", "to": "assets_index_0vyyz8r_ur", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_cr", "to": "assets_index_0vyyz8r_dr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_ur", "to": "assets_index_0vyyz8r_gr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_0vyyz8r_vr", "to": "assets_index_0vyyz8r_wr", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_vite_config_ts", "to": "frontend_vite_config_generatebundle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_vite_config_ts", "to": "frontend_vite_config_onwarn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_index_tsx", "to": "frontend_src_app_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "src_app_initializedarkmode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_protectedroute_tsx", "to": "components_protectedroute_protectedroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_protectedroute_protectedroute", "to": "lib_auth_useauth", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_components_aiprovidericon_tsx", "to": "components_aiprovidericon_aiprovidericon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_authenticationwarning_tsx", "to": "components_authenticationwarning_handlelogin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_authenticationwarning_tsx", "to": "components_authenticationwarning_handleregister", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_authenticationwarning_tsx", "to": "components_authenticationwarning_handledemomode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_authenticationwarning_handledemomode", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_components_twofactorauth_tsx", "to": "components_twofactorauth_getauthheaders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_twofactorauth_tsx", "to": "components_twofactorauth_fetchtotpstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_twofactorauth_tsx", "to": "components_twofactorauth_setuptotp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_twofactorauth_tsx", "to": "components_twofactorauth_verifytotpcode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_twofactorauth_tsx", "to": "components_twofactorauth_enabletotp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_twofactorauth_tsx", "to": "components_twofactorauth_disabletotp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_twofactorauth_tsx", "to": "components_twofactorauth_verifybackupcode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_twofactorauth_tsx", "to": "components_twofactorauth_regeneratebackupcodes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_twofactorauth_getauthheaders", "to": "components_twofactorauth_fetchtotpstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_twofactorauth_getauthheaders", "to": "components_twofactorauth_setuptotp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_twofactorauth_getauthheaders", "to": "components_twofactorauth_verifytotpcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_twofactorauth_getauthheaders", "to": "components_twofactorauth_enabletotp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_twofactorauth_getauthheaders", "to": "components_twofactorauth_disabletotp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_twofactorauth_getauthheaders", "to": "components_twofactorauth_verifybackupcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_twofactorauth_getauthheaders", "to": "components_twofactorauth_regeneratebackupcodes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_twofactorauth_fetchtotpstatus", "to": "components_twofactorauth_enabletotp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_twofactorauth_fetchtotpstatus", "to": "components_twofactorauth_disabletotp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_input_tsx", "to": "ui_input_input", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_textarea_tsx", "to": "ui_textarea_textarea", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_membermodal_tsx", "to": "ui_membermodal_resetform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_membermodal_tsx", "to": "ui_membermodal_handlesubmit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_responsivegrid_tsx", "to": "ui_responsivegrid_responsivegrid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_responsivegrid_tsx", "to": "ui_responsivegrid_masonrygrid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_notemodal_tsx", "to": "ui_notemodal_availabletags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_notemodal_tsx", "to": "ui_notemodal_handlesubmit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_timepicker_tsx", "to": "ui_timepicker_getcurrenthour", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_timepicker_tsx", "to": "ui_timepicker_getcurrentminute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_timepicker_tsx", "to": "ui_timepicker_handletimeselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_timepicker_tsx", "to": "ui_timepicker_handletogglemodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_timepicker_tsx", "to": "ui_timepicker_formattime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_badge_tsx", "to": "ui_badge_badge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_learningpathmodal_tsx", "to": "ui_learningpathmodal_resetform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_learningpathmodal_tsx", "to": "ui_learningpathmodal_handlesubmit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_learningpathmodal_tsx", "to": "ui_learningpathmodal_handleinputchange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_learningpathmodal_resetform", "to": "ui_learningpathmodal_handlesubmit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_enhancedcard_tsx", "to": "ui_enhancedcard_handleclose", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorswitcherdropdown_tsx", "to": "ui_colorswitcherdropdown_applyscheme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_colorswitcherdropdown_applyscheme", "to": "layout_layout_hextohsl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_components_ui_videouploadmodal_tsx", "to": "ui_videouploadmodal_extractvideoid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_videouploadmodal_tsx", "to": "ui_videouploadmodal_handlesubmit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_videouploadmodal_extractvideoid", "to": "ui_videouploadmodal_handlesubmit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_searchfilters_tsx", "to": "ui_searchfilters_handlesearchchange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_searchfilters_tsx", "to": "ui_searchfilters_handlefilterchange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_searchfilters_tsx", "to": "ui_searchfilters_clearallfilters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_searchfilters_tsx", "to": "ui_searchfilters_activefiltercount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_datepicker_tsx", "to": "ui_datepicker_handledatechange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_datepicker_tsx", "to": "ui_datepicker_handletimechange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileuploadmodal_tsx", "to": "ui_fileuploadmodal_handlekeydown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileuploadmodal_tsx", "to": "ui_fileuploadmodal_handlefileselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileuploadmodal_tsx", "to": "ui_fileuploadmodal_handledrag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileuploadmodal_tsx", "to": "ui_fileuploadmodal_handledrop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileuploadmodal_tsx", "to": "ui_fileuploadmodal_addtag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileuploadmodal_tsx", "to": "ui_fileuploadmodal_removetag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileuploadmodal_tsx", "to": "ui_fileuploadmodal_addassociation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileuploadmodal_tsx", "to": "ui_fileuploadmodal_removeassociation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileuploadmodal_tsx", "to": "ui_fileuploadmodal_handleupload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileuploadmodal_tsx", "to": "ui_fileuploadmodal_getfileicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileuploadmodal_tsx", "to": "ui_fileuploadmodal_isvalidurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileuploadmodal_tsx", "to": "ui_fileuploadmodal_canupload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_fileuploadmodal_isvalidurl", "to": "ui_fileuploadmodal_canupload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_githubactivity_tsx", "to": "ui_githubactivity_setemptydata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_githubactivity_tsx", "to": "ui_githubactivity_setdemodata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_githubactivity_tsx", "to": "ui_githubactivity_handlegithubactivitydata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_githubactivity_tsx", "to": "ui_githubactivity_getmonthlabels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_githubactivity_tsx", "to": "ui_githubactivity_getactivitycolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_githubactivity_tsx", "to": "ui_githubactivity_formatcontributioncount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_githubactivity_tsx", "to": "ui_githubactivity_geteventicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_taskmodal_tsx", "to": "ui_taskmodal_resetform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_taskmodal_tsx", "to": "ui_taskmodal_handlesubmit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_button_tsx", "to": "ui_button_button", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_button_button", "to": "lib_haptics_usehaptics", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_components_ui_confirmmodal_tsx", "to": "ui_confirmmodal_geticon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_confirmmodal_tsx", "to": "ui_confirmmodal_getconfirmbuttonvariant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_tabs_simple_tsx", "to": "ui_tabs_simple_tabs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_tabs_simple_tsx", "to": "ui_tabs_simple_tabslist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_tabs_simple_tsx", "to": "ui_tabs_simple_tabstrigger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_tabs_simple_tsx", "to": "ui_tabs_simple_tabscontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_tagpicker_tsx", "to": "ui_tagpicker_addtag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_tagpicker_tsx", "to": "ui_tagpicker_removetag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_tagpicker_tsx", "to": "ui_tagpicker_handleinputkeydown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_tagpicker_tsx", "to": "ui_tagpicker_handleinputchange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_tagpicker_tsx", "to": "ui_tagpicker_filteredtags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_tagpicker_addtag", "to": "ui_tagpicker_handleinputkeydown", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_tagpicker_removetag", "to": "ui_tagpicker_handleinputkeydown", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_tagpicker_handleinputkeydown", "to": "ui_tagpicker_filteredtags", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_uploadmodal_tsx", "to": "ui_uploadmodal_handledragover", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_uploadmodal_tsx", "to": "ui_uploadmodal_handledragleave", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_uploadmodal_tsx", "to": "ui_uploadmodal_handledrop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_uploadmodal_tsx", "to": "ui_uploadmodal_handlefileselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_uploadmodal_tsx", "to": "ui_uploadmodal_handleupload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_uploadmodal_tsx", "to": "ui_uploadmodal_removefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_uploadmodal_handleupload", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_components_ui_card_tsx", "to": "ui_card_card", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_card_tsx", "to": "ui_card_cardheader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_card_tsx", "to": "ui_card_cardtitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_card_tsx", "to": "ui_card_carddescription", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_card_tsx", "to": "ui_card_cardcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_card_tsx", "to": "ui_card_cardfooter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_updatechecker_tsx", "to": "ui_updatechecker_installupdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_updatechecker_tsx", "to": "ui_updatechecker_cancelupdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_updatechecker_tsx", "to": "ui_updatechecker_getstatusicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_updatechecker_tsx", "to": "ui_updatechecker_getstatustext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_viewnotemodal_tsx", "to": "ui_viewnotemodal_getnotekind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_viewnotemodal_tsx", "to": "ui_viewnotemodal_updatenotecheckbox", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_errorboundary_tsx", "to": "ui_errorboundary_reset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_learningpathpreviewmodal_tsx", "to": "ui_learningpathpreviewmodal_handleenroll", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_learningpathpreviewmodal_tsx", "to": "ui_learningpathpreviewmodal_getresourceicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_learningpathpreviewmodal_tsx", "to": "ui_learningpathpreviewmodal_getdifficultycolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_learningpathpreviewmodal_tsx", "to": "ui_learningpathpreviewmodal_isenrolling", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_switch_tsx", "to": "ui_switch_switch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorpicker_tsx", "to": "ui_colorpicker_hextohsl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorpicker_tsx", "to": "ui_colorpicker_hsltohex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorpicker_tsx", "to": "ui_colorpicker_updatecolorfromhue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorpicker_tsx", "to": "ui_colorpicker_handlehexchange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorpicker_tsx", "to": "ui_colorpicker_handlealphachange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorpicker_tsx", "to": "ui_colorpicker_handleslidermousedown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorpicker_tsx", "to": "ui_colorpicker_updatehuefromposition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorpicker_tsx", "to": "ui_colorpicker_handlemousemove", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorpicker_tsx", "to": "ui_colorpicker_handlemouseup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorpicker_tsx", "to": "ui_colorpicker_handlesavedcolorclick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorpicker_tsx", "to": "ui_colorpicker_handledeletecolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_colorpicker_tsx", "to": "ui_colorpicker_handleaddnewcolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_colorpicker_hextohsl", "to": "ui_colorpicker_updatecolorfromhue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_colorpicker_hextohsl", "to": "ui_colorpicker_handlehexchange", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_colorpicker_hextohsl", "to": "ui_colorpicker_handlesavedcolorclick", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_colorpicker_hsltohex", "to": "ui_colorpicker_updatecolorfromhue", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_colorpicker_updatecolorfromhue", "to": "ui_colorpicker_updatehuefromposition", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_colorpicker_handleslidermousedown", "to": "ui_colorpicker_updatehuefromposition", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_colorpicker_updatehuefromposition", "to": "ui_colorpicker_handlemousemove", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_videopreviewmodal_tsx", "to": "ui_videopreviewmodal_getembedurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_generateid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_formatfilesize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_getfileextension", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_getfiletypecolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_validatefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_handlefileselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_simulateupload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_handledragover", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_handledragleave", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_handledrop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_handleurlimport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_removefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_fileupload_tsx", "to": "ui_fileupload_handleclose", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_fileupload_generateid", "to": "ui_fileupload_handleurlimport", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_fileupload_getfileextension", "to": "ui_fileupload_handleurlimport", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_fileupload_handlefileselect", "to": "ui_fileupload_handledrop", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_fileupload_simulateupload", "to": "ui_fileupload_handleurlimport", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_toast_tsx", "to": "ui_toast_handleclose", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_toast_tsx", "to": "ui_toast_geticon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_toast_tsx", "to": "ui_toast_gettoneclasses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_toast_tsx", "to": "ui_toast_geticonsurface", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_editbookmarkmodal_tsx", "to": "ui_editbookmarkmodal_availabletags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_editbookmarkmodal_tsx", "to": "ui_editbookmarkmodal_updateform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_editbookmarkmodal_tsx", "to": "ui_editbookmarkmodal_handlesubmit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_editbookmarkmodal_handlesubmit", "to": "pages_bookmarks_editbookmark", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_components_ui_bookmarkmodal_tsx", "to": "ui_bookmarkmodal_availabletags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_bookmarkmodal_tsx", "to": "ui_bookmarkmodal_handlesubmit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_filepreviewmodal_tsx", "to": "ui_filepreviewmodal_getfileicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_label_tsx", "to": "ui_label_label", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_virtuallist_tsx", "to": "ui_virtuallist_virtuallist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_virtuallist_tsx", "to": "ui_virtuallist_handlescroll", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_getdaysinmonth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_getfirstdayofmonth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_generatecalendardays", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_isdateinrange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_isdatestart", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_isdateend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_getdateclass", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_getcellclass", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_handledateclick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_handledatehover", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_handlepresetclick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_handleprevmonth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_handlenextmonth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_handletogglemodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_daterangepicker_tsx", "to": "ui_daterangepicker_formatdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_daterangepicker_getdaysinmonth", "to": "ui_daterangepicker_generatecalendardays", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_daterangepicker_getfirstdayofmonth", "to": "ui_daterangepicker_generatecalendardays", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_daterangepicker_isdateinrange", "to": "ui_daterangepicker_getdateclass", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_daterangepicker_isdateinrange", "to": "ui_daterangepicker_getcellclass", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_daterangepicker_isdatestart", "to": "ui_daterangepicker_getdateclass", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_daterangepicker_isdatestart", "to": "ui_daterangepicker_getcellclass", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_daterangepicker_isdateend", "to": "ui_daterangepicker_getdateclass", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_daterangepicker_isdateend", "to": "ui_daterangepicker_getcellclass", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_userprofiledropdown_tsx", "to": "ui_userprofiledropdown_loaddashboardstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_userprofiledropdown_tsx", "to": "ui_userprofiledropdown_handleprofileclick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_userprofiledropdown_tsx", "to": "ui_userprofiledropdown_handlesettingsclick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_userprofiledropdown_tsx", "to": "ui_userprofiledropdown_handlestatsclick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_userprofiledropdown_tsx", "to": "ui_userprofiledropdown_handlelogout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_userprofiledropdown_tsx", "to": "ui_userprofiledropdown_getinitials", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_select_simple_tsx", "to": "ui_select_simple_select", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_select_simple_tsx", "to": "ui_select_simple_selecttrigger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_select_simple_tsx", "to": "ui_select_simple_selectvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_select_simple_tsx", "to": "ui_select_simple_selectcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_select_simple_tsx", "to": "ui_select_simple_selectitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_activityfeed_tsx", "to": "ui_activityfeed_normalizeactivitytype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_activityfeed_tsx", "to": "ui_activityfeed_formattimestamp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_activityfeed_tsx", "to": "ui_activityfeed_getactivityicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_ui_activityfeed_tsx", "to": "ui_activityfeed_fetchactivities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_activityfeed_fetchactivities", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "ui_activityfeed_fetchactivities", "to": "lib_mockdata_getmockactivities", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_components_ui_exportimport_tsx", "to": "ui_exportimport_exportimport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_exportimport_exportimport", "to": "lib_export_import_importdata", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_components_search_browsersearch_tsx", "to": "search_browsersearch_isdemo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_search_browsersearch_tsx", "to": "search_browsersearch_handlesearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_search_browsersearch_tsx", "to": "search_browsersearch_handlekeydown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_search_browsersearch_tsx", "to": "search_browsersearch_handleinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_search_browsersearch_tsx", "to": "search_browsersearch_openresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_search_browsersearch_tsx", "to": "search_browsersearch_bookmarkresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_browsersearch_isdemo", "to": "search_browsersearch_handlesearch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_browsersearch_isdemo", "to": "search_browsersearch_bookmarkresult", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_browsersearch_isdemo", "to": "lib_demo_mode_isenvdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "search_browsersearch_handlesearch", "to": "search_browsersearch_handlekeydown", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_search_quicksearch_tsx", "to": "search_quicksearch_quicksearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_floatingai_tsx", "to": "layout_floatingai_handlesendmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_floatingai_tsx", "to": "layout_floatingai_handlekeypress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_floatingai_handlesendmessage", "to": "layout_floatingai_handlekeypress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_getworkspaceicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_getauthtoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_selectedworkspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_persistselectedworkspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_isactive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_handleworkspaceselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_resetcreateworkspaceform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_opencreateworkspacemodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_closecreateworkspacemodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_toggleworkspacedropdown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_normalizeworkspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_createdefaultworkspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_loadworkspaces", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_handlecreateworkspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_handleclickoutside", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_getworkspaceicon", "to": "layout_sidebar_normalizeworkspace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_getworkspaceicon", "to": "layout_sidebar_handlecreateworkspace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_getauthtoken", "to": "layout_sidebar_loadworkspaces", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_getauthtoken", "to": "layout_sidebar_handlecreateworkspace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_persistselectedworkspace", "to": "layout_sidebar_handleworkspaceselect", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_persistselectedworkspace", "to": "layout_sidebar_loadworkspaces", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_handleworkspaceselect", "to": "layout_sidebar_handlecreateworkspace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_resetcreateworkspaceform", "to": "layout_sidebar_opencreateworkspacemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_resetcreateworkspaceform", "to": "layout_sidebar_closecreateworkspacemodal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_resetcreateworkspaceform", "to": "layout_sidebar_handlecreateworkspace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_normalizeworkspace", "to": "layout_sidebar_createdefaultworkspace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_normalizeworkspace", "to": "layout_sidebar_handlecreateworkspace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_createdefaultworkspace", "to": "layout_sidebar_loadworkspaces", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_layout_tsx", "to": "layout_layout_hextohsl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_layout_tsx", "to": "layout_layout_togglechat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_layout_tsx", "to": "layout_layout_togglesidebar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_layout_tsx", "to": "layout_layout_closesidebar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_layout_tsx", "to": "layout_layout_ischatopen", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_layout_hextohsl", "to": "pages_colorswitcher_applyscheme", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "layout_layout_hextohsl", "to": "pages_colorswitcher_applycustomcolors", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "layout_layout_hextohsl", "to": "pages_settings_applycolorchange", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "layout_layout_togglechat", "to": "layout_layout_ischatopen", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_aichatpanel_tsx", "to": "layout_aichatpanel_handlesendmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_aichatpanel_tsx", "to": "layout_aichatpanel_handlekeypress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_aichatpanel_handlesendmessage", "to": "layout_aichatpanel_handlekeypress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "layout_header_header", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_header_header", "to": "lib_auth_useauth", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_components_notes_notecontentrenderer_tsx", "to": "notes_notecontentrenderer_escapehtml", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_notes_notecontentrenderer_tsx", "to": "notes_notecontentrenderer_normalizecodelanguage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_notes_notecontentrenderer_tsx", "to": "notes_notecontentrenderer_infercodelanguage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_notes_notecontentrenderer_tsx", "to": "notes_notecontentrenderer_parsetextblocks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_notes_notecontentrenderer_tsx", "to": "notes_notecontentrenderer_codeblock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "notes_notecontentrenderer_normalizecodelanguage", "to": "notes_notecontentrenderer_infercodelanguage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "notes_notecontentrenderer_normalizecodelanguage", "to": "notes_notecontentrenderer_codeblock", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_uselocalstorage_ts", "to": "hooks_uselocalstorage_uselocalstorage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_uselocalstorage_ts", "to": "hooks_uselocalstorage_usesessionstorage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_usedebounce_ts", "to": "hooks_usedebounce_usedebounce", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_usedebounce_ts", "to": "hooks_usedebounce_usedebouncedcallback", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_utils_filetypes_ts", "to": "utils_filetypes_getfiletypeconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_utils_filetypes_ts", "to": "utils_filetypes_formatfilesize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_utils_filetypes_ts", "to": "utils_filetypes_getfilecategorycolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_members_tsx", "to": "pages_members_gettoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_members_tsx", "to": "pages_members_torolelabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_members_tsx", "to": "pages_members_toinitials", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_members_tsx", "to": "pages_members_resolveworkspaceid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_members_tsx", "to": "pages_members_loadmembers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_members_tsx", "to": "pages_members_handleaddmember", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_members_tsx", "to": "pages_members_opendeletemodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_members_tsx", "to": "pages_members_handledeletemember", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_members_tsx", "to": "pages_members_onworkspacechanged", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_members_gettoken", "to": "pages_members_resolveworkspaceid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_members_gettoken", "to": "pages_members_loadmembers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_members_gettoken", "to": "pages_members_handleaddmember", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_members_gettoken", "to": "pages_members_handledeletemember", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_members_resolveworkspaceid", "to": "pages_members_loadmembers", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_members_loadmembers", "to": "pages_members_onworkspacechanged", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_calendar_tsx", "to": "pages_calendar_fetchcalendardata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_calendar_tsx", "to": "pages_calendar_createevent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_calendar_tsx", "to": "pages_calendar_toggleeventcompletion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_calendar_tsx", "to": "pages_calendar_getprioritycolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_calendar_tsx", "to": "pages_calendar_gettypecolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_calendar_tsx", "to": "pages_calendar_formatdatetime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_calendar_tsx", "to": "pages_calendar_formattime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_calendar_tsx", "to": "pages_calendar_openeventmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_calendar_tsx", "to": "pages_calendar_navigatemonth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_calendar_fetchcalendardata", "to": "pages_calendar_createevent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_calendar_fetchcalendardata", "to": "pages_calendar_toggleeventcompletion", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_calendar_fetchcalendardata", "to": "lib_mockdata_getmockcalendarevents", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_pages_removedstuff_tsx", "to": "pages_removedstuff_removedstuff", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_colorswitcher_tsx", "to": "pages_colorswitcher_getinitialcustomcolors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_colorswitcher_tsx", "to": "pages_colorswitcher_toggledarkmode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_colorswitcher_tsx", "to": "pages_colorswitcher_updateschemesfortheme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_colorswitcher_tsx", "to": "pages_colorswitcher_applyscheme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_colorswitcher_tsx", "to": "pages_colorswitcher_applycustomcolors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_colorswitcher_tsx", "to": "pages_colorswitcher_resetcolors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_colorswitcher_tsx", "to": "pages_colorswitcher_exportcolorscheme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_colorswitcher_tsx", "to": "pages_colorswitcher_importcolorscheme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_colorswitcher_tsx", "to": "pages_colorswitcher_savecustomscheme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_colorswitcher_toggledarkmode", "to": "pages_colorswitcher_updateschemesfortheme", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_colorswitcher_applyscheme", "to": "pages_colorswitcher_resetcolors", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_createemptystats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_formatbytes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_derivefiletype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_stats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_taskcompletionrate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_storagepercentage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_weeklyactivitytotal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_handlebookmarksubmit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_handlevideosubmit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_getfileicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_handledownloaddocument", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_handlepreviewdocument", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_handleeditdocument", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_handledeletedocument", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_paginateddocuments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_totalpages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_handlepagechange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_tsx", "to": "pages_dashboard_handlerowsperpagechange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_dashboard_stats", "to": "pages_dashboard_taskcompletionrate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_dashboard_stats", "to": "pages_dashboard_storagepercentage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_dashboard_stats", "to": "pages_dashboard_weeklyactivitytotal", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_dashboard_stats", "to": "pages_stats_storagepercentage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_dashboard_stats", "to": "pages_stats_taskcompletionrate", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_dashboard_totalpages", "to": "pages_dashboard_handlepagechange", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_tasks_tsx", "to": "pages_tasks_filteredtasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_tasks_tsx", "to": "pages_tasks_handleaddtask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_tasks_tsx", "to": "pages_tasks_handleedittask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_tasks_tsx", "to": "pages_tasks_toggletaskcomplete", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_tasks_tsx", "to": "pages_tasks_deletetask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_tasks_tsx", "to": "pages_tasks_edittask", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_tasks_tsx", "to": "pages_tasks_getprioritycolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_tasks_tsx", "to": "pages_tasks_taskstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_tasks_tsx", "to": "pages_tasks_hassearchorpriorityfilters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_aichat_tsx", "to": "pages_aichat_checkmobile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_aichat_tsx", "to": "pages_aichat_initializeaimodels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_aichat_tsx", "to": "pages_aichat_handlesendmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_aichat_tsx", "to": "pages_aichat_callaiapi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_aichat_tsx", "to": "pages_aichat_handleclickoutside", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_aichat_tsx", "to": "pages_aichat_startnewchat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_aichat_handlesendmessage", "to": "pages_aichat_callaiapi", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_learningpaths_tsx", "to": "pages_learningpaths_fetchdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_learningpaths_tsx", "to": "pages_learningpaths_handlesearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_learningpaths_tsx", "to": "pages_learningpaths_getdifficultycolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_learningpaths_tsx", "to": "pages_learningpaths_getcategoryicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_learningpaths_tsx", "to": "pages_learningpaths_getcategorycolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_learningpaths_tsx", "to": "pages_learningpaths_handleenroll", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_learningpaths_tsx", "to": "pages_learningpaths_openpreview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_learningpaths_tsx", "to": "pages_learningpaths_renderstars", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_learningpaths_fetchdata", "to": "pages_learningpaths_handlesearch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_learningpaths_fetchdata", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_learningpaths_fetchdata", "to": "lib_mockdata_getmocklearningpaths", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_learningpaths_handleenroll", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_pages_messages_tsx", "to": "pages_messages_messages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_messages_tsx", "to": "pages_messages_iscallactive", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_messages_tsx", "to": "pages_messages_stopvoicerecording", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_messages_tsx", "to": "pages_messages_if", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_messages_tsx", "to": "pages_messages_selectmentionoption", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_messages_tsx", "to": "pages_messages_availableaireferencemodels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_messages_tsx", "to": "pages_messages_teams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_messages_tsx", "to": "pages_messages_members", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_messages_messages", "to": "lib_haptics_usehaptics", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_pages_login_tsx", "to": "pages_login_getsafenextpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_login_tsx", "to": "pages_login_handlesubmit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_login_tsx", "to": "pages_login_handleinputchange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_login_tsx", "to": "pages_login_togglemode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_login_getsafenextpath", "to": "pages_login_handlesubmit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_getauthtoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_parserepopayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_fetchwithauth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_loadfiles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_loadgithubbackupworkspace", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_handleinstallgithubapp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_handlebackupselectedrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_filteredfiles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_alltags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_toggletag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_handlefileupload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_handlepreviewfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_handlecopylink", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_handlesharefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_handledownloadfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_deletefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_isreposelected", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_togglereposelection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_selectallrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_clearselectedrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_files_tsx", "to": "pages_files_formatsourcelabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_files_getauthtoken", "to": "pages_files_fetchwithauth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_files_getauthtoken", "to": "pages_files_loadgithubbackupworkspace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_files_parserepopayload", "to": "pages_files_loadgithubbackupworkspace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_files_fetchwithauth", "to": "pages_files_loadfiles", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_files_fetchwithauth", "to": "pages_files_loadgithubbackupworkspace", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_files_fetchwithauth", "to": "pages_files_handleinstallgithubapp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_files_fetchwithauth", "to": "pages_files_handlebackupselectedrepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_files_loadfiles", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_files_loadfiles", "to": "lib_mockdata_getmockdocuments", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_files_loadgithubbackupworkspace", "to": "pages_files_handlebackupselectedrepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_profile_tsx", "to": "pages_profile_profile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_profile_profile", "to": "lib_haptics_usehaptics", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_videocard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_filteredchannels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_extractvideoid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_getvideoinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_loadpredefinedvideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_loadsavedvideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_handlekeydown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_handletabchange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_handlesearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_handlekeypress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_handleinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_handlepreviewvideo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_handlesavevideo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_youtube_tsx", "to": "pages_youtube_isloadingpredefined", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_youtube_extractvideoid", "to": "pages_youtube_handlesearch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_youtube_getvideoinfo", "to": "pages_youtube_handlesearch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_youtube_getvideoinfo", "to": "lib_brave_search_getauthheaders", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_youtube_loadpredefinedvideos", "to": "pages_youtube_isloadingpredefined", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_youtube_loadpredefinedvideos", "to": "pages_youtube_handletabchange", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_youtube_loadpredefinedvideos", "to": "lib_brave_search_getauthheaders", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_youtube_loadpredefinedvideos", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_youtube_loadpredefinedvideos", "to": "lib_mockdata_getmockvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_youtube_loadsavedvideos", "to": "pages_youtube_handlesavevideo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_youtube_loadsavedvideos", "to": "lib_brave_search_getauthheaders", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_youtube_handlesearch", "to": "pages_youtube_handlekeypress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_youtube_handlesearch", "to": "lib_brave_search_getauthheaders", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_youtube_handlesavevideo", "to": "lib_brave_search_getauthheaders", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_normalizenoteid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_normalizenotedate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_getnotekind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_formatdisplaydate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_filterednotes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_alltags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_toggletag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_handleaddnote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_handleeditnote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_togglepin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_deletenote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_starteditnote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_viewnote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_copynotecontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_togglenoteexpansion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_exportnote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_updatenotecheckbox", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_notes_tsx", "to": "pages_notes_handleupdatenotecontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_notes_normalizenoteid", "to": "pages_notes_handleaddnote", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_notes_normalizenotedate", "to": "pages_notes_handleaddnote", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_notes_handleaddnote", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_notes_handleaddnote", "to": "lib_demo_mode_shoulduserealbackend", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_notes_handleeditnote", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_notes_handleeditnote", "to": "lib_demo_mode_shoulduserealbackend", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_notes_togglepin", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_notes_togglepin", "to": "lib_demo_mode_shoulduserealbackend", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_notes_deletenote", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "pages_notes_deletenote", "to": "lib_demo_mode_shoulduserealbackend", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_pages_sharetarget_tsx", "to": "pages_sharetarget_extractfirsturl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_sharetarget_tsx", "to": "pages_sharetarget_normalizeurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_sharetarget_tsx", "to": "pages_sharetarget_derivetitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_sharetarget_tsx", "to": "pages_sharetarget_isgenerictitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_sharetarget_tsx", "to": "pages_sharetarget_derivedescription", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_sharetarget_tsx", "to": "pages_sharetarget_lookslikeyoutube", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_sharetarget_tsx", "to": "pages_sharetarget_writependingshare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_sharetarget_tsx", "to": "pages_sharetarget_readpendingshare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_sharetarget_tsx", "to": "pages_sharetarget_clearpendingshare", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_sharetarget_tsx", "to": "pages_sharetarget_sharetarget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_activity_tsx", "to": "pages_activity_handlerefresh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_getbookmarkinitial", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_adaptbookmarkfromapi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_getfaviconurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_getscreenshoturl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_getalltags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_getallvideotags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_filteredbookmarks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_filteredvideobookmarks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_handleaddbookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_toggleimportant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_deletebookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_editbookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_handletagclick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_handlevideotagclick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_resetfilters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_resetvideofilters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_handleeditbookmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_handlevideosubmit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_bookmarks_tsx", "to": "pages_bookmarks_if", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_bookmarks_adaptbookmarkfromapi", "to": "pages_bookmarks_handleaddbookmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_bookmarks_adaptbookmarkfromapi", "to": "pages_bookmarks_handleeditbookmark", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_browserextensionsettings_tsx", "to": "pages_browserextensionsettings_if", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_browserextensionsettings_tsx", "to": "pages_browserextensionsettings_apikeys", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_search_tsx", "to": "pages_search_search", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_weeklytotal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_selectedcount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_filteredrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_uniquelanguages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_getauthtoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_resetgithubdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_processlanguages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_generaterecentactivity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_updatestatsfromrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_extractrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_fetchgithubappstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_fetchgithubbackups", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_fetchrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_fetchgithubactivity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_updategithubactivitycomponent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_fetchgithubstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_fetchgithubapprepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_checkgithubconnection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_connectgithub", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_installgithubapp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_togglereposelection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_selectallrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_clearreposelection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_backupselectedrepositories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_disconnectgithub", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_formatdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_getlanguagecolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_github_tsx", "to": "pages_github_getlanguageicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_getauthtoken", "to": "pages_github_fetchgithubappstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_getauthtoken", "to": "pages_github_fetchgithubbackups", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_getauthtoken", "to": "pages_github_fetchrepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_getauthtoken", "to": "pages_github_fetchgithubactivity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_getauthtoken", "to": "pages_github_checkgithubconnection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_getauthtoken", "to": "pages_github_installgithubapp", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_getauthtoken", "to": "pages_github_backupselectedrepositories", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_resetgithubdata", "to": "pages_github_fetchgithubstats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_resetgithubdata", "to": "pages_github_fetchgithubapprepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_resetgithubdata", "to": "pages_github_checkgithubconnection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_resetgithubdata", "to": "pages_github_disconnectgithub", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_processlanguages", "to": "pages_github_updatestatsfromrepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_generaterecentactivity", "to": "pages_github_updatestatsfromrepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_updatestatsfromrepos", "to": "pages_github_fetchrepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_extractrepos", "to": "pages_github_fetchrepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_fetchgithubappstatus", "to": "pages_github_checkgithubconnection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_fetchgithubbackups", "to": "pages_github_checkgithubconnection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_fetchgithubbackups", "to": "pages_github_backupselectedrepositories", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_fetchrepos", "to": "pages_github_fetchgithubstats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_fetchrepos", "to": "pages_github_fetchgithubapprepos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_fetchgithubactivity", "to": "pages_github_updategithubactivitycomponent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_fetchgithubactivity", "to": "pages_github_checkgithubconnection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_fetchgithubstats", "to": "pages_github_checkgithubconnection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_fetchgithubapprepos", "to": "pages_github_checkgithubconnection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_github_connectgithub", "to": "lib_oauth_startgithubsignin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_pages_admindashboard_tsx", "to": "pages_admindashboard_handlebackupdatabase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_admindashboard_tsx", "to": "pages_admindashboard_handlemanageusers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_admindashboard_tsx", "to": "pages_admindashboard_handlesystemsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_admindashboard_tsx", "to": "pages_admindashboard_getactivityicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_admindashboard_tsx", "to": "pages_admindashboard_getgithubicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_chat_tsx", "to": "pages_chat_gettoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_chat_tsx", "to": "pages_chat_getproviderfrommodel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_chat_tsx", "to": "pages_chat_loadaiproviders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_chat_tsx", "to": "pages_chat_loadaisettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_chat_tsx", "to": "pages_chat_getaimodels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_chat_tsx", "to": "pages_chat_getproviderdisplayname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_chat_tsx", "to": "pages_chat_getproviderdescription", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_chat_tsx", "to": "pages_chat_fetchsessions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_chat_tsx", "to": "pages_chat_parsechatdeeplink", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_chat_tsx", "to": "pages_chat_scrolltohighlightedmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_chat_tsx", "to": "pages_chat_loadsessionmessages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_chat_tsx", "to": "pages_chat_handlesendmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_chat_gettoken", "to": "pages_chat_fetchsessions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_chat_gettoken", "to": "pages_chat_loadsessionmessages", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_chat_gettoken", "to": "pages_chat_handlesendmessage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_chat_getproviderfrommodel", "to": "pages_chat_handlesendmessage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_chat_scrolltohighlightedmessage", "to": "pages_chat_loadsessionmessages", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_analytics_tsx", "to": "pages_analytics_createfallbackanalyticsdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_analytics_tsx", "to": "pages_analytics_normalizeanalyticsdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_analytics_tsx", "to": "pages_analytics_fetchanalytics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_analytics_tsx", "to": "pages_analytics_formathours", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_analytics_tsx", "to": "pages_analytics_formatdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_analytics_tsx", "to": "pages_analytics_getprioritycolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_analytics_createfallbackanalyticsdata", "to": "pages_analytics_normalizeanalyticsdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_analytics_createfallbackanalyticsdata", "to": "pages_analytics_fetchanalytics", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_analytics_normalizeanalyticsdata", "to": "pages_analytics_fetchanalytics", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_adminsettings_tsx", "to": "pages_adminsettings_updatesetting", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_adminsettings_tsx", "to": "pages_adminsettings_savesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_tsx", "to": "pages_settings_applycolorchange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_tsx", "to": "pages_settings_loadaisettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_tsx", "to": "pages_settings_loadavailableaiproviders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_tsx", "to": "pages_settings_loadsearchsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_tsx", "to": "pages_settings_loadbrowserextensionaccess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_tsx", "to": "pages_settings_handleupdateaisettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_tsx", "to": "pages_settings_handleupdateprofile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_tsx", "to": "pages_settings_handlechangepassword", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_tsx", "to": "pages_settings_handleupdatesearchsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_settings_loadaisettings", "to": "pages_settings_handleupdateaisettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_settings_loadsearchsettings", "to": "pages_settings_handleupdatesearchsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_quickselection_tsx", "to": "pages_quickselection_filtereditems", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_quickselection_tsx", "to": "pages_quickselection_handleaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_timetracking_tsx", "to": "pages_timetracking_getapi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_timetracking_tsx", "to": "pages_timetracking_loadtimeentries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_timetracking_tsx", "to": "pages_timetracking_gettodaystats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_timetracking_tsx", "to": "pages_timetracking_formattime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_timetracking_tsx", "to": "pages_timetracking_formatamount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_timetracking_tsx", "to": "pages_timetracking_handletimeentrycreated", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_timetracking_tsx", "to": "pages_timetracking_handletimerupdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_timetracking_getapi", "to": "pages_timetracking_loadtimeentries", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_timetracking_getapi", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_pages_stats_tsx", "to": "pages_stats_handlerefresh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_stats_tsx", "to": "pages_stats_loadstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_stats_tsx", "to": "pages_stats_storagepercentage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_stats_tsx", "to": "pages_stats_taskcompletionrate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_stats_handlerefresh", "to": "pages_stats_loadstats", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_isenvdemomode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_isdemomode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_shoulduserealapis", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_shoulduserealbackend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_shoulduserealsearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_cleardemomode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_setdemomode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockgithubrepos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemocktimeentries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockvideobookmarks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockteams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockmembers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemocklearningpaths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockchatsessions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockremoveditems", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockaiproviders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockfiles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockaisettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemocksearchsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockemailsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockmembersdirectory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockchatsessionsextended", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockchatmessages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockanalyticsdashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemocksavedsearches", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockmessagesconversations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockmessagesforconversation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockbrowserextensionapikeys", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_generatemockbrowserextensions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_getcachekey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_jsonresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_parsebody", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_demofetch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_mode_ts", "to": "lib_demo_mode_initializedemomode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_isenvdemomode", "to": "lib_demo_mode_isdemomode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_isenvdemomode", "to": "lib_api_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_mode_isenvdemomode", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_mode_isdemomode", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_isdemomode", "to": "lib_demo_mode_initializedemomode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_shoulduserealapis", "to": "lib_demo_mode_shoulduserealbackend", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_shoulduserealapis", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockstats", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockgithubrepos", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemocktimeentries", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockvideobookmarks", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockteams", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockmembers", "to": "lib_demo_mode_generatemockmembersdirectory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockmembers", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemocklearningpaths", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockchatsessions", "to": "lib_demo_mode_generatemockchatsessionsextended", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockremoveditems", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockaiproviders", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockfiles", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockaisettings", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemocksearchsettings", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockemailsettings", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockmembersdirectory", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockchatsessionsextended", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockchatmessages", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockanalyticsdashboard", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemocksavedsearches", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockmessagesconversations", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockmessagesforconversation", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockbrowserextensionapikeys", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_generatemockbrowserextensions", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_getcachekey", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_jsonresponse", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_parsebody", "to": "lib_demo_mode_demofetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_mode_demofetch", "to": "lib_mockdata_getmockbookmarks", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_mode_demofetch", "to": "lib_mockdata_getmocktasks", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_mode_demofetch", "to": "lib_mockdata_getmocknotes", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_mode_demofetch", "to": "lib_mockdata_getmockvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_lib_api_url_ts", "to": "lib_api_url_trimtrailingslash", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_api_url_ts", "to": "lib_api_url_trimapisuffix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_api_url_ts", "to": "lib_api_url_getapiorigin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_api_url_ts", "to": "lib_api_url_getapiv1baseurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_url_trimtrailingslash", "to": "lib_api_url_getapiorigin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_url_trimapisuffix", "to": "lib_api_url_getapiorigin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_url_getapiorigin", "to": "lib_api_url_getapiv1baseurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_url_getapiv1baseurl", "to": "lib_oauth_startgithubsignin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_lib_messages_ts", "to": "lib_messages_gettoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_messages_ts", "to": "lib_messages_apirequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_messages_ts", "to": "lib_messages_uploadchatfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_messages_ts", "to": "lib_messages_messagesrealtimeclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_messages_gettoken", "to": "lib_messages_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_messages_gettoken", "to": "lib_messages_uploadchatfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_messages_gettoken", "to": "lib_messages_messagesrealtimeclient_connect", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_messages_messagesrealtimeclient", "to": "lib_messages_messagesrealtimeclient_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_messages_messagesrealtimeclient", "to": "lib_messages_messagesrealtimeclient_connect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_messages_messagesrealtimeclient", "to": "lib_messages_messagesrealtimeclient_send", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_messages_messagesrealtimeclient", "to": "lib_messages_messagesrealtimeclient_disconnect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_messages_messagesrealtimeclient", "to": "lib_messages_messagesrealtimeclient_cleanupreconnect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_messages_messagesrealtimeclient_connect", "to": "lib_messages_messagesrealtimeclient_cleanupreconnect", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_messages_messagesrealtimeclient_disconnect", "to": "lib_messages_messagesrealtimeclient_cleanupreconnect", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_time_format_ts", "to": "lib_time_format_formatduration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_time_format_ts", "to": "lib_time_format_formatdurationshort", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_time_format_ts", "to": "lib_time_format_formatdurationdetailed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_time_format_ts", "to": "lib_time_format_breakdownduration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_time_format_ts", "to": "lib_time_format_getlargesttimeunit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_time_format_formatduration", "to": "lib_time_format_breakdownduration", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_time_format_formatdurationshort", "to": "lib_time_format_breakdownduration", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_time_format_formatdurationdetailed", "to": "lib_time_format_breakdownduration", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_time_format_breakdownduration", "to": "lib_time_format_getlargesttimeunit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_demo_api_ts", "to": "lib_demo_api_demomodeapiclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient", "to": "lib_demo_api_demomodeapiclient_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient", "to": "lib_demo_api_demomodeapiclient_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient", "to": "lib_demo_api_demomodeapiclient_getmockresponse", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient", "to": "lib_demo_api_demomodeapiclient_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient", "to": "lib_demo_api_demomodeapiclient_post", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient", "to": "lib_demo_api_demomodeapiclient_put", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient", "to": "lib_demo_api_demomodeapiclient_delete", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient", "to": "lib_demo_api_demomodeapiclient_upload", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient_constructor", "to": "lib_auth_isdemomode", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_api_demomodeapiclient_request", "to": "lib_demo_api_demomodeapiclient_getmockresponse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient_request", "to": "lib_demo_api_demomodeapiclient_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient_request", "to": "lib_demo_api_demomodeapiclient_post", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient_request", "to": "lib_demo_api_demomodeapiclient_put", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient_request", "to": "lib_demo_api_demomodeapiclient_delete", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_demo_api_demomodeapiclient_getmockresponse", "to": "lib_mockdata_getmockstats", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_api_demomodeapiclient_getmockresponse", "to": "lib_mockdata_getmockdocuments", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_api_demomodeapiclient_getmockresponse", "to": "lib_mockdata_getmockbookmarks", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_api_demomodeapiclient_getmockresponse", "to": "lib_mockdata_getmocktasks", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_api_demomodeapiclient_getmockresponse", "to": "lib_mockdata_getmocknotes", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_api_demomodeapiclient_getmockresponse", "to": "lib_mockdata_getmocktimeentries", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_api_demomodeapiclient_getmockresponse", "to": "lib_mockdata_getmockvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_api_demomodeapiclient_getmockresponse", "to": "lib_mockdata_getmocklearningpaths", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_demo_api_demomodeapiclient_get", "to": "lib_demo_api_demomodeapiclient_upload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_utils_ts", "to": "lib_utils_cn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_utils_ts", "to": "lib_utils_formatdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_utils_ts", "to": "lib_utils_formatdatetime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_utils_ts", "to": "lib_utils_truncatetext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_utils_ts", "to": "lib_utils_getinitials", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_utils_ts", "to": "lib_utils_generateid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_oauth_ts", "to": "lib_oauth_getauthcallbackurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_oauth_ts", "to": "lib_oauth_startgithubsignin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_oauth_getauthcallbackurl", "to": "lib_oauth_startgithubsignin", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_api_ts", "to": "lib_api_isdemomode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_api_ts", "to": "lib_api_getauthheaders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_api_ts", "to": "lib_api_apiclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_isdemomode", "to": "lib_api_apiclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_getauthheaders", "to": "lib_api_apiclient_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_getauthheaders", "to": "lib_api_apiclient_upload", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_getmockresponse", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_post", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_put", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_delete", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient", "to": "lib_api_apiclient_upload", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_request", "to": "lib_api_apiclient_getmockresponse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_request", "to": "lib_api_apiclient_get", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_request", "to": "lib_api_apiclient_post", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_request", "to": "lib_api_apiclient_put", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_request", "to": "lib_api_apiclient_delete", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_api_apiclient_getmockresponse", "to": "lib_mockdata_getmockstats", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_api_apiclient_getmockresponse", "to": "lib_mockdata_getmockdocuments", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_api_apiclient_getmockresponse", "to": "lib_mockdata_getmockbookmarks", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_api_apiclient_getmockresponse", "to": "lib_mockdata_getmocktasks", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_api_apiclient_getmockresponse", "to": "lib_mockdata_getmocknotes", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_api_apiclient_getmockresponse", "to": "lib_mockdata_getmocktimeentries", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_api_apiclient_getmockresponse", "to": "lib_mockdata_getmocklearningpaths", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_api_apiclient_getmockresponse", "to": "lib_mockdata_getmockvideos", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_lib_haptics_ts", "to": "lib_haptics_issupported", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_haptics_ts", "to": "lib_haptics_usehaptics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_haptics_ts", "to": "lib_haptics_triggerhaptic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_haptics_issupported", "to": "lib_haptics_triggerhaptic", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_timeformat_ts", "to": "lib_timeformat_formatduration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_timeformat_ts", "to": "lib_timeformat_formatdurationcompact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_auth_tsx", "to": "lib_auth_isdemomode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_auth_tsx", "to": "lib_auth_authprovider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_auth_tsx", "to": "lib_auth_useauth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_auth_tsx", "to": "lib_auth_getauthheaders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_auth_isdemomode", "to": "lib_auth_getauthheaders", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_auth_isdemomode", "to": "lib_brave_search_getauthheaders", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_auth_isdemomode", "to": "stores_updatestore_installupdate", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_src_lib_weeklychart_tsx", "to": "lib_weeklychart_weeklybarchart", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_createdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_getmockdocuments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_getmockbookmarks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_getmocktasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_getmocknotes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_getmocktimeentries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_getmockvideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_getmocklearningpaths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_getmockcalendarevents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_getmockfiles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_getmockactivities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_getmockstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_mockdata_ts", "to": "lib_mockdata_getpopulartags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_brave_search_ts", "to": "lib_brave_search_getauthheaders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_brave_search_ts", "to": "lib_brave_search_searchbrave", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_brave_search_ts", "to": "lib_brave_search_searchweb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_brave_search_ts", "to": "lib_brave_search_searchnews", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_brave_search_ts", "to": "lib_brave_search_getquicksearchsuggestions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_brave_search_getauthheaders", "to": "lib_brave_search_searchbrave", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_brave_search_searchbrave", "to": "lib_brave_search_searchweb", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_brave_search_searchbrave", "to": "lib_brave_search_searchnews", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_brave_search_searchbrave", "to": "lib_brave_search_getquicksearchsuggestions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_export_import_ts", "to": "lib_export_import_exportdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_export_import_ts", "to": "lib_export_import_importdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_export_import_ts", "to": "lib_export_import_validateimportdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_lib_export_import_ts", "to": "lib_export_import_getimportsummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_updatestore_ts", "to": "stores_updatestore_checkforupdates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_updatestore_ts", "to": "stores_updatestore_installupdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_updatestore_ts", "to": "stores_updatestore_cancelupdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_updatestore_ts", "to": "stores_updatestore_initializeupdatechecking", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_updatestore_ts", "to": "stores_updatestore_cleanup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_updatestore_ts", "to": "stores_updatestore_ensureinitialized", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_updatestore_checkforupdates", "to": "stores_updatestore_initializeupdatechecking", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_updatestore_initializeupdatechecking", "to": "stores_updatestore_ensureinitialized", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Community 0", "count": 161}, {"cid": 1, "color": "#F28E2B", "label": "Community 1", "count": 143}, {"cid": 2, "color": "#E15759", "label": "Community 2", "count": 123}, {"cid": 3, "color": "#76B7B2", "label": "Community 3", "count": 116}, {"cid": 4, "color": "#59A14F", "label": "Community 4", "count": 103}, {"cid": 5, "color": "#EDC948", "label": "Community 5", "count": 82}, {"cid": 6, "color": "#B07AA1", "label": "Community 6", "count": 71}, {"cid": 7, "color": "#FF9DA7", "label": "Community 7", "count": 69}, {"cid": 8, "color": "#9C755F", "label": "Community 8", "count": 67}, {"cid": 9, "color": "#BAB0AC", "label": "Community 9", "count": 65}, {"cid": 10, "color": "#4E79A7", "label": "Community 10", "count": 61}, {"cid": 11, "color": "#F28E2B", "label": "Community 11", "count": 55}, {"cid": 12, "color": "#E15759", "label": "Community 12", "count": 48}, {"cid": 13, "color": "#76B7B2", "label": "Community 13", "count": 47}, {"cid": 14, "color": "#59A14F", "label": "Community 14", "count": 39}, {"cid": 15, "color": "#EDC948", "label": "Community 15", "count": 37}, {"cid": 16, "color": "#B07AA1", "label": "Community 16", "count": 36}, {"cid": 17, "color": "#FF9DA7", "label": "Community 17", "count": 31}, {"cid": 18, "color": "#9C755F", "label": "Community 18", "count": 31}, {"cid": 19, "color": "#BAB0AC", "label": "Community 19", "count": 30}, {"cid": 20, "color": "#4E79A7", "label": "Community 20", "count": 29}, {"cid": 21, "color": "#F28E2B", "label": "Community 21", "count": 27}, {"cid": 22, "color": "#E15759", "label": "Community 22", "count": 27}, {"cid": 23, "color": "#76B7B2", "label": "Community 23", "count": 26}, {"cid": 24, "color": "#59A14F", "label": "Community 24", "count": 24}, {"cid": 25, "color": "#EDC948", "label": "Community 25", "count": 24}, {"cid": 26, "color": "#B07AA1", "label": "Community 26", "count": 23}, {"cid": 27, "color": "#FF9DA7", "label": "Community 27", "count": 22}, {"cid": 28, "color": "#9C755F", "label": "Community 28", "count": 21}, {"cid": 29, "color": "#BAB0AC", "label": "Community 29", "count": 21}, {"cid": 30, "color": "#4E79A7", "label": "Community 30", "count": 20}, {"cid": 31, "color": "#F28E2B", "label": "Community 31", "count": 19}, {"cid": 32, "color": "#E15759", "label": "Community 32", "count": 18}, {"cid": 33, "color": "#76B7B2", "label": "Community 33", "count": 18}, {"cid": 34, "color": "#59A14F", "label": "Community 34", "count": 17}, {"cid": 35, "color": "#EDC948", "label": "Community 35", "count": 17}, {"cid": 36, "color": "#B07AA1", "label": "Community 36", "count": 17}, {"cid": 37, "color": "#FF9DA7", "label": "Community 37", "count": 17}, {"cid": 38, "color": "#9C755F", "label": "Community 38", "count": 16}, {"cid": 39, "color": "#BAB0AC", "label": "Community 39", "count": 16}, {"cid": 40, "color": "#4E79A7", "label": "Community 40", "count": 16}, {"cid": 41, "color": "#F28E2B", "label": "Community 41", "count": 16}, {"cid": 42, "color": "#E15759", "label": "Community 42", "count": 16}, {"cid": 43, "color": "#76B7B2", "label": "Community 43", "count": 15}, {"cid": 44, "color": "#59A14F", "label": "Community 44", "count": 15}, {"cid": 45, "color": "#EDC948", "label": "Community 45", "count": 14}, {"cid": 46, "color": "#B07AA1", "label": "Community 46", "count": 14}, {"cid": 47, "color": "#FF9DA7", "label": "Community 47", "count": 13}, {"cid": 48, "color": "#9C755F", "label": "Community 48", "count": 13}, {"cid": 49, "color": "#BAB0AC", "label": "Community 49", "count": 13}, {"cid": 50, "color": "#4E79A7", "label": "Community 50", "count": 13}, {"cid": 51, "color": "#F28E2B", "label": "Community 51", "count": 12}, {"cid": 52, "color": "#E15759", "label": "Community 52", "count": 12}, {"cid": 53, "color": "#76B7B2", "label": "Community 53", "count": 11}, {"cid": 54, "color": "#59A14F", "label": "Community 54", "count": 11}, {"cid": 55, "color": "#EDC948", "label": "Community 55", "count": 11}, {"cid": 56, "color": "#B07AA1", "label": "Community 56", "count": 10}, {"cid": 57, "color": "#FF9DA7", "label": "Community 57", "count": 10}, {"cid": 58, "color": "#9C755F", "label": "Community 58", "count": 10}, {"cid": 59, "color": "#BAB0AC", "label": "Community 59", "count": 10}, {"cid": 60, "color": "#4E79A7", "label": "Community 60", "count": 10}, {"cid": 61, "color": "#F28E2B", "label": "Community 61", "count": 9}, {"cid": 62, "color": "#E15759", "label": "Community 62", "count": 9}, {"cid": 63, "color": "#76B7B2", "label": "Community 63", "count": 8}, {"cid": 64, "color": "#59A14F", "label": "Community 64", "count": 8}, {"cid": 65, "color": "#EDC948", "label": "Community 65", "count": 8}, {"cid": 66, "color": "#B07AA1", "label": "Community 66", "count": 7}, {"cid": 67, "color": "#FF9DA7", "label": "Community 67", "count": 7}, {"cid": 68, "color": "#9C755F", "label": "Community 68", "count": 7}, {"cid": 69, "color": "#BAB0AC", "label": "Community 69", "count": 7}, {"cid": 70, "color": "#4E79A7", "label": "Community 70", "count": 7}, {"cid": 71, "color": "#F28E2B", "label": "Community 71", "count": 7}, {"cid": 72, "color": "#E15759", "label": "Community 72", "count": 7}, {"cid": 73, "color": "#76B7B2", "label": "Community 73", "count": 7}, {"cid": 74, "color": "#59A14F", "label": "Community 74", "count": 7}, {"cid": 75, "color": "#EDC948", "label": "Community 75", "count": 7}, {"cid": 76, "color": "#B07AA1", "label": "Community 76", "count": 7}, {"cid": 77, "color": "#FF9DA7", "label": "Community 77", "count": 6}, {"cid": 78, "color": "#9C755F", "label": "Community 78", "count": 6}, {"cid": 79, "color": "#BAB0AC", "label": "Community 79", "count": 6}, {"cid": 80, "color": "#4E79A7", "label": "Community 80", "count": 6}, {"cid": 81, "color": "#F28E2B", "label": "Community 81", "count": 6}, {"cid": 82, "color": "#E15759", "label": "Community 82", "count": 6}, {"cid": 83, "color": "#76B7B2", "label": "Community 83", "count": 6}, {"cid": 84, "color": "#59A14F", "label": "Community 84", "count": 5}, {"cid": 85, "color": "#EDC948", "label": "Community 85", "count": 5}, {"cid": 86, "color": "#B07AA1", "label": "Community 86", "count": 5}, {"cid": 87, "color": "#FF9DA7", "label": "Community 87", "count": 5}, {"cid": 88, "color": "#9C755F", "label": "Community 88", "count": 5}, {"cid": 89, "color": "#BAB0AC", "label": "Community 89", "count": 5}, {"cid": 90, "color": "#4E79A7", "label": "Community 90", "count": 5}, {"cid": 91, "color": "#F28E2B", "label": "Community 91", "count": 5}, {"cid": 92, "color": "#E15759", "label": "Community 92", "count": 5}, {"cid": 93, "color": "#76B7B2", "label": "Community 93", "count": 5}, {"cid": 94, "color": "#59A14F", "label": "Community 94", "count": 4}, {"cid": 95, "color": "#EDC948", "label": "Community 95", "count": 4}, {"cid": 96, "color": "#B07AA1", "label": "Community 96", "count": 4}, {"cid": 97, "color": "#FF9DA7", "label": "Community 97", "count": 4}, {"cid": 98, "color": "#9C755F", "label": "Community 98", "count": 4}, {"cid": 99, "color": "#BAB0AC", "label": "Community 99", "count": 4}, {"cid": 100, "color": "#4E79A7", "label": "Community 100", "count": 4}, {"cid": 101, "color": "#F28E2B", "label": "Community 101", "count": 3}, {"cid": 102, "color": "#E15759", "label": "Community 102", "count": 3}, {"cid": 103, "color": "#76B7B2", "label": "Community 103", "count": 3}, {"cid": 104, "color": "#59A14F", "label": "Community 104", "count": 3}, {"cid": 105, "color": "#EDC948", "label": "Community 105", "count": 3}, {"cid": 106, "color": "#B07AA1", "label": "Community 106", "count": 3}, {"cid": 107, "color": "#FF9DA7", "label": "Community 107", "count": 3}, {"cid": 108, "color": "#9C755F", "label": "Community 108", "count": 3}, {"cid": 109, "color": "#BAB0AC", "label": "Community 109", "count": 3}, {"cid": 110, "color": "#4E79A7", "label": "Community 110", "count": 3}, {"cid": 111, "color": "#F28E2B", "label": "Community 111", "count": 3}, {"cid": 112, "color": "#E15759", "label": "Community 112", "count": 3}, {"cid": 113, "color": "#76B7B2", "label": "Community 113", "count": 3}, {"cid": 114, "color": "#59A14F", "label": "Community 114", "count": 3}, {"cid": 115, "color": "#EDC948", "label": "Community 115", "count": 3}, {"cid": 116, "color": "#B07AA1", "label": "Community 116", "count": 3}, {"cid": 117, "color": "#FF9DA7", "label": "Community 117", "count": 3}, {"cid": 118, "color": "#9C755F", "label": "Community 118", "count": 3}, {"cid": 119, "color": "#BAB0AC", "label": "Community 119", "count": 3}, {"cid": 120, "color": "#4E79A7", "label": "Community 120", "count": 3}, {"cid": 121, "color": "#F28E2B", "label": "Community 121", "count": 3}, {"cid": 122, "color": "#E15759", "label": "Community 122", "count": 3}, {"cid": 123, "color": "#76B7B2", "label": "Community 123", "count": 3}, {"cid": 124, "color": "#59A14F", "label": "Community 124", "count": 3}, {"cid": 125, "color": "#EDC948", "label": "Community 125", "count": 3}, {"cid": 126, "color": "#B07AA1", "label": "Community 126", "count": 3}, {"cid": 127, "color": "#FF9DA7", "label": "Community 127", "count": 2}, {"cid": 128, "color": "#9C755F", "label": "Community 128", "count": 2}, {"cid": 129, "color": "#BAB0AC", "label": "Community 129", "count": 2}, {"cid": 130, "color": "#4E79A7", "label": "Community 130", "count": 2}, {"cid": 131, "color": "#F28E2B", "label": "Community 131", "count": 2}, {"cid": 132, "color": "#E15759", "label": "Community 132", "count": 2}, {"cid": 133, "color": "#76B7B2", "label": "Community 133", "count": 2}, {"cid": 134, "color": "#59A14F", "label": "Community 134", "count": 2}, {"cid": 135, "color": "#EDC948", "label": "Community 135", "count": 2}, {"cid": 136, "color": "#B07AA1", "label": "Community 136", "count": 2}, {"cid": 137, "color": "#FF9DA7", "label": "Community 137", "count": 2}, {"cid": 138, "color": "#9C755F", "label": "Community 138", "count": 2}, {"cid": 139, "color": "#BAB0AC", "label": "Community 139", "count": 2}, {"cid": 140, "color": "#4E79A7", "label": "Community 140", "count": 2}, {"cid": 141, "color": "#F28E2B", "label": "Community 141", "count": 2}, {"cid": 142, "color": "#E15759", "label": "Community 142", "count": 2}, {"cid": 143, "color": "#76B7B2", "label": "Community 143", "count": 2}, {"cid": 144, "color": "#59A14F", "label": "Community 144", "count": 2}, {"cid": 145, "color": "#EDC948", "label": "Community 145", "count": 2}, {"cid": 146, "color": "#B07AA1", "label": "Community 146", "count": 2}, {"cid": 147, "color": "#FF9DA7", "label": "Community 147", "count": 2}, {"cid": 148, "color": "#9C755F", "label": "Community 148", "count": 2}, {"cid": 149, "color": "#BAB0AC", "label": "Community 149", "count": 2}, {"cid": 150, "color": "#4E79A7", "label": "Community 150", "count": 2}, {"cid": 151, "color": "#F28E2B", "label": "Community 151", "count": 2}, {"cid": 152, "color": "#E15759", "label": "Community 152", "count": 2}, {"cid": 153, "color": "#76B7B2", "label": "Community 153", "count": 2}, {"cid": 154, "color": "#59A14F", "label": "Community 154", "count": 2}, {"cid": 155, "color": "#EDC948", "label": "Community 155", "count": 2}, {"cid": 156, "color": "#B07AA1", "label": "Community 156", "count": 2}, {"cid": 157, "color": "#FF9DA7", "label": "Community 157", "count": 2}, {"cid": 158, "color": "#9C755F", "label": "Community 158", "count": 2}, {"cid": 159, "color": "#BAB0AC", "label": "Community 159", "count": 2}, {"cid": 160, "color": "#4E79A7", "label": "Community 160", "count": 2}, {"cid": 161, "color": "#F28E2B", "label": "Community 161", "count": 2}, {"cid": 162, "color": "#E15759", "label": "Community 162", "count": 2}, {"cid": 163, "color": "#76B7B2", "label": "Community 163", "count": 2}, {"cid": 164, "color": "#59A14F", "label": "Community 164", "count": 2}, {"cid": 165, "color": "#EDC948", "label": "Community 165", "count": 2}, {"cid": 166, "color": "#B07AA1", "label": "Community 166", "count": 1}, {"cid": 167, "color": "#FF9DA7", "label": "Community 167", "count": 1}, {"cid": 168, "color": "#9C755F", "label": "Community 168", "count": 1}, {"cid": 169, "color": "#BAB0AC", "label": "Community 169", "count": 1}, {"cid": 170, "color": "#4E79A7", "label": "Community 170", "count": 1}, {"cid": 171, "color": "#F28E2B", "label": "Community 171", "count": 1}, {"cid": 172, "color": "#E15759", "label": "Community 172", "count": 1}, {"cid": 173, "color": "#76B7B2", "label": "Community 173", "count": 1}, {"cid": 174, "color": "#59A14F", "label": "Community 174", "count": 1}, {"cid": 175, "color": "#EDC948", "label": "Community 175", "count": 1}, {"cid": 176, "color": "#B07AA1", "label": "Community 176", "count": 1}, {"cid": 177, "color": "#FF9DA7", "label": "Community 177", "count": 1}, {"cid": 178, "color": "#9C755F", "label": "Community 178", "count": 1}, {"cid": 179, "color": "#BAB0AC", "label": "Community 179", "count": 1}, {"cid": 180, "color": "#4E79A7", "label": "Community 180", "count": 1}, {"cid": 181, "color": "#F28E2B", "label": "Community 181", "count": 1}, {"cid": 182, "color": "#E15759", "label": "Community 182", "count": 1}, {"cid": 183, "color": "#76B7B2", "label": "Community 183", "count": 1}, {"cid": 184, "color": "#59A14F", "label": "Community 184", "count": 1}, {"cid": 185, "color": "#EDC948", "label": "Community 185", "count": 1}, {"cid": 186, "color": "#B07AA1", "label": "Community 186", "count": 1}, {"cid": 187, "color": "#FF9DA7", "label": "Community 187", "count": 1}, {"cid": 188, "color": "#9C755F", "label": "Community 188", "count": 1}, {"cid": 189, "color": "#BAB0AC", "label": "Community 189", "count": 1}, {"cid": 190, "color": "#4E79A7", "label": "Community 190", "count": 1}, {"cid": 191, "color": "#F28E2B", "label": "Community 191", "count": 1}, {"cid": 192, "color": "#E15759", "label": "Community 192", "count": 1}, {"cid": 193, "color": "#76B7B2", "label": "Community 193", "count": 1}, {"cid": 194, "color": "#59A14F", "label": "Community 194", "count": 1}, {"cid": 195, "color": "#EDC948", "label": "Community 195", "count": 1}, {"cid": 196, "color": "#B07AA1", "label": "Community 196", "count": 1}, {"cid": 197, "color": "#FF9DA7", "label": "Community 197", "count": 1}, {"cid": 198, "color": "#9C755F", "label": "Community 198", "count": 1}, {"cid": 199, "color": "#BAB0AC", "label": "Community 199", "count": 1}, {"cid": 200, "color": "#4E79A7", "label": "Community 200", "count": 1}, {"cid": 201, "color": "#F28E2B", "label": "Community 201", "count": 1}, {"cid": 202, "color": "#E15759", "label": "Community 202", "count": 1}, {"cid": 203, "color": "#76B7B2", "label": "Community 203", "count": 1}, {"cid": 204, "color": "#59A14F", "label": "Community 204", "count": 1}, {"cid": 205, "color": "#EDC948", "label": "Community 205", "count": 1}, {"cid": 206, "color": "#B07AA1", "label": "Community 206", "count": 1}, {"cid": 207, "color": "#FF9DA7", "label": "Community 207", "count": 1}, {"cid": 208, "color": "#9C755F", "label": "Community 208", "count": 1}, {"cid": 209, "color": "#BAB0AC", "label": "Community 209", "count": 1}, {"cid": 210, "color": "#4E79A7", "label": "Community 210", "count": 1}, {"cid": 211, "color": "#F28E2B", "label": "Community 211", "count": 1}, {"cid": 212, "color": "#E15759", "label": "Community 212", "count": 1}, {"cid": 213, "color": "#76B7B2", "label": "Community 213", "count": 1}, {"cid": 214, "color": "#59A14F", "label": "Community 214", "count": 1}, {"cid": 215, "color": "#EDC948", "label": "Community 215", "count": 1}, {"cid": 216, "color": "#B07AA1", "label": "Community 216", "count": 1}, {"cid": 217, "color": "#FF9DA7", "label": "Community 217", "count": 1}, {"cid": 218, "color": "#9C755F", "label": "Community 218", "count": 1}, {"cid": 219, "color": "#BAB0AC", "label": "Community 219", "count": 1}, {"cid": 220, "color": "#4E79A7", "label": "Community 220", "count": 1}];
|
|
|
|
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
|
|
function esc(s) {
|
|
return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,''');
|
|
}
|
|
|
|
// Build vis datasets
|
|
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
|
|
id: n.id, label: n.label, color: n.color, size: n.size,
|
|
font: n.font, title: n.title,
|
|
_community: n.community, _community_name: n.community_name,
|
|
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
|
|
})));
|
|
|
|
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
|
|
id: i, from: e.from, to: e.to,
|
|
label: '',
|
|
title: e.title,
|
|
dashes: e.dashes,
|
|
width: e.width,
|
|
color: e.color,
|
|
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
|
|
})));
|
|
|
|
const container = document.getElementById('graph');
|
|
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
|
|
physics: {
|
|
enabled: true,
|
|
solver: 'forceAtlas2Based',
|
|
forceAtlas2Based: {
|
|
gravitationalConstant: -60,
|
|
centralGravity: 0.005,
|
|
springLength: 120,
|
|
springConstant: 0.08,
|
|
damping: 0.4,
|
|
avoidOverlap: 0.8,
|
|
},
|
|
stabilization: { iterations: 200, fit: true },
|
|
},
|
|
interaction: {
|
|
hover: true,
|
|
tooltipDelay: 100,
|
|
hideEdgesOnDrag: true,
|
|
navigationButtons: false,
|
|
keyboard: false,
|
|
},
|
|
nodes: { shape: 'dot', borderWidth: 1.5 },
|
|
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
|
|
});
|
|
|
|
network.once('stabilizationIterationsDone', () => {
|
|
network.setOptions({ physics: { enabled: false } });
|
|
});
|
|
|
|
function showInfo(nodeId) {
|
|
const n = nodesDS.get(nodeId);
|
|
if (!n) return;
|
|
const neighborIds = network.getConnectedNodes(nodeId);
|
|
const neighborItems = neighborIds.map(nid => {
|
|
const nb = nodesDS.get(nid);
|
|
const color = nb ? nb.color.background : '#555';
|
|
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" onclick="focusNode(${JSON.stringify(nid)})">${esc(nb ? nb.label : nid)}</span>`;
|
|
}).join('');
|
|
document.getElementById('info-content').innerHTML = `
|
|
<div class="field"><b>${esc(n.label)}</b></div>
|
|
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
|
|
<div class="field">Community: ${esc(n._community_name)}</div>
|
|
<div class="field">Source: ${esc(n._source_file || '-')}</div>
|
|
<div class="field">Degree: ${n._degree}</div>
|
|
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
|
|
`;
|
|
}
|
|
|
|
function focusNode(nodeId) {
|
|
network.focus(nodeId, { scale: 1.4, animation: true });
|
|
network.selectNodes([nodeId]);
|
|
showInfo(nodeId);
|
|
}
|
|
|
|
// Track hovered node — hover detection is more reliable than click params
|
|
let hoveredNodeId = null;
|
|
network.on('hoverNode', params => {
|
|
hoveredNodeId = params.node;
|
|
container.style.cursor = 'pointer';
|
|
});
|
|
network.on('blurNode', () => {
|
|
hoveredNodeId = null;
|
|
container.style.cursor = 'default';
|
|
});
|
|
container.addEventListener('click', () => {
|
|
if (hoveredNodeId !== null) {
|
|
showInfo(hoveredNodeId);
|
|
network.selectNodes([hoveredNodeId]);
|
|
}
|
|
});
|
|
network.on('click', params => {
|
|
if (params.nodes.length > 0) {
|
|
showInfo(params.nodes[0]);
|
|
} else if (hoveredNodeId === null) {
|
|
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
|
|
}
|
|
});
|
|
|
|
const searchInput = document.getElementById('search');
|
|
const searchResults = document.getElementById('search-results');
|
|
searchInput.addEventListener('input', () => {
|
|
const q = searchInput.value.toLowerCase().trim();
|
|
searchResults.innerHTML = '';
|
|
if (!q) { searchResults.style.display = 'none'; return; }
|
|
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
|
|
if (!matches.length) { searchResults.style.display = 'none'; return; }
|
|
searchResults.style.display = 'block';
|
|
matches.forEach(n => {
|
|
const el = document.createElement('div');
|
|
el.className = 'search-item';
|
|
el.textContent = n.label;
|
|
el.style.borderLeft = `3px solid ${n.color.background}`;
|
|
el.style.paddingLeft = '8px';
|
|
el.onclick = () => {
|
|
network.focus(n.id, { scale: 1.5, animation: true });
|
|
network.selectNodes([n.id]);
|
|
showInfo(n.id);
|
|
searchResults.style.display = 'none';
|
|
searchInput.value = '';
|
|
};
|
|
searchResults.appendChild(el);
|
|
});
|
|
});
|
|
document.addEventListener('click', e => {
|
|
if (!searchResults.contains(e.target) && e.target !== searchInput)
|
|
searchResults.style.display = 'none';
|
|
});
|
|
|
|
const hiddenCommunities = new Set();
|
|
|
|
function toggleAllCommunities(hide) {
|
|
document.querySelectorAll('.legend-item').forEach(item => {
|
|
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
|
|
});
|
|
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);
|
|
}
|
|
|
|
const legendEl = document.getElementById('legend');
|
|
LEGEND.forEach(c => {
|
|
const item = document.createElement('div');
|
|
item.className = 'legend-item';
|
|
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.onclick = () => {
|
|
if (hiddenCommunities.has(c.cid)) {
|
|
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: hiddenCommunities.has(c.cid) }));
|
|
nodesDS.update(updates);
|
|
};
|
|
legendEl.appendChild(item);
|
|
});
|
|
</script>
|
|
<script>
|
|
// Render hyperedges as shaded regions
|
|
const hyperedges = [];
|
|
// 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> |