mirror of
https://github.com/Dvorinka/excalidraw-full.git
synced 2026-06-04 06:12:56 +00:00
462a70933d
This commit introduces a significant update to both the frontend and backend, focusing on enhanced user engagement and a consistent visual identity. Key changes include: - **Frontend UI/UX Refactor**: - Implemented a "hand-drawn" aesthetic across the entire application using CSS overrides, custom SVG charts, and specific border/shadow styles to match the Excalidraw experience. - Added a new notification system in the Header to display user updates. - Enhanced the Template Picker with more variety and improved interaction models. - Added a "Presentation Mode" in the Editor. - Improved Dashboard visualizations with hand-drawn style sparklines and charts. - Added modal dialogs for creating drawings and templates with custom names. - **Backend & API Enhancements**: - Implemented full CRUD support for custom templates, allowing users to save their drawings as reusable templates. - Added a notification service with endpoints to list, mark as read, and mark all as read. - Updated the API client to handle more robust JSON responses and error states. - Improved CORS/Origin validation in the HTTP middleware to handle proxy headers (`X-Forwarded-Host`, `X-Forwarded-Proto`) more reliably. - **Database & Infrastructure**: - Added a new PostgreSQL migration for the `notifications` table. - Updated the data models in the workspace to support templates (including snapshot storage) and notifications. - Updated `.gitignore` to exclude graphify cache and AST files.
276 lines
736 KiB
HTML
276 lines
736 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>graphify - graphify-out/graph.html</title>
|
|
<script src="https://unpkg.com/vis-network/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">872 nodes · 1939 edges · 24 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "main_go", "label": "main.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.1, "font": {"size": 12, "color": "#ffffff"}, "title": "main.go", "community": 1, "community_name": "Community 1", "source_file": "main.go", "file_type": "code", "degree": 33}, {"id": "excalidraw_usertofollow", "label": "UserToFollow", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "UserToFollow", "community": 1, "community_name": "Community 1", "source_file": "main.go", "file_type": "code", "degree": 1}, {"id": "excalidraw_onuserfollowedpayload", "label": "OnUserFollowedPayload", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "OnUserFollowedPayload", "community": 1, "community_name": "Community 1", "source_file": "main.go", "file_type": "code", "degree": 1}, {"id": "excalidraw_main_handleui", "label": "handleUI()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "handleUI()", "community": 1, "community_name": "Community 1", "source_file": "main.go", "file_type": "code", "degree": 3}, {"id": "excalidraw_main_setuprouter", "label": "setupRouter()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "setupRouter()", "community": 1, "community_name": "Community 1", "source_file": "main.go", "file_type": "code", "degree": 9}, {"id": "excalidraw_main_allowedorigins", "label": "allowedOrigins()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "allowedOrigins()", "community": 1, "community_name": "Community 1", "source_file": "main.go", "file_type": "code", "degree": 3}, {"id": "excalidraw_main_securityheaders", "label": "securityHeaders()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "securityHeaders()", "community": 1, "community_name": "Community 1", "source_file": "main.go", "file_type": "code", "degree": 1}, {"id": "excalidraw_main_setupsocketio", "label": "setupSocketIO()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "setupSocketIO()", "community": 1, "community_name": "Community 1", "source_file": "main.go", "file_type": "code", "degree": 4}, {"id": "excalidraw_main_waitforshutdown", "label": "waitForShutdown()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "waitForShutdown()", "community": 1, "community_name": "Community 1", "source_file": "main.go", "file_type": "code", "degree": 3}, {"id": "excalidraw_main_main", "label": "main()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 1, "community_name": "Community 1", "source_file": "main.go", "file_type": "code", "degree": 12}, {"id": "handlers_auth_auth_go", "label": "auth.go", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "auth.go", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 34}, {"id": "auth_appclaims", "label": "AppClaims", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AppClaims", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 1}, {"id": "auth_oidcclaims", "label": "OIDCClaims", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "OIDCClaims", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 1}, {"id": "auth_auth_setworkspacestore", "label": "SetWorkspaceStore()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SetWorkspaceStore()", "community": 1, "community_name": "Community 1", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 2}, {"id": "auth_auth_initauth", "label": "InitAuth()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "InitAuth()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 6}, {"id": "auth_auth_handlelogin", "label": "HandleLogin()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleLogin()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 2}, {"id": "auth_auth_handlecallback", "label": "HandleCallback()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleCallback()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 2}, {"id": "auth_auth_initgithub", "label": "initGitHub()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "initGitHub()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 4}, {"id": "auth_auth_initoidc", "label": "initOIDC()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "initOIDC()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 3}, {"id": "auth_auth_init", "label": "Init()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Init()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 3}, {"id": "auth_auth_generatestateoauthcookie", "label": "generateStateOauthCookie()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "generateStateOauthCookie()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 3}, {"id": "auth_auth_handlegithublogin", "label": "HandleGitHubLogin()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleGitHubLogin()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 3}, {"id": "auth_auth_handlegithubcallback", "label": "HandleGitHubCallback()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleGitHubCallback()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 6}, {"id": "auth_auth_handleoidclogin", "label": "HandleOIDCLogin()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleOIDCLogin()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 3}, {"id": "auth_auth_handleoidccallback", "label": "HandleOIDCCallback()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleOIDCCallback()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 6}, {"id": "auth_auth_validatestatecookie", "label": "validateStateCookie()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "validateStateCookie()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 3}, {"id": "auth_auth_createjwt", "label": "createJWT()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "createJWT()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 3}, {"id": "auth_auth_parsejwt", "label": "ParseJWT()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ParseJWT()", "community": 6, "community_name": "Community 6", "source_file": "handlers/auth/auth.go", "file_type": "code", "degree": 2}, {"id": "handlers_api_firebase_firebase_go", "label": "firebase.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "firebase.go", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 16}, {"id": "firebase_batchgetrequest", "label": "BatchGetRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BatchGetRequest", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 2}, {"id": "firebase_batchgetemptyresponse", "label": "BatchGetEmptyResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BatchGetEmptyResponse", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 1}, {"id": "firebase_foundinforesponse", "label": "FoundInfoResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FoundInfoResponse", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 1}, {"id": "firebase_batchgetexistsresponse", "label": "BatchGetExistsResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BatchGetExistsResponse", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 1}, {"id": "firebase_updaterequest", "label": "UpdateRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateRequest", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 1}, {"id": "firebase_writerequest", "label": "WriteRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "WriteRequest", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 1}, {"id": "firebase_batchcommitrequest", "label": "BatchCommitRequest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BatchCommitRequest", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 2}, {"id": "firebase_writeresult", "label": "WriteResult", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "WriteResult", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 1}, {"id": "firebase_batchcommitresponse", "label": "BatchCommitResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BatchCommitResponse", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 1}, {"id": "firebase_batchgetrequest_bind", "label": ".Bind()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Bind()", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 1}, {"id": "firebase_batchcommitrequest_bind", "label": ".Bind()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Bind()", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 1}, {"id": "firebase_firebase_handlebatchcommit", "label": "HandleBatchCommit()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleBatchCommit()", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 3}, {"id": "firebase_firebase_handlebatchget", "label": "HandleBatchGet()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleBatchGet()", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/firebase/firebase.go", "file_type": "code", "degree": 3}, {"id": "handlers_api_documents_documents_go", "label": "documents.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "documents.go", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/documents/documents.go", "file_type": "code", "degree": 9}, {"id": "documents_documentcreateresponse", "label": "DocumentCreateResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DocumentCreateResponse", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/documents/documents.go", "file_type": "code", "degree": 1}, {"id": "documents_documents_handlecreate", "label": "HandleCreate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleCreate()", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/documents/documents.go", "file_type": "code", "degree": 2}, {"id": "documents_documents_handleget", "label": "HandleGet()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleGet()", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/documents/documents.go", "file_type": "code", "degree": 2}, {"id": "handlers_api_kv_kv_go", "label": "kv.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "kv.go", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/kv/kv.go", "file_type": "code", "degree": 14}, {"id": "kv_kv_handlelistcanvases", "label": "HandleListCanvases()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleListCanvases()", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/kv/kv.go", "file_type": "code", "degree": 2}, {"id": "kv_kv_handlegetcanvas", "label": "HandleGetCanvas()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleGetCanvas()", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/kv/kv.go", "file_type": "code", "degree": 2}, {"id": "kv_kv_handlesavecanvas", "label": "HandleSaveCanvas()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleSaveCanvas()", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/kv/kv.go", "file_type": "code", "degree": 2}, {"id": "kv_kv_handledeletecanvas", "label": "HandleDeleteCanvas()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HandleDeleteCanvas()", "community": 1, "community_name": "Community 1", "source_file": "handlers/api/kv/kv.go", "file_type": "code", "degree": 2}, {"id": "cf_kv_index_js", "label": "index.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 8}, {"id": "cf_kv_index_fetch", "label": "fetch()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 7}, {"id": "cf_kv_index_indexobject", "label": "IndexObject", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "IndexObject", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 3}, {"id": "cf_kv_index_indexobject_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 1}, {"id": "cf_kv_index_indexobject_fetch", "label": ".fetch()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetch()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 2}, {"id": "cf_kv_index_canvasobject", "label": "CanvasObject", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CanvasObject", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 6}, {"id": "cf_kv_index_canvasobject_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 1}, {"id": "cf_kv_index_canvasobject_fetch", "label": ".fetch()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".fetch()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 14}, {"id": "cf_kv_index_canvasobject_handlegetvalue", "label": ".handleGetValue()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleGetValue()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 3}, {"id": "cf_kv_index_canvasobject_handlebulkput", "label": ".handleBulkPut()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleBulkPut()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 5}, {"id": "cf_kv_index_canvasobject_handlebulkdelete", "label": ".handleBulkDelete()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleBulkDelete()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 5}, {"id": "cf_kv_index_parsekey", "label": "parseKey()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parseKey()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 4}, {"id": "cf_kv_index_isauthorized", "label": "isAuthorized()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isAuthorized()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 2}, {"id": "cf_kv_index_setcorsheaders", "label": "setCorsHeaders()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "setCorsHeaders()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 8}, {"id": "cf_kv_index_handleoptions", "label": "handleOptions()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleOptions()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 2}, {"id": "cf_kv_index_handlelistkeys", "label": "handleListKeys()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleListKeys()", "community": 8, "community_name": "Community 8", "source_file": "cf-kv/index.js", "file_type": "code", "degree": 4}, {"id": "workspace_http_go", "label": "http.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.7, "font": {"size": 0, "color": "#ffffff"}, "title": "http.go", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 24}, {"id": "workspace_api", "label": "API", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.8, "font": {"size": 12, "color": "#ffffff"}, "title": "API", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 44}, {"id": "workspace_http_newapi", "label": "NewAPI()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewAPI()", "community": 7, "community_name": "Community 7", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_routes", "label": ".Routes()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Routes()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 1}, {"id": "workspace_api_handlehealth", "label": ".handleHealth()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleHealth()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 2}, {"id": "workspace_api_handlesetupstatus", "label": ".handleSetupStatus()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleSetupStatus()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 3}, {"id": "workspace_contextkey", "label": "contextKey", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "contextKey", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 1}, {"id": "workspace_api_requiresession", "label": ".requireSession()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".requireSession()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_http_requiresameoriginmutation", "label": "requireSameOriginMutation()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "requireSameOriginMutation()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 2}, {"id": "workspace_api_handlesignup", "label": ".handleSignup()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleSignup()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 6}, {"id": "workspace_api_handlelogin", "label": ".handleLogin()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleLogin()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 6}, {"id": "workspace_api_handlelogout", "label": ".handleLogout()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleLogout()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 3}, {"id": "workspace_api_handleme", "label": ".handleMe()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleMe()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 3}, {"id": "workspace_api_handlelistteams", "label": ".handleListTeams()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListTeams()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlecreateteam", "label": ".handleCreateTeam()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleCreateTeam()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handleupdateteam", "label": ".handleUpdateTeam()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleUpdateTeam()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handlelistteammembers", "label": ".handleListTeamMembers()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListTeamMembers()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlelistdrawings", "label": ".handleListDrawings()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListDrawings()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlecreatedrawing", "label": ".handleCreateDrawing()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleCreateDrawing()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handlegetdrawing", "label": ".handleGetDrawing()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleGetDrawing()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handleupdatedrawing", "label": ".handleUpdateDrawing()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleUpdateDrawing()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handlearchivedrawing", "label": ".handleArchiveDrawing()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleArchiveDrawing()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 3}, {"id": "workspace_api_handlelistrevisions", "label": ".handleListRevisions()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListRevisions()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlecreaterevision", "label": ".handleCreateRevision()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleCreateRevision()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handlethumbnail", "label": ".handleThumbnail()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleThumbnail()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 6}, {"id": "workspace_http_ftoa", "label": "ftoa()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ftoa()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 2}, {"id": "workspace_http_itoa", "label": "itoa()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "itoa()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 2}, {"id": "workspace_http_htmlescape", "label": "htmlEscape()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "htmlEscape()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 2}, {"id": "workspace_api_handlelisttemplates", "label": ".handleListTemplates()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListTemplates()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlelistactivity", "label": ".handleListActivity()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListActivity()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlestats", "label": ".handleStats()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleStats()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlelistfolders", "label": ".handleListFolders()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListFolders()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlecreatefolder", "label": ".handleCreateFolder()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleCreateFolder()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handlelistprojects", "label": ".handleListProjects()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListProjects()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlecreateproject", "label": ".handleCreateProject()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleCreateProject()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handlesearch", "label": ".handleSearch()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleSearch()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_http_writelookuperror", "label": "writeLookupError()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.8, "font": {"size": 12, "color": "#ffffff"}, "title": "writeLookupError()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 31}, {"id": "workspace_http_decodejson", "label": "decodeJSON()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "decodeJSON()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 21}, {"id": "workspace_http_writejson", "label": "writeJSON()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "writeJSON()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 41}, {"id": "workspace_http_writeerror", "label": "writeError()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "writeError()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 15}, {"id": "workspace_http_setsessioncookie", "label": "setSessionCookie()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "setSessionCookie()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 6}, {"id": "workspace_http_clearsessioncookie", "label": "clearSessionCookie()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "clearSessionCookie()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 4}, {"id": "workspace_http_issecurerequest", "label": "isSecureRequest()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "isSecureRequest()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 3}, {"id": "workspace_http_clientip", "label": "clientIP()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "clientIP()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_sharing_go", "label": "store_sharing.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.7, "font": {"size": 0, "color": "#ffffff"}, "title": "store_sharing.go", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 24}, {"id": "workspace_createinviterequest", "label": "CreateInviteRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateInviteRequest", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 1}, {"id": "workspace_createpermissiongrantrequest", "label": "CreatePermissionGrantRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreatePermissionGrantRequest", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 1}, {"id": "workspace_createsharelinkrequest", "label": "CreateShareLinkRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateShareLinkRequest", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 1}, {"id": "workspace_createassetrequest", "label": "CreateAssetRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateAssetRequest", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 1}, {"id": "workspace_createembedrequest", "label": "CreateEmbedRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateEmbedRequest", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 1}, {"id": "workspace_createlinkrequest", "label": "CreateLinkRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateLinkRequest", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 1}, {"id": "workspace_store", "label": "Store", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Store", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 60}, {"id": "workspace_store_listteaminvites", "label": ".ListTeamInvites()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListTeamInvites()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_createteaminvite", "label": ".CreateTeamInvite()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateTeamInvite()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 7}, {"id": "workspace_store_acceptinvite", "label": ".AcceptInvite()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".AcceptInvite()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 6}, {"id": "workspace_store_listpermissiongrants", "label": ".ListPermissionGrants()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListPermissionGrants()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 1}, {"id": "workspace_store_createdrawingpermissiongrant", "label": ".CreateDrawingPermissionGrant()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateDrawingPermissionGrant()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 4}, {"id": "workspace_store_listsharelinks", "label": ".ListShareLinks()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListShareLinks()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_createdrawingsharelink", "label": ".CreateDrawingShareLink()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateDrawingShareLink()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 4}, {"id": "workspace_store_sharedresourcebytoken", "label": ".SharedResourceByToken()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".SharedResourceByToken()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 4}, {"id": "workspace_store_listdrawingassets", "label": ".ListDrawingAssets()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListDrawingAssets()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_createdrawingasset", "label": ".CreateDrawingAsset()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateDrawingAsset()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 5}, {"id": "workspace_store_listembeds", "label": ".ListEmbeds()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListEmbeds()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 1}, {"id": "workspace_store_createembed", "label": ".CreateEmbed()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateEmbed()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_listlinkreferences", "label": ".ListLinkReferences()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListLinkReferences()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 1}, {"id": "workspace_store_createdrawinglinkreference", "label": ".CreateDrawingLinkReference()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateDrawingLinkReference()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 4}, {"id": "workspace_store_ensureteampermission", "label": ".ensureTeamPermission()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".ensureTeamPermission()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 5}, {"id": "workspace_store_teamrole", "label": ".teamRole()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".teamRole()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_userbyid", "label": ".userByID()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".userByID()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_userbyemail", "label": ".userByEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".userByEmail()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_teammembership", "label": ".teamMembership()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".teamMembership()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_drawingbyidnoauth", "label": ".drawingByIDNoAuth()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".drawingByIDNoAuth()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 5}, {"id": "workspace_store_ensuretargetinteam", "label": ".ensureTargetInTeam()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ensureTargetInTeam()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_grantallows", "label": ".grantAllows()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".grantAllows()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_sharing_scansharelink", "label": "scanShareLink()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "scanShareLink()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_sharing_scanassets", "label": "scanAssets()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "scanAssets()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_sharing_roleallows", "label": "roleAllows()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "roleAllows()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_sharing_permissionallows", "label": "permissionAllows()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "permissionAllows()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_sharing_validpermission", "label": "validPermission()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "validPermission()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_sharing_validteamrole", "label": "validTeamRole()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "validTeamRole()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_sharing_validassetkind", "label": "validAssetKind()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "validAssetKind()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_sharing_validassetmime", "label": "validAssetMIME()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "validAssetMIME()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_sharing_validateembedurl", "label": "validateEmbedURL()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "validateEmbedURL()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store_sharing.go", "file_type": "code", "degree": 2}, {"id": "workspace_sharing_test_go", "label": "sharing_test.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "sharing_test.go", "community": 7, "community_name": "Community 7", "source_file": "workspace/sharing_test.go", "file_type": "code", "degree": 8}, {"id": "workspace_sharing_test_testinviteacceptaddseditormembership", "label": "TestInviteAcceptAddsEditorMembership()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestInviteAcceptAddsEditorMembership()", "community": 7, "community_name": "Community 7", "source_file": "workspace/sharing_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_sharing_test_testrestricteddrawinggrantallowsviewnotedit", "label": "TestRestrictedDrawingGrantAllowsViewNotEdit()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestRestrictedDrawingGrantAllowsViewNotEdit()", "community": 7, "community_name": "Community 7", "source_file": "workspace/sharing_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_sharing_test_testsharelinkallowsunauthenticateddrawingread", "label": "TestShareLinkAllowsUnauthenticatedDrawingRead()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestShareLinkAllowsUnauthenticatedDrawingRead()", "community": 7, "community_name": "Community 7", "source_file": "workspace/sharing_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_sharing_test_testembedsrejectunsafeurls", "label": "TestEmbedsRejectUnsafeURLs()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestEmbedsRejectUnsafeURLs()", "community": 7, "community_name": "Community 7", "source_file": "workspace/sharing_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_sharing_test_testassetsandlinkreferences", "label": "TestAssetsAndLinkReferences()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestAssetsAndLinkReferences()", "community": 7, "community_name": "Community 7", "source_file": "workspace/sharing_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_rate_limiter_go", "label": "rate_limiter.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "rate_limiter.go", "community": 1, "community_name": "Community 1", "source_file": "workspace/rate_limiter.go", "file_type": "code", "degree": 4}, {"id": "workspace_ratelimiter", "label": "rateLimiter", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "rateLimiter", "community": 1, "community_name": "Community 1", "source_file": "workspace/rate_limiter.go", "file_type": "code", "degree": 2}, {"id": "workspace_rate_limiter_newratelimiter", "label": "newRateLimiter()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "newRateLimiter()", "community": 7, "community_name": "Community 7", "source_file": "workspace/rate_limiter.go", "file_type": "code", "degree": 2}, {"id": "workspace_ratelimiter_allow", "label": ".allow()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".allow()", "community": 1, "community_name": "Community 1", "source_file": "workspace/rate_limiter.go", "file_type": "code", "degree": 1}, {"id": "workspace_permissions_test_go", "label": "permissions_test.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "permissions_test.go", "community": 7, "community_name": "Community 7", "source_file": "workspace/permissions_test.go", "file_type": "code", "degree": 7}, {"id": "workspace_permissions_test_testpermissionmatrix", "label": "TestPermissionMatrix()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestPermissionMatrix()", "community": 7, "community_name": "Community 7", "source_file": "workspace/permissions_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_permissions_test_testadmincanmanageteam", "label": "TestAdminCanManageTeam()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestAdminCanManageTeam()", "community": 7, "community_name": "Community 7", "source_file": "workspace/permissions_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_permissions_test_testnonmembercannotaccessprivateteam", "label": "TestNonMemberCannotAccessPrivateTeam()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestNonMemberCannotAccessPrivateTeam()", "community": 7, "community_name": "Community 7", "source_file": "workspace/permissions_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_permissions_test_testpermissioninheritance", "label": "TestPermissionInheritance()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestPermissionInheritance()", "community": 7, "community_name": "Community 7", "source_file": "workspace/permissions_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_models_go", "label": "models.go", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "models.go", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 19}, {"id": "workspace_user", "label": "User", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "User", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_session", "label": "Session", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Session", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_team", "label": "Team", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Team", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_teammembership", "label": "TeamMembership", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamMembership", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_teaminvite", "label": "TeamInvite", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamInvite", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_project", "label": "Project", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Project", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_folder", "label": "Folder", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Folder", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_drawing", "label": "Drawing", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Drawing", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_drawingrevision", "label": "DrawingRevision", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DrawingRevision", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_drawingasset", "label": "DrawingAsset", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DrawingAsset", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_template", "label": "Template", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Template", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_activityevent", "label": "ActivityEvent", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ActivityEvent", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_sharelink", "label": "ShareLink", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareLink", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_permissiongrant", "label": "PermissionGrant", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PermissionGrant", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_embed", "label": "Embed", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Embed", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_linkreference", "label": "LinkReference", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LinkReference", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_workspacestats", "label": "WorkspaceStats", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "WorkspaceStats", "community": 10, "community_name": "Community 10", "source_file": "workspace/models.go", "file_type": "code", "degree": 1}, {"id": "workspace_oauth_go", "label": "oauth.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "oauth.go", "community": 3, "community_name": "Community 3", "source_file": "workspace/oauth.go", "file_type": "code", "degree": 14}, {"id": "workspace_oauthprofile", "label": "OAuthProfile", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "OAuthProfile", "community": 3, "community_name": "Community 3", "source_file": "workspace/oauth.go", "file_type": "code", "degree": 1}, {"id": "workspace_store_upsertoauthsession", "label": ".UpsertOAuthSession()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpsertOAuthSession()", "community": 3, "community_name": "Community 3", "source_file": "workspace/oauth.go", "file_type": "code", "degree": 11}, {"id": "workspace_oauth_useridbyidentitytx", "label": "userIDByIdentityTx()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "userIDByIdentityTx()", "community": 3, "community_name": "Community 3", "source_file": "workspace/oauth.go", "file_type": "code", "degree": 2}, {"id": "workspace_oauth_useridbyemailtx", "label": "userIDByEmailTx()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "userIDByEmailTx()", "community": 3, "community_name": "Community 3", "source_file": "workspace/oauth.go", "file_type": "code", "degree": 2}, {"id": "workspace_oauth_createoauthusertx", "label": "createOAuthUserTx()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "createOAuthUserTx()", "community": 3, "community_name": "Community 3", "source_file": "workspace/oauth.go", "file_type": "code", "degree": 6}, {"id": "workspace_oauth_updateoauthusertx", "label": "updateOAuthUserTx()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "updateOAuthUserTx()", "community": 3, "community_name": "Community 3", "source_file": "workspace/oauth.go", "file_type": "code", "degree": 2}, {"id": "workspace_http_extra_go", "label": "http_extra.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "http_extra.go", "community": 1, "community_name": "Community 1", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlelistteaminvites", "label": ".handleListTeamInvites()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListTeamInvites()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlecreateteaminvite", "label": ".handleCreateTeamInvite()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleCreateTeamInvite()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handleacceptinvite", "label": ".handleAcceptInvite()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleAcceptInvite()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handlelistpermissions", "label": ".handleListPermissions()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListPermissions()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlecreatepermission", "label": ".handleCreatePermission()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleCreatePermission()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handlelistsharelinks", "label": ".handleListShareLinks()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListShareLinks()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlecreatesharelink", "label": ".handleCreateShareLink()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleCreateShareLink()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handlesharedresource", "label": ".handleSharedResource()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleSharedResource()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 3}, {"id": "workspace_api_handlelistassets", "label": ".handleListAssets()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListAssets()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlecreateasset", "label": ".handleCreateAsset()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleCreateAsset()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handlelistembeds", "label": ".handleListEmbeds()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListEmbeds()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlecreateembed", "label": ".handleCreateEmbed()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleCreateEmbed()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handlelistlinks", "label": ".handleListLinks()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleListLinks()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 4}, {"id": "workspace_api_handlecreatelink", "label": ".handleCreateLink()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleCreateLink()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 5}, {"id": "workspace_api_handlecreateteamuser", "label": ".handleCreateTeamUser()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleCreateTeamUser()", "community": 5, "community_name": "Community 5", "source_file": "workspace/http_extra.go", "file_type": "code", "degree": 5}, {"id": "workspace_stats_go", "label": "stats.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "stats.go", "community": 1, "community_name": "Community 1", "source_file": "workspace/stats.go", "file_type": "code", "degree": 1}, {"id": "workspace_store_workspacestats", "label": ".WorkspaceStats()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".WorkspaceStats()", "community": 3, "community_name": "Community 3", "source_file": "workspace/stats.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_workspacestatsforwhere", "label": ".workspaceStatsForWhere()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".workspaceStatsForWhere()", "community": 3, "community_name": "Community 3", "source_file": "workspace/stats.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_count", "label": ".count()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".count()", "community": 3, "community_name": "Community 3", "source_file": "workspace/stats.go", "file_type": "code", "degree": 2}, {"id": "workspace_oauth_test_go", "label": "oauth_test.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "oauth_test.go", "community": 7, "community_name": "Community 7", "source_file": "workspace/oauth_test.go", "file_type": "code", "degree": 3}, {"id": "workspace_oauth_test_testupsertoauthsessioncreatesandreusesidentity", "label": "TestUpsertOAuthSessionCreatesAndReusesIdentity()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TestUpsertOAuthSessionCreatesAndReusesIdentity()", "community": 7, "community_name": "Community 7", "source_file": "workspace/oauth_test.go", "file_type": "code", "degree": 2}, {"id": "workspace_http_test_go", "label": "http_test.go", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "http_test.go", "community": 7, "community_name": "Community 7", "source_file": "workspace/http_test.go", "file_type": "code", "degree": 20}, {"id": "workspace_http_test_newteststore", "label": "newTestStore()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "newTestStore()", "community": 7, "community_name": "Community 7", "source_file": "workspace/http_test.go", "file_type": "code", "degree": 7}, {"id": "workspace_http_test_databaseurlwithsearchpath", "label": "databaseURLWithSearchPath()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "databaseURLWithSearchPath()", "community": 7, "community_name": "Community 7", "source_file": "workspace/http_test.go", "file_type": "code", "degree": 2}, {"id": "workspace_http_test_newtestapi", "label": "newTestAPI()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "newTestAPI()", "community": 7, "community_name": "Community 7", "source_file": "workspace/http_test.go", "file_type": "code", "degree": 17}, {"id": "workspace_http_test_dojson", "label": "doJSON()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "doJSON()", "community": 7, "community_name": "Community 7", "source_file": "workspace/http_test.go", "file_type": "code", "degree": 16}, {"id": "workspace_http_test_signup", "label": "signup()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "signup()", "community": 7, "community_name": "Community 7", "source_file": "workspace/http_test.go", "file_type": "code", "degree": 16}, {"id": "workspace_http_test_testsignupcreatescookiesessionanddefaultteam", "label": "TestSignupCreatesCookieSessionAndDefaultTeam()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestSignupCreatesCookieSessionAndDefaultTeam()", "community": 7, "community_name": "Community 7", "source_file": "workspace/http_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_http_test_testdrawingaccessrequiresteammembership", "label": "TestDrawingAccessRequiresTeamMembership()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestDrawingAccessRequiresTeamMembership()", "community": 7, "community_name": "Community 7", "source_file": "workspace/http_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_http_test_testteammembersrequiremembership", "label": "TestTeamMembersRequireMembership()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestTeamMembersRequireMembership()", "community": 7, "community_name": "Community 7", "source_file": "workspace/http_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_http_test_testdrawingrevisionstemplatesandactivity", "label": "TestDrawingRevisionsTemplatesAndActivity()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestDrawingRevisionsTemplatesAndActivity()", "community": 7, "community_name": "Community 7", "source_file": "workspace/http_test.go", "file_type": "code", "degree": 4}, {"id": "workspace_http_test_testhealth", "label": "TestHealth()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TestHealth()", "community": 7, "community_name": "Community 7", "source_file": "workspace/http_test.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_go", "label": "store.go", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "store.go", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 43}, {"id": "workspace_createdrawingrequest", "label": "CreateDrawingRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateDrawingRequest", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 1}, {"id": "workspace_updatedrawingrequest", "label": "UpdateDrawingRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateDrawingRequest", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 1}, {"id": "workspace_createrevisionrequest", "label": "CreateRevisionRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateRevisionRequest", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 1}, {"id": "workspace_createfolderrequest", "label": "CreateFolderRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateFolderRequest", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 1}, {"id": "workspace_createprojectrequest", "label": "CreateProjectRequest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateProjectRequest", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 1}, {"id": "workspace_store_newstore", "label": "NewStore()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "NewStore()", "community": 1, "community_name": "Community 1", "source_file": "workspace/store.go", "file_type": "code", "degree": 5}, {"id": "workspace_store_close", "label": ".Close()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".Close()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 11}, {"id": "workspace_store_ping", "label": ".Ping()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Ping()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 1}, {"id": "workspace_store_seedtemplates", "label": ".seedTemplates()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".seedTemplates()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 4}, {"id": "workspace_store_userexists", "label": ".UserExists()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".UserExists()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 1}, {"id": "workspace_store_createuserwithpassword", "label": ".CreateUserWithPassword()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateUserWithPassword()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 8}, {"id": "workspace_store_createteamuser", "label": ".CreateTeamUser()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateTeamUser()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 6}, {"id": "workspace_store_authenticatepassword", "label": ".AuthenticatePassword()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".AuthenticatePassword()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 5}, {"id": "workspace_store_userbysessiontoken", "label": ".UserBySessionToken()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".UserBySessionToken()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_deletesession", "label": ".DeleteSession()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".DeleteSession()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_listteamsforuser", "label": ".ListTeamsForUser()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListTeamsForUser()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_createteam", "label": ".CreateTeam()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateTeam()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_updateteam", "label": ".UpdateTeam()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateTeam()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_getteam", "label": ".GetTeam()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetTeam()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_usercanaccessteam", "label": ".UserCanAccessTeam()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".UserCanAccessTeam()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 9}, {"id": "workspace_store_listteammembers", "label": ".ListTeamMembers()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListTeamMembers()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_listdrawings", "label": ".ListDrawings()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListDrawings()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_listdrawingsbyquery", "label": ".listDrawingsByQuery()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".listDrawingsByQuery()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 4}, {"id": "workspace_store_searchdrawings", "label": ".SearchDrawings()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".SearchDrawings()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_createdrawing", "label": ".CreateDrawing()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateDrawing()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 10}, {"id": "workspace_store_getdrawing", "label": ".GetDrawing()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".GetDrawing()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 5}, {"id": "workspace_store_updatedrawing", "label": ".UpdateDrawing()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".UpdateDrawing()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 6}, {"id": "workspace_store_archivedrawing", "label": ".ArchiveDrawing()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".ArchiveDrawing()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_listrevisions", "label": ".ListRevisions()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListRevisions()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_createrevision", "label": ".CreateRevision()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateRevision()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 4}, {"id": "workspace_store_listtemplates", "label": ".ListTemplates()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListTemplates()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_listactivity", "label": ".ListActivity()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListActivity()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_listfolders", "label": ".ListFolders()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListFolders()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 4}, {"id": "workspace_store_createfolder", "label": ".CreateFolder()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateFolder()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 5}, {"id": "workspace_store_listprojects", "label": ".ListProjects()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".ListProjects()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 4}, {"id": "workspace_store_createproject", "label": ".CreateProject()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".CreateProject()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 4}, {"id": "workspace_store_defaultteamid", "label": ".defaultTeamID()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".defaultTeamID()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 5}, {"id": "workspace_store_ensuredrawingaccess", "label": ".ensureDrawingAccess()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".ensureDrawingAccess()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 7}, {"id": "workspace_store_createteamtx", "label": "createTeamTx()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "createTeamTx()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 7}, {"id": "workspace_store_createsessiontx", "label": "createSessionTx()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "createSessionTx()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 7}, {"id": "workspace_store_createrevisiontx", "label": "createRevisionTx()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "createRevisionTx()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 4}, {"id": "workspace_store_insertactivity", "label": ".insertActivity()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".insertActivity()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_insertactivitytx", "label": "insertActivityTx()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "insertActivityTx()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 10}, {"id": "workspace_execer", "label": "execer", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "execer", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 1}, {"id": "workspace_store_insertactivityexec", "label": "insertActivityExec()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "insertActivityExec()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 4}, {"id": "workspace_drawingscanner", "label": "drawingScanner", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "drawingScanner", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 1}, {"id": "workspace_store_scandrawing", "label": "scanDrawing()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "scanDrawing()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 5}, {"id": "workspace_userhashscanner", "label": "userHashScanner", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "userHashScanner", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 1}, {"id": "workspace_store_scanuserwithhash", "label": "scanUserWithHash()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "scanUserWithHash()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_normalizeemail", "label": "normalizeEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeEmail()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 7}, {"id": "workspace_store_uniqueusername", "label": "uniqueUsername()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "uniqueUsername()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 4}, {"id": "workspace_store_uniqueteamslug", "label": "uniqueTeamSlug()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "uniqueTeamSlug()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_slugify", "label": "slugify()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "slugify()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 11}, {"id": "workspace_store_validdrawingvisibility", "label": "validDrawingVisibility()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "validDrawingVisibility()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 3}, {"id": "workspace_store_randomtoken", "label": "randomToken()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "randomToken()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 5}, {"id": "workspace_store_hashtoken", "label": "hashToken()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "hashToken()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 8}, {"id": "workspace_store_newid", "label": "newID()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "newID()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 21}, {"id": "workspace_store_ptr", "label": "ptr()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ptr()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 2}, {"id": "workspace_store_deref", "label": "deref()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "deref()", "community": 3, "community_name": "Community 3", "source_file": "workspace/store.go", "file_type": "code", "degree": 2}, {"id": "workspace_context_go", "label": "context.go", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "context.go", "community": 5, "community_name": "Community 5", "source_file": "workspace/context.go", "file_type": "code", "degree": 4}, {"id": "workspace_currentsession", "label": "currentSession", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "currentSession", "community": 5, "community_name": "Community 5", "source_file": "workspace/context.go", "file_type": "code", "degree": 1}, {"id": "workspace_context_withuser", "label": "withUser()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "withUser()", "community": 5, "community_name": "Community 5", "source_file": "workspace/context.go", "file_type": "code", "degree": 2}, {"id": "workspace_context_currentuser", "label": "currentUser()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "currentUser()", "community": 5, "community_name": "Community 5", "source_file": "workspace/context.go", "file_type": "code", "degree": 36}, {"id": "internal_postgres_postgres_go", "label": "postgres.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "postgres.go", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 13}, {"id": "postgres_db", "label": "DB", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "DB", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 5}, {"id": "postgres_tx", "label": "Tx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Tx", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 4}, {"id": "postgres_postgres_open", "label": "Open()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Open()", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 4}, {"id": "postgres_postgres_migrate", "label": "Migrate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Migrate()", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 3}, {"id": "postgres_db_execcontext", "label": ".ExecContext()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".ExecContext()", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 3}, {"id": "postgres_db_querycontext", "label": ".QueryContext()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".QueryContext()", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 3}, {"id": "postgres_db_queryrowcontext", "label": ".QueryRowContext()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".QueryRowContext()", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 3}, {"id": "postgres_db_begintx", "label": ".BeginTx()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".BeginTx()", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 1}, {"id": "postgres_tx_execcontext", "label": ".ExecContext()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".ExecContext()", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 3}, {"id": "postgres_tx_querycontext", "label": ".QueryContext()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".QueryContext()", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 3}, {"id": "postgres_tx_queryrowcontext", "label": ".QueryRowContext()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".QueryRowContext()", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 3}, {"id": "postgres_postgres_rebind", "label": "Rebind()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Rebind()", "community": 1, "community_name": "Community 1", "source_file": "internal/postgres/postgres.go", "file_type": "code", "degree": 7}, {"id": "middleware_auth_go", "label": "auth.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.go", "community": 1, "community_name": "Community 1", "source_file": "middleware/auth.go", "file_type": "code", "degree": 7}, {"id": "middleware_contextkey", "label": "contextKey", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "contextKey", "community": 1, "community_name": "Community 1", "source_file": "middleware/auth.go", "file_type": "code", "degree": 1}, {"id": "middleware_auth_authjwt", "label": "AuthJWT()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthJWT()", "community": 6, "community_name": "Community 6", "source_file": "middleware/auth.go", "file_type": "code", "degree": 2}, {"id": "core_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": 1, "community_name": "Community 1", "source_file": "core/user.go", "file_type": "code", "degree": 2}, {"id": "core_user", "label": "User", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "User", "community": 1, "community_name": "Community 1", "source_file": "core/user.go", "file_type": "code", "degree": 1}, {"id": "core_entity_go", "label": "entity.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "entity.go", "community": 1, "community_name": "Community 1", "source_file": "core/entity.go", "file_type": "code", "degree": 4}, {"id": "core_document", "label": "Document", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Document", "community": 1, "community_name": "Community 1", "source_file": "core/entity.go", "file_type": "code", "degree": 1}, {"id": "core_documentstore", "label": "DocumentStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DocumentStore", "community": 1, "community_name": "Community 1", "source_file": "core/entity.go", "file_type": "code", "degree": 1}, {"id": "core_canvas_go", "label": "canvas.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "canvas.go", "community": 1, "community_name": "Community 1", "source_file": "core/canvas.go", "file_type": "code", "degree": 4}, {"id": "core_canvas", "label": "Canvas", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Canvas", "community": 1, "community_name": "Community 1", "source_file": "core/canvas.go", "file_type": "code", "degree": 1}, {"id": "core_canvasstore", "label": "CanvasStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CanvasStore", "community": 1, "community_name": "Community 1", "source_file": "core/canvas.go", "file_type": "code", "degree": 1}, {"id": "stores_storage_go", "label": "storage.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "storage.go", "community": 1, "community_name": "Community 1", "source_file": "stores/storage.go", "file_type": "code", "degree": 9}, {"id": "stores_store", "label": "Store", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Store", "community": 1, "community_name": "Community 1", "source_file": "stores/storage.go", "file_type": "code", "degree": 1}, {"id": "stores_storage_getstore", "label": "GetStore()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "GetStore()", "community": 1, "community_name": "Community 1", "source_file": "stores/storage.go", "file_type": "code", "degree": 3}, {"id": "stores_memory_store_go", "label": "store.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "store.go", "community": 1, "community_name": "Community 1", "source_file": "stores/memory/store.go", "file_type": "code", "degree": 9}, {"id": "memory_memstore", "label": "memStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "memStore", "community": 1, "community_name": "Community 1", "source_file": "stores/memory/store.go", "file_type": "code", "degree": 7}, {"id": "memory_store_newstore", "label": "NewStore()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "NewStore()", "community": 1, "community_name": "Community 1", "source_file": "stores/memory/store.go", "file_type": "code", "degree": 1}, {"id": "memory_memstore_findid", "label": ".FindID()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".FindID()", "community": 1, "community_name": "Community 1", "source_file": "stores/memory/store.go", "file_type": "code", "degree": 1}, {"id": "memory_memstore_create", "label": ".Create()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Create()", "community": 1, "community_name": "Community 1", "source_file": "stores/memory/store.go", "file_type": "code", "degree": 1}, {"id": "memory_memstore_list", "label": ".List()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".List()", "community": 1, "community_name": "Community 1", "source_file": "stores/memory/store.go", "file_type": "code", "degree": 1}, {"id": "memory_memstore_get", "label": ".Get()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Get()", "community": 1, "community_name": "Community 1", "source_file": "stores/memory/store.go", "file_type": "code", "degree": 1}, {"id": "memory_memstore_save", "label": ".Save()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Save()", "community": 1, "community_name": "Community 1", "source_file": "stores/memory/store.go", "file_type": "code", "degree": 1}, {"id": "memory_memstore_delete", "label": ".Delete()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Delete()", "community": 1, "community_name": "Community 1", "source_file": "stores/memory/store.go", "file_type": "code", "degree": 2}, {"id": "stores_aws_store_go", "label": "store.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "store.go", "community": 1, "community_name": "Community 1", "source_file": "stores/aws/store.go", "file_type": "code", "degree": 18}, {"id": "aws_s3store", "label": "s3Store", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "s3Store", "community": 11, "community_name": "Community 11", "source_file": "stores/aws/store.go", "file_type": "code", "degree": 8}, {"id": "aws_store_newstore", "label": "NewStore()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "NewStore()", "community": 1, "community_name": "Community 1", "source_file": "stores/aws/store.go", "file_type": "code", "degree": 1}, {"id": "aws_s3store_findid", "label": ".FindID()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".FindID()", "community": 11, "community_name": "Community 11", "source_file": "stores/aws/store.go", "file_type": "code", "degree": 1}, {"id": "aws_s3store_create", "label": ".Create()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Create()", "community": 11, "community_name": "Community 11", "source_file": "stores/aws/store.go", "file_type": "code", "degree": 1}, {"id": "aws_s3store_getcanvaskey", "label": ".getCanvasKey()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCanvasKey()", "community": 11, "community_name": "Community 11", "source_file": "stores/aws/store.go", "file_type": "code", "degree": 4}, {"id": "aws_s3store_list", "label": ".List()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".List()", "community": 11, "community_name": "Community 11", "source_file": "stores/aws/store.go", "file_type": "code", "degree": 1}, {"id": "aws_s3store_get", "label": ".Get()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".Get()", "community": 11, "community_name": "Community 11", "source_file": "stores/aws/store.go", "file_type": "code", "degree": 3}, {"id": "aws_s3store_save", "label": ".Save()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".Save()", "community": 11, "community_name": "Community 11", "source_file": "stores/aws/store.go", "file_type": "code", "degree": 3}, {"id": "aws_s3store_delete", "label": ".Delete()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Delete()", "community": 11, "community_name": "Community 11", "source_file": "stores/aws/store.go", "file_type": "code", "degree": 2}, {"id": "stores_postgres_store_go", "label": "store.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "store.go", "community": 1, "community_name": "Community 1", "source_file": "stores/postgres/store.go", "file_type": "code", "degree": 12}, {"id": "postgres_postgresstore", "label": "postgresStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "postgresStore", "community": 1, "community_name": "Community 1", "source_file": "stores/postgres/store.go", "file_type": "code", "degree": 7}, {"id": "postgres_store_newstore", "label": "NewStore()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "NewStore()", "community": 1, "community_name": "Community 1", "source_file": "stores/postgres/store.go", "file_type": "code", "degree": 3}, {"id": "postgres_postgresstore_findid", "label": ".FindID()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".FindID()", "community": 1, "community_name": "Community 1", "source_file": "stores/postgres/store.go", "file_type": "code", "degree": 1}, {"id": "postgres_postgresstore_create", "label": ".Create()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Create()", "community": 1, "community_name": "Community 1", "source_file": "stores/postgres/store.go", "file_type": "code", "degree": 1}, {"id": "postgres_postgresstore_list", "label": ".List()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".List()", "community": 1, "community_name": "Community 1", "source_file": "stores/postgres/store.go", "file_type": "code", "degree": 1}, {"id": "postgres_postgresstore_get", "label": ".Get()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Get()", "community": 1, "community_name": "Community 1", "source_file": "stores/postgres/store.go", "file_type": "code", "degree": 1}, {"id": "postgres_postgresstore_save", "label": ".Save()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Save()", "community": 1, "community_name": "Community 1", "source_file": "stores/postgres/store.go", "file_type": "code", "degree": 1}, {"id": "postgres_postgresstore_delete", "label": ".Delete()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Delete()", "community": 1, "community_name": "Community 1", "source_file": "stores/postgres/store.go", "file_type": "code", "degree": 1}, {"id": "stores_filesystem_store_go", "label": "store.go", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "store.go", "community": 1, "community_name": "Community 1", "source_file": "stores/filesystem/store.go", "file_type": "code", "degree": 14}, {"id": "filesystem_fsstore", "label": "fsStore", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "fsStore", "community": 6, "community_name": "Community 6", "source_file": "stores/filesystem/store.go", "file_type": "code", "degree": 8}, {"id": "filesystem_store_newstore", "label": "NewStore()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NewStore()", "community": 1, "community_name": "Community 1", "source_file": "stores/filesystem/store.go", "file_type": "code", "degree": 4}, {"id": "filesystem_fsstore_findid", "label": ".FindID()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".FindID()", "community": 6, "community_name": "Community 6", "source_file": "stores/filesystem/store.go", "file_type": "code", "degree": 1}, {"id": "filesystem_fsstore_create", "label": ".Create()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".Create()", "community": 6, "community_name": "Community 6", "source_file": "stores/filesystem/store.go", "file_type": "code", "degree": 1}, {"id": "filesystem_fsstore_getusercanvaspath", "label": ".getUserCanvasPath()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUserCanvasPath()", "community": 6, "community_name": "Community 6", "source_file": "stores/filesystem/store.go", "file_type": "code", "degree": 5}, {"id": "filesystem_fsstore_list", "label": ".List()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".List()", "community": 6, "community_name": "Community 6", "source_file": "stores/filesystem/store.go", "file_type": "code", "degree": 2}, {"id": "filesystem_fsstore_get", "label": ".Get()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".Get()", "community": 6, "community_name": "Community 6", "source_file": "stores/filesystem/store.go", "file_type": "code", "degree": 3}, {"id": "filesystem_fsstore_save", "label": ".Save()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".Save()", "community": 6, "community_name": "Community 6", "source_file": "stores/filesystem/store.go", "file_type": "code", "degree": 2}, {"id": "filesystem_fsstore_delete", "label": ".Delete()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".Delete()", "community": 6, "community_name": "Community 6", "source_file": "stores/filesystem/store.go", "file_type": "code", "degree": 4}, {"id": "frontend_eslint_config_mjs", "label": "eslint.config.mjs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint.config.mjs", "community": 14, "community_name": "Community 14", "source_file": "frontend/eslint.config.mjs", "file_type": "code", "degree": 2}, {"id": "frontend_vitest_config_mjs", "label": "vitest.config.mjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.mjs", "community": 12, "community_name": "Community 12", "source_file": "frontend/vitest.config.mjs", "file_type": "code", "degree": 4}, {"id": "frontend_playwright_config_ts", "label": "playwright.config.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "playwright.config.ts", "community": 15, "community_name": "Community 15", "source_file": "frontend/playwright.config.ts", "file_type": "code", "degree": 1}, {"id": "frontend_vite_config_ts", "label": "vite.config.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "vite.config.ts", "community": 12, "community_name": "Community 12", "source_file": "frontend/vite.config.ts", "file_type": "code", "degree": 3}, {"id": "frontend_e2e_app_spec_ts", "label": "app.spec.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "app.spec.ts", "community": 15, "community_name": "Community 15", "source_file": "frontend/e2e/app.spec.ts", "file_type": "code", "degree": 1}, {"id": "frontend_dist_test_assets_index_b3vpcucp_js", "label": "index-B3VpcuCP.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "index-B3VpcuCP.js", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 193}, {"id": "assets_index_b3vpcucp_c", "label": "c()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "c()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 13}, {"id": "assets_index_b3vpcucp_u", "label": "u()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "u()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 8}, {"id": "assets_index_b3vpcucp_mg", "label": "mg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "mg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_sv", "label": "Sv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Sv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_v", "label": "_v()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "_v()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_xv", "label": "xv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "xv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 9}, {"id": "assets_index_b3vpcucp_vu", "label": "vu()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "vu()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_ev", "label": "Ev()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Ev()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_jv", "label": "jv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "jv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_nv", "label": "Nv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Nv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_tv", "label": "Tv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Tv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_wv", "label": "wv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "wv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 17}, {"id": "assets_index_b3vpcucp_cv", "label": "Cv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Cv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_mm", "label": "Mm()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Mm()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_av", "label": "Av()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Av()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_et", "label": "et()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "et()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 20}, {"id": "assets_index_b3vpcucp_oa", "label": "oa()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "oa()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 10}, {"id": "assets_index_b3vpcucp_ov", "label": "Ov()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Ov()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_lm", "label": "Lm()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Lm()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_lo", "label": "lo()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "lo()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_bi", "label": "Bi()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Bi()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_ol", "label": "Ol()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Ol()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_dv", "label": "Dv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_mv", "label": "Mv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Mv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_gg", "label": "gg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "gg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_lv", "label": "Lv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Lv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 8}, {"id": "assets_index_b3vpcucp_pg", "label": "pg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_yg", "label": "yg()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "yg()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_uv", "label": "Uv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Uv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_vv", "label": "Vv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Vv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_gv", "label": "Gv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Gv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_du", "label": "du()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "du()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_qv", "label": "Qv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Qv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_kv", "label": "Kv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Kv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_va", "label": "Va()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Va()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 8}, {"id": "assets_index_b3vpcucp_hm", "label": "Hm()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Hm()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_kc", "label": "Kc()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Kc()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_fv", "label": "Fv()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Fv()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_ho", "label": "ho()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ho()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_bu", "label": "bu()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "bu()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_constructor", "label": "constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "constructor()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_t0", "label": "t0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "t0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_a0", "label": "a0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "a0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_sg", "label": "Sg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Sg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_l0", "label": "l0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "l0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_c0", "label": "c0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "c0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_o0", "label": "o0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "o0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_f0", "label": "f0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "f0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_ml", "label": "Ml()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Ml()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_sa", "label": "Sa()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Sa()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 13}, {"id": "assets_index_b3vpcucp_tg", "label": "Tg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Tg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_ga", "label": "Ga()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Ga()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 13}, {"id": "assets_index_b3vpcucp_d0", "label": "d0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "d0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_wg", "label": "wg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "wg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_yi", "label": "Yi()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Yi()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 9}, {"id": "assets_index_b3vpcucp_h0", "label": "h0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "h0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_cg", "label": "Cg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Cg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 11}, {"id": "assets_index_b3vpcucp_m0", "label": "m0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "m0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 10}, {"id": "assets_index_b3vpcucp_getderivedstatefromerror", "label": "getDerivedStateFromError()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getDerivedStateFromError()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_getderivedstatefromprops", "label": "getDerivedStateFromProps()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getDerivedStateFromProps()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_componentdidcatch", "label": "componentDidCatch()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "componentDidCatch()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_render", "label": "render()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "render()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_p0", "label": "p0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "p0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_y0", "label": "y0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "y0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_v0", "label": "v0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "v0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_go", "label": "go()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "go()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_b0", "label": "b0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "b0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_s0", "label": "S0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "S0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_0", "label": "_0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "_0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_po", "label": "po()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "po()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_x0", "label": "x0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "x0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_e0", "label": "E0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "E0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_j0", "label": "j0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "j0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_zg", "label": "zg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "zg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_n0", "label": "N0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "N0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_jc", "label": "Jc()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Jc()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 8}, {"id": "assets_index_b3vpcucp_km", "label": "km()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "km()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_io", "label": "io()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "io()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_w0", "label": "w0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "w0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_r0", "label": "R0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "R0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_z0", "label": "z0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "z0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_fc", "label": "Fc()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Fc()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_yo", "label": "yo()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "yo()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_ag", "label": "Ag()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Ag()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_u0", "label": "U0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "U0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_qm", "label": "qm()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "qm()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 9}, {"id": "assets_index_b3vpcucp_k0", "label": "k0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "k0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_q0", "label": "q0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "q0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_vo", "label": "vo()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "vo()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_so", "label": "So()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "So()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 8}, {"id": "assets_index_b3vpcucp_di", "label": "Di()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Di()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_g0", "label": "G0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "G0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_ce", "label": "ce()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ce()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_k", "label": "K()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "K()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_i0", "label": "I0()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "I0()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_a1", "label": "a1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "a1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_n1", "label": "n1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "n1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_l1", "label": "l1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "l1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_fe", "label": "fe()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "fe()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 28}, {"id": "assets_index_b3vpcucp_mi", "label": "Mi()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Mi()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_m", "label": "$m()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "$m()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_i1", "label": "i1()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "i1()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_ym", "label": "Ym()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Ym()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_vm", "label": "Vm()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Vm()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_ui", "label": "Ui()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Ui()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_gm", "label": "Gm()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Gm()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_u1", "label": "u1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "u1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_mu", "label": "mu()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "mu()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_r1", "label": "r1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "r1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_lg", "label": "Lg()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Lg()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_ka", "label": "ka()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ka()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_o1", "label": "o1()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "o1()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_f1", "label": "f1", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "f1", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_f1_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_f1_getregexp", "label": ".getRegExp()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getRegExp()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_m1", "label": "m1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "m1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_ki", "label": "ki()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ki()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_gu", "label": "gu", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "gu", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 10}, {"id": "assets_index_b3vpcucp_gu_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_gu_init", "label": ".init()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".init()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_gu_log", "label": ".log()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".log()", "community": 1, "community_name": "Community 1", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_gu_warn", "label": ".warn()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".warn()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 21}, {"id": "assets_index_b3vpcucp_gu_error", "label": ".error()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".error()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 20}, {"id": "assets_index_b3vpcucp_gu_deprecate", "label": ".deprecate()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".deprecate()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_gu_forward", "label": ".forward()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".forward()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_gu_create", "label": ".create()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 9}, {"id": "assets_index_b3vpcucp_gu_clone", "label": ".clone()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".clone()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_eu", "label": "Eu", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Eu", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_eu_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_eu_on", "label": ".on()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".on()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_eu_off", "label": ".off()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".off()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_eu_once", "label": ".once()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".once()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_eu_emit", "label": ".emit()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".emit()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 9}, {"id": "assets_index_b3vpcucp_xm", "label": "Xm", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Xm", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 14}, {"id": "assets_index_b3vpcucp_xm_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_xm_addnamespaces", "label": ".addNamespaces()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".addNamespaces()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_xm_removenamespaces", "label": ".removeNamespaces()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".removeNamespaces()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_xm_getresource", "label": ".getResource()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getResource()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_xm_addresource", "label": ".addResource()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".addResource()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_xm_addresources", "label": ".addResources()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".addResources()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_xm_addresourcebundle", "label": ".addResourceBundle()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".addResourceBundle()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_xm_removeresourcebundle", "label": ".removeResourceBundle()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".removeResourceBundle()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_xm_hasresourcebundle", "label": ".hasResourceBundle()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".hasResourceBundle()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_xm_getresourcebundle", "label": ".getResourceBundle()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getResourceBundle()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_xm_getdatabylanguage", "label": ".getDataByLanguage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDataByLanguage()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_xm_haslanguagesometranslations", "label": ".hasLanguageSomeTranslations()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".hasLanguageSomeTranslations()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_xm_tojson", "label": ".toJSON()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".toJSON()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_addpostprocessor", "label": "addPostProcessor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "addPostProcessor()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_handle", "label": "handle()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handle()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_p1", "label": "p1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "p1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_al", "label": "Al()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Al()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_wc", "label": "Wc()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Wc()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_pu", "label": "pu", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "pu", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 12}, {"id": "assets_index_b3vpcucp_pu_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_pu_changelanguage", "label": ".changeLanguage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".changeLanguage()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_pu_exists", "label": ".exists()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".exists()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_pu_extractfromkey", "label": ".extractFromKey()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractFromKey()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_pu_translate", "label": ".translate()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".translate()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 16}, {"id": "assets_index_b3vpcucp_pu_extendtranslation", "label": ".extendTranslation()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".extendTranslation()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 9}, {"id": "assets_index_b3vpcucp_pu_resolve", "label": ".resolve()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".resolve()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 8}, {"id": "assets_index_b3vpcucp_pu_isvalidlookup", "label": ".isValidLookup()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".isValidLookup()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_pu_getresource", "label": ".getResource()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".getResource()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_pu_getusedparamsdetails", "label": ".getUsedParamsDetails()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUsedParamsDetails()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_pu_hasdefaultvalue", "label": ".hasDefaultValue()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".hasDefaultValue()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_qm_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_qm_getscriptpartfromcode", "label": ".getScriptPartFromCode()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getScriptPartFromCode()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_qm_getlanguagepartfromcode", "label": ".getLanguagePartFromCode()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getLanguagePartFromCode()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 8}, {"id": "assets_index_b3vpcucp_qm_formatlanguagecode", "label": ".formatLanguageCode()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".formatLanguageCode()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_qm_issupportedcode", "label": ".isSupportedCode()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".isSupportedCode()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_qm_getbestmatchfromcodes", "label": ".getBestMatchFromCodes()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBestMatchFromCodes()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_qm_getfallbackcodes", "label": ".getFallbackCodes()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getFallbackCodes()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 10}, {"id": "assets_index_b3vpcucp_qm_toresolvehierarchy", "label": ".toResolveHierarchy()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".toResolveHierarchy()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 8}, {"id": "assets_index_b3vpcucp_y1", "label": "y1", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "y1", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 8}, {"id": "assets_index_b3vpcucp_y1_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_y1_clearcache", "label": ".clearCache()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".clearCache()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_y1_getrule", "label": ".getRule()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getRule()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_y1_needsplural", "label": ".needsPlural()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".needsPlural()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_y1_getpluralformsofkey", "label": ".getPluralFormsOfKey()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPluralFormsOfKey()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_y1_getsuffixes", "label": ".getSuffixes()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSuffixes()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_y1_getsuffix", "label": ".getSuffix()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSuffix()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_jm", "label": "Jm()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Jm()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_ic", "label": "Ic()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Ic()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_fm", "label": "Fm", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fm", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 8}, {"id": "assets_index_b3vpcucp_fm_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_fm_init", "label": ".init()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".init()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_fm_reset", "label": ".reset()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".reset()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_fm_resetregexp", "label": ".resetRegExp()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".resetRegExp()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_fm_interpolate", "label": ".interpolate()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".interpolate()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_fm_nest", "label": ".nest()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".nest()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_v1", "label": "v1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "v1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_wm", "label": "Wm()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Wm()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_b1", "label": "b1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "b1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_s1", "label": "S1", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "S1", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_s1_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_s1_init", "label": ".init()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".init()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_s1_add", "label": ".add()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".add()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_s1_addcached", "label": ".addCached()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".addCached()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_s1_format", "label": ".format()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".format()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_1", "label": "_1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_x1", "label": "x1", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "x1", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 10}, {"id": "assets_index_b3vpcucp_x1_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_x1_queueload", "label": ".queueLoad()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".queueLoad()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_x1_loaded", "label": ".loaded()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".loaded()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_x1_read", "label": ".read()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".read()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_x1_prepareloading", "label": ".prepareLoading()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".prepareLoading()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_x1_load", "label": ".load()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".load()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_x1_reload", "label": ".reload()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".reload()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_x1_loadone", "label": ".loadOne()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".loadOne()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_x1_savemissing", "label": ".saveMissing()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".saveMissing()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_pc", "label": "Pc()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Pc()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_im", "label": "Im()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Im()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_ru", "label": "ru()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ru()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_e1", "label": "E1()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "E1()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_hi", "label": "Hi", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Hi", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 20}, {"id": "assets_index_b3vpcucp_hi_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_hi_init", "label": ".init()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".init()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 9}, {"id": "assets_index_b3vpcucp_hi_loadresources", "label": ".loadResources()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".loadResources()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_hi_reloadresources", "label": ".reloadResources()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".reloadResources()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_hi_use", "label": ".use()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".use()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_hi_setresolvedlanguage", "label": ".setResolvedLanguage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".setResolvedLanguage()", "community": 9, "community_name": "Community 9", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_hi_changelanguage", "label": ".changeLanguage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".changeLanguage()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_hi_getfixedt", "label": ".getFixedT()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getFixedT()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_hi_t", "label": ".t()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".t()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 8}, {"id": "assets_index_b3vpcucp_hi_exists", "label": ".exists()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".exists()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_hi_setdefaultnamespace", "label": ".setDefaultNamespace()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".setDefaultNamespace()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_hi_hasloadednamespace", "label": ".hasLoadedNamespace()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".hasLoadedNamespace()", "community": 6, "community_name": "Community 6", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_hi_loadnamespaces", "label": ".loadNamespaces()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".loadNamespaces()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_hi_loadlanguages", "label": ".loadLanguages()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".loadLanguages()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_hi_dir", "label": ".dir()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".dir()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_hi_createinstance", "label": ".createInstance()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInstance()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_hi_cloneinstance", "label": ".cloneInstance()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".cloneInstance()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_hi_tojson", "label": ".toJSON()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".toJSON()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_j1", "label": "j1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "j1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_uo", "label": "uo()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "uo()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_bg", "label": "Bg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Bg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_ro", "label": "ro()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ro()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_eg", "label": "eg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "eg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 5}, {"id": "assets_index_b3vpcucp_kn", "label": "kn()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "kn()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 7}, {"id": "assets_index_b3vpcucp_t1", "label": "T1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "T1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_z1", "label": "z1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "z1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_d1", "label": "D1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "D1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_h1", "label": "H1", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "H1", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_h1_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_h1_addusednamespaces", "label": ".addUsedNamespaces()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".addUsedNamespaces()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_h1_getusednamespaces", "label": ".getUsedNamespaces()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUsedNamespaces()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_k1", "label": "k1()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "k1()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_xa", "label": "Xa()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Xa()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 13}, {"id": "assets_index_b3vpcucp_q1", "label": "Q1()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Q1()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_lookup", "label": "lookup()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "lookup()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_cacheuserlanguage", "label": "cacheUserLanguage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "cacheUserLanguage()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_ig", "label": "ig()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ig()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_lb", "label": "lb()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lb()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_yg_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_yg_init", "label": ".init()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".init()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 13}, {"id": "assets_index_b3vpcucp_yg_adddetector", "label": ".addDetector()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".addDetector()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_yg_detect", "label": ".detect()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".detect()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_yg_cacheuserlanguage", "label": ".cacheUserLanguage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".cacheUserLanguage()", "community": 4, "community_name": "Community 4", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_vb", "label": "vb()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "vb()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_vg", "label": "Vg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Vg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_de", "label": "de()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "de()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_xb", "label": "Xb()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Xb()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_qb", "label": "Qb()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Qb()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_og", "label": "og()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "og()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_zb", "label": "Zb()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Zb()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_oo", "label": "oo()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "oo()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_jb", "label": "Jb()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Jb()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_wb", "label": "Wb()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Wb()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_no", "label": "no()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "no()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_w2", "label": "w2()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "w2()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_np", "label": "np()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "np()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_c2", "label": "C2()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "C2()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_xt", "label": "Xt()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Xt()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_vn", "label": "vn()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vn()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_ya", "label": "Ya()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Ya()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_ns", "label": "nS()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "nS()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_ua", "label": "ua()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ua()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_ot", "label": "ot()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ot()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_zl", "label": "zl()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "zl()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_ms", "label": "mS()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "mS()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_cs", "label": "CS()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CS()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_vs", "label": "VS()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "VS()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_xs", "label": "XS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "XS", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_xs_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_qe", "label": "Qe()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Qe()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 6}, {"id": "assets_index_b3vpcucp_qs", "label": "QS()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "QS()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 3}, {"id": "assets_index_b3vpcucp_ks", "label": "KS()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "KS()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_w", "label": "w_()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "w_()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_h", "label": "H_()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "H_()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_b", "label": "B_()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B_()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_ex", "label": "Ex()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Ex()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_zx", "label": "Zx()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Zx()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_d3", "label": "d3()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "d3()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 2}, {"id": "assets_index_b3vpcucp_dg", "label": "dg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "dg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 1}, {"id": "assets_index_b3vpcucp_hg", "label": "hg()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hg()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "assets_index_b3vpcucp_ne", "label": "nE()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "nE()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/index-B3VpcuCP.js", "file_type": "code", "degree": 4}, {"id": "frontend_dist_test_assets_main_boekpov0_js", "label": "main-BoEkPOV0.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "main-BoEkPOV0.js", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/main-BoEkPOV0.js", "file_type": "code", "degree": 5}, {"id": "assets_main_boekpov0_el", "label": "El()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "El()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/main-BoEkPOV0.js", "file_type": "code", "degree": 3}, {"id": "assets_main_boekpov0_sl", "label": "Sl()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Sl()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/main-BoEkPOV0.js", "file_type": "code", "degree": 33}, {"id": "assets_main_boekpov0_jl", "label": "jl()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "jl()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/main-BoEkPOV0.js", "file_type": "code", "degree": 30}, {"id": "assets_main_boekpov0_ol", "label": "Ol()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Ol()", "community": 0, "community_name": "Community 0", "source_file": "frontend/dist-test/assets/main-BoEkPOV0.js", "file_type": "code", "degree": 3}, {"id": "frontend_src_vite_env_d_ts", "label": "vite-env.d.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vite-env.d.ts", "community": 16, "community_name": "Community 16", "source_file": "frontend/src/vite-env.d.ts", "file_type": "code", "degree": 0}, {"id": "frontend_src_app_tsx", "label": "App.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "App.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/App.tsx", "file_type": "code", "degree": 16}, {"id": "src_app_app", "label": "App()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "App()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/App.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_main_tsx", "label": "main.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "main.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/main.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_src_i18n_index_ts", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/i18n/index.ts", "file_type": "code", "degree": 4}, {"id": "frontend_src_services_api_ts", "label": "api.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "api.ts", "community": 8, "community_name": "Community 8", "source_file": "frontend/src/services/api.ts", "file_type": "code", "degree": 3}, {"id": "services_api_apierror", "label": "ApiError", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiError", "community": 8, "community_name": "Community 8", "source_file": "frontend/src/services/api.ts", "file_type": "code", "degree": 2}, {"id": "services_api_apierror_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 8, "community_name": "Community 8", "source_file": "frontend/src/services/api.ts", "file_type": "code", "degree": 1}, {"id": "services_api_fetchapi", "label": "fetchApi()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchApi()", "community": 8, "community_name": "Community 8", "source_file": "frontend/src/services/api.ts", "file_type": "code", "degree": 2}, {"id": "frontend_src_services_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": 17, "community_name": "Community 17", "source_file": "frontend/src/services/index.ts", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_index_ts", "label": "index.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 18, "community_name": "Community 18", "source_file": "frontend/src/components/index.ts", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_modal_modal_tsx", "label": "Modal.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Modal.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Modal/Modal.tsx", "file_type": "code", "degree": 5}, {"id": "modal_modal_handlekey", "label": "handleKey()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "handleKey()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Modal/Modal.tsx", "file_type": "code", "degree": 1}, {"id": "modal_modal_close", "label": "close()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "close()", "community": 1, "community_name": "Community 1", "source_file": "frontend/src/components/Modal/Modal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_card_card_tsx", "label": "Card.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Card.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Card/Card.tsx", "file_type": "code", "degree": 6}, {"id": "card_card_card", "label": "Card()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Card()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Card/Card.tsx", "file_type": "code", "degree": 1}, {"id": "card_card_cardheader", "label": "CardHeader()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CardHeader()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Card/Card.tsx", "file_type": "code", "degree": 1}, {"id": "card_card_cardcontent", "label": "CardContent()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CardContent()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Card/Card.tsx", "file_type": "code", "degree": 1}, {"id": "card_card_cardfooter", "label": "CardFooter()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CardFooter()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Card/Card.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_card_card_test_tsx", "label": "Card.test.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Card.test.tsx", "community": 13, "community_name": "Community 13", "source_file": "frontend/src/components/Card/Card.test.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_src_components_templatepicker_templatepicker_tsx", "label": "TemplatePicker.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "TemplatePicker.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/TemplatePicker/TemplatePicker.tsx", "file_type": "code", "degree": 7}, {"id": "templatepicker_templatepicker_makehanddrawnrect", "label": "makeHandDrawnRect()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "makeHandDrawnRect()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/TemplatePicker/TemplatePicker.tsx", "file_type": "code", "degree": 2}, {"id": "templatepicker_templatepicker_maketext", "label": "makeText()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "makeText()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/TemplatePicker/TemplatePicker.tsx", "file_type": "code", "degree": 1}, {"id": "templatepicker_templatepicker_makecheckbox", "label": "makeCheckbox()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "makeCheckbox()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/TemplatePicker/TemplatePicker.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_input_input_tsx", "label": "Input.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Input.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Input/Input.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_components_button_button_tsx", "label": "Button.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Button.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Button/Button.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_src_components_button_index_ts", "label": "index.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 19, "community_name": "Community 19", "source_file": "frontend/src/components/Button/index.ts", "file_type": "code", "degree": 0}, {"id": "frontend_src_components_commandpalette_commandpalette_tsx", "label": "CommandPalette.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CommandPalette.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/CommandPalette/CommandPalette.tsx", "file_type": "code", "degree": 6}, {"id": "commandpalette_commandpalette_onkeydown", "label": "onKeyDown()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "onKeyDown()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/CommandPalette/CommandPalette.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_layout_sidebar_tsx", "label": "Sidebar.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Sidebar.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Layout/Sidebar.tsx", "file_type": "code", "degree": 7}, {"id": "layout_sidebar_sidebar", "label": "Sidebar()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Sidebar()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Layout/Sidebar.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": 12.0, "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": 13}, {"id": "layout_header_handlechange", "label": "handleChange()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "handleChange()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Layout/Header.tsx", "file_type": "code", "degree": 1}, {"id": "layout_header_handleselect", "label": "handleSelect()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSelect()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Layout/Header.tsx", "file_type": "code", "degree": 1}, {"id": "layout_header_handlecreatedrawing", "label": "handleCreateDrawing()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "handleCreateDrawing()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Layout/Header.tsx", "file_type": "code", "degree": 1}, {"id": "layout_header_onclick", "label": "onClick()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "onClick()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Layout/Header.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_components_layout_applayout_tsx", "label": "AppLayout.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AppLayout.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Layout/AppLayout.tsx", "file_type": "code", "degree": 6}, {"id": "layout_applayout_applayout", "label": "AppLayout()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AppLayout()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/components/Layout/AppLayout.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_hooks_useauth_ts", "label": "useAuth.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "useAuth.ts", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/hooks/useAuth.ts", "file_type": "code", "degree": 4}, {"id": "hooks_useauth_useauth", "label": "useAuth()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useAuth()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/hooks/useAuth.ts", "file_type": "code", "degree": 2}, {"id": "frontend_src_hooks_usedrawings_ts", "label": "useDrawings.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "useDrawings.ts", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/hooks/useDrawings.ts", "file_type": "code", "degree": 4}, {"id": "hooks_usedrawings_usedrawings", "label": "useDrawings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useDrawings()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/hooks/useDrawings.ts", "file_type": "code", "degree": 1}, {"id": "frontend_src_hooks_useteams_ts", "label": "useTeams.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "useTeams.ts", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/hooks/useTeams.ts", "file_type": "code", "degree": 4}, {"id": "hooks_useteams_useteams", "label": "useTeams()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useTeams()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/hooks/useTeams.ts", "file_type": "code", "degree": 1}, {"id": "frontend_src_hooks_index_ts", "label": "index.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 20, "community_name": "Community 20", "source_file": "frontend/src/hooks/index.ts", "file_type": "code", "degree": 0}, {"id": "frontend_src_pages_index_ts", "label": "index.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 21, "community_name": "Community 21", "source_file": "frontend/src/pages/index.ts", "file_type": "code", "degree": 0}, {"id": "frontend_src_pages_filebrowser_filebrowser_tsx", "label": "FileBrowser.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "FileBrowser.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/FileBrowser/FileBrowser.tsx", "file_type": "code", "degree": 19}, {"id": "filebrowser_filebrowser_showmodal", "label": "showModal()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "showModal()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/FileBrowser/FileBrowser.tsx", "file_type": "code", "degree": 7}, {"id": "filebrowser_filebrowser_loaddata", "label": "loadData()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "loadData()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/FileBrowser/FileBrowser.tsx", "file_type": "code", "degree": 1}, {"id": "filebrowser_filebrowser_handlecreatedrawing", "label": "handleCreateDrawing()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleCreateDrawing()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/FileBrowser/FileBrowser.tsx", "file_type": "code", "degree": 2}, {"id": "filebrowser_filebrowser_handlecreatefolder", "label": "handleCreateFolder()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleCreateFolder()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/FileBrowser/FileBrowser.tsx", "file_type": "code", "degree": 2}, {"id": "filebrowser_filebrowser_handledeletedrawing", "label": "handleDeleteDrawing()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDeleteDrawing()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/FileBrowser/FileBrowser.tsx", "file_type": "code", "degree": 2}, {"id": "filebrowser_filebrowser_handleduplicatedrawing", "label": "handleDuplicateDrawing()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleDuplicateDrawing()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/FileBrowser/FileBrowser.tsx", "file_type": "code", "degree": 2}, {"id": "filebrowser_filebrowser_handlerenamedrawing", "label": "handleRenameDrawing()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleRenameDrawing()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/FileBrowser/FileBrowser.tsx", "file_type": "code", "degree": 2}, {"id": "filebrowser_filebrowser_handlemovedrawing", "label": "handleMoveDrawing()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleMoveDrawing()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/FileBrowser/FileBrowser.tsx", "file_type": "code", "degree": 2}, {"id": "filebrowser_filebrowser_onclick", "label": "onClick()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "onClick()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/FileBrowser/FileBrowser.tsx", "file_type": "code", "degree": 1}, {"id": "filebrowser_filebrowser_setsortby", "label": "setSortBy()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "setSortBy()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/FileBrowser/FileBrowser.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_auth_signup_tsx", "label": "Signup.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Signup.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Auth/Signup.tsx", "file_type": "code", "degree": 8}, {"id": "auth_signup_handlesubmit", "label": "handleSubmit()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSubmit()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Auth/Signup.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_pages_auth_login_tsx", "label": "Login.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Login.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Auth/Login.tsx", "file_type": "code", "degree": 8}, {"id": "auth_login_handlesubmit", "label": "handleSubmit()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSubmit()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Auth/Login.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_templates_templates_tsx", "label": "Templates.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Templates.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Templates/Templates.tsx", "file_type": "code", "degree": 10}, {"id": "templates_templates_handlecreate", "label": "handleCreate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "handleCreate()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Templates/Templates.tsx", "file_type": "code", "degree": 1}, {"id": "templates_templates_handleusetemplate", "label": "handleUseTemplate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "handleUseTemplate()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Templates/Templates.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_editor_editor_tsx", "label": "Editor.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Editor.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Editor/Editor.tsx", "file_type": "code", "degree": 17}, {"id": "editor_editor_prepareelementsforimport", "label": "prepareElementsForImport()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prepareElementsForImport()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Editor/Editor.tsx", "file_type": "code", "degree": 2}, {"id": "editor_editor_appstatewithoutgrid", "label": "appStateWithoutGrid()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "appStateWithoutGrid()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Editor/Editor.tsx", "file_type": "code", "degree": 3}, {"id": "editor_editor_loaddrawing", "label": "loadDrawing()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadDrawing()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Editor/Editor.tsx", "file_type": "code", "degree": 2}, {"id": "editor_editor_handlerestorerevision", "label": "handleRestoreRevision()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleRestoreRevision()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Editor/Editor.tsx", "file_type": "code", "degree": 2}, {"id": "editor_editor_handlemanualsave", "label": "handleManualSave()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "handleManualSave()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Editor/Editor.tsx", "file_type": "code", "degree": 1}, {"id": "editor_editor_handleloadtemplate", "label": "handleLoadTemplate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleLoadTemplate()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Editor/Editor.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_src_pages_settings_usersettings_tsx", "label": "UserSettings.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UserSettings.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Settings/UserSettings.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_src_pages_dashboard_dashboard_tsx", "label": "Dashboard.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Dashboard.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Dashboard/Dashboard.tsx", "file_type": "code", "degree": 12}, {"id": "dashboard_dashboard_statchart", "label": "StatChart()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "StatChart()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Dashboard/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "dashboard_dashboard_loaddata", "label": "loadData()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "loadData()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Dashboard/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "dashboard_dashboard_handlecreatedrawing", "label": "handleCreateDrawing()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "handleCreateDrawing()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Dashboard/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "dashboard_dashboard_formatbytes", "label": "formatBytes()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "formatBytes()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Dashboard/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_pages_team_teamsettings_tsx", "label": "TeamSettings.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TeamSettings.tsx", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Team/TeamSettings.tsx", "file_type": "code", "degree": 8}, {"id": "team_teamsettings_load", "label": "load()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "load()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Team/TeamSettings.tsx", "file_type": "code", "degree": 2}, {"id": "team_teamsettings_handlecreateuser", "label": "handleCreateUser()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "handleCreateUser()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/pages/Team/TeamSettings.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_src_test_setup_ts", "label": "setup.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "setup.ts", "community": 13, "community_name": "Community 13", "source_file": "frontend/src/test/setup.ts", "file_type": "code", "degree": 1}, {"id": "frontend_src_stores_teamstore_ts", "label": "teamStore.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "teamStore.ts", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/stores/teamStore.ts", "file_type": "code", "degree": 2}, {"id": "frontend_src_stores_drawingstore_ts", "label": "drawingStore.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "drawingStore.ts", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/stores/drawingStore.ts", "file_type": "code", "degree": 2}, {"id": "frontend_src_stores_index_ts", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 22, "community_name": "Community 22", "source_file": "frontend/src/stores/index.ts", "file_type": "code", "degree": 0}, {"id": "frontend_src_stores_themestore_test_ts", "label": "themeStore.test.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "themeStore.test.ts", "community": 13, "community_name": "Community 13", "source_file": "frontend/src/stores/themeStore.test.ts", "file_type": "code", "degree": 2}, {"id": "frontend_src_stores_themestore_ts", "label": "themeStore.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "themeStore.ts", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/stores/themeStore.ts", "file_type": "code", "degree": 4}, {"id": "stores_themestore_getinitialtheme", "label": "getInitialTheme()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getInitialTheme()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/stores/themeStore.ts", "file_type": "code", "degree": 1}, {"id": "stores_themestore_applytheme", "label": "applyTheme()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "applyTheme()", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/stores/themeStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_src_stores_authstore_ts", "label": "authStore.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "authStore.ts", "community": 2, "community_name": "Community 2", "source_file": "frontend/src/stores/authStore.ts", "file_type": "code", "degree": 2}, {"id": "frontend_src_types_index_ts", "label": "index.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.ts", "community": 23, "community_name": "Community 23", "source_file": "frontend/src/types/index.ts", "file_type": "code", "degree": 0}, {"id": "go_pkg_embed", "label": "go_pkg_embed", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_embed", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 2}, {"id": "go_pkg_excalidraw_complete_handlers_api_firebase", "label": "go_pkg_excalidraw_complete_handlers_api_firebase", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_excalidraw_complete_handlers_api_firebase", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_excalidraw_complete_handlers_api_kv", "label": "go_pkg_excalidraw_complete_handlers_api_kv", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_excalidraw_complete_handlers_api_kv", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_excalidraw_complete_handlers_auth", "label": "go_pkg_excalidraw_complete_handlers_auth", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_excalidraw_complete_handlers_auth", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 3}, {"id": "go_pkg_excalidraw_complete_middleware", "label": "go_pkg_excalidraw_complete_middleware", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_excalidraw_complete_middleware", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 2}, {"id": "go_pkg_excalidraw_complete_stores", "label": "go_pkg_excalidraw_complete_stores", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_excalidraw_complete_stores", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 2}, {"id": "go_pkg_excalidraw_complete_workspace", "label": "go_pkg_excalidraw_complete_workspace", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_excalidraw_complete_workspace", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 2}, {"id": "go_pkg_flag", "label": "go_pkg_flag", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_flag", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_fmt", "label": "go_pkg_fmt", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_fmt", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 11}, {"id": "go_pkg_io", "label": "go_pkg_io", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_io", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 5}, {"id": "go_pkg_io_fs", "label": "go_pkg_io_fs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_io_fs", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_net_http", "label": "go_pkg_net_http", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_net_http", "community": 7, "community_name": "Community 7", "source_file": "", "file_type": "", "degree": 11}, {"id": "go_pkg_os", "label": "go_pkg_os", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_os", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 5}, {"id": "go_pkg_os_signal", "label": "go_pkg_os_signal", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_os_signal", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_strings", "label": "go_pkg_strings", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_strings", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 8}, {"id": "go_pkg_syscall", "label": "go_pkg_syscall", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_syscall", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_go_chi_chi_v5", "label": "go_pkg_github_com_go_chi_chi_v5", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_go_chi_chi_v5", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 6}, {"id": "go_pkg_github_com_go_chi_chi_v5_middleware", "label": "go_pkg_github_com_go_chi_chi_v5_middleware", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_go_chi_chi_v5_middleware", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_go_chi_cors", "label": "go_pkg_github_com_go_chi_cors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_go_chi_cors", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_joho_godotenv", "label": "go_pkg_github_com_joho_godotenv", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_joho_godotenv", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_sirupsen_logrus", "label": "go_pkg_github_com_sirupsen_logrus", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_sirupsen_logrus", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 8}, {"id": "go_pkg_github_com_zishang520_engine_io_v2_types", "label": "go_pkg_github_com_zishang520_engine_io_v2_types", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_zishang520_engine_io_v2_types", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_zishang520_engine_io_v2_utils", "label": "go_pkg_github_com_zishang520_engine_io_v2_utils", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_zishang520_engine_io_v2_utils", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_zishang520_socket_io_v2_socket", "label": "go_pkg_github_com_zishang520_socket_io_v2_socket", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_zishang520_socket_io_v2_socket", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_context", "label": "go_pkg_context", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_context", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 16}, {"id": "go_pkg_crypto_rand", "label": "go_pkg_crypto_rand", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_crypto_rand", "community": 3, "community_name": "Community 3", "source_file": "", "file_type": "", "degree": 3}, {"id": "go_pkg_encoding_base64", "label": "go_pkg_encoding_base64", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_encoding_base64", "community": 3, "community_name": "Community 3", "source_file": "", "file_type": "", "degree": 2}, {"id": "go_pkg_encoding_json", "label": "go_pkg_encoding_json", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_encoding_json", "community": 7, "community_name": "Community 7", "source_file": "", "file_type": "", "degree": 10}, {"id": "go_pkg_excalidraw_complete_core", "label": "go_pkg_excalidraw_complete_core", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_excalidraw_complete_core", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 8}, {"id": "go_pkg_time", "label": "go_pkg_time", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_time", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 15}, {"id": "go_pkg_github_com_golang_jwt_jwt_v5", "label": "go_pkg_github_com_golang_jwt_jwt_v5", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_golang_jwt_jwt_v5", "community": 6, "community_name": "Community 6", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_golang_org_x_oauth2", "label": "go_pkg_golang_org_x_oauth2", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_golang_org_x_oauth2", "community": 6, "community_name": "Community 6", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_golang_org_x_oauth2_github", "label": "go_pkg_golang_org_x_oauth2_github", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_golang_org_x_oauth2_github", "community": 6, "community_name": "Community 6", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_encoding_hex", "label": "go_pkg_encoding_hex", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_encoding_hex", "community": 3, "community_name": "Community 3", "source_file": "", "file_type": "", "degree": 2}, {"id": "go_pkg_github_com_coreos_go_oidc_v3_oidc", "label": "go_pkg_github_com_coreos_go_oidc_v3_oidc", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_coreos_go_oidc_v3_oidc", "community": 6, "community_name": "Community 6", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_go_chi_render", "label": "go_pkg_github_com_go_chi_render", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_go_chi_render", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 4}, {"id": "go_pkg_bytes", "label": "go_pkg_bytes", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_bytes", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 6}, {"id": "go_pkg_database_sql", "label": "go_pkg_database_sql", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_database_sql", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 7}, {"id": "go_pkg_errors", "label": "go_pkg_errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_errors", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 6}, {"id": "go_pkg_strconv", "label": "go_pkg_strconv", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_strconv", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 2}, {"id": "go_pkg_net", "label": "go_pkg_net", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_net", "community": 3, "community_name": "Community 3", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_net_netip", "label": "go_pkg_net_netip", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_net_netip", "community": 3, "community_name": "Community 3", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_net_url", "label": "go_pkg_net_url", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_net_url", "community": 3, "community_name": "Community 3", "source_file": "", "file_type": "", "degree": 2}, {"id": "go_pkg_testing", "label": "go_pkg_testing", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_testing", "community": 7, "community_name": "Community 7", "source_file": "", "file_type": "", "degree": 4}, {"id": "go_pkg_sync", "label": "go_pkg_sync", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_sync", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 2}, {"id": "go_pkg_excalidraw_complete_internal_postgres", "label": "go_pkg_excalidraw_complete_internal_postgres", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_excalidraw_complete_internal_postgres", "community": 3, "community_name": "Community 3", "source_file": "", "file_type": "", "degree": 4}, {"id": "go_pkg_golang_org_x_crypto_bcrypt", "label": "go_pkg_golang_org_x_crypto_bcrypt", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_golang_org_x_crypto_bcrypt", "community": 3, "community_name": "Community 3", "source_file": "", "file_type": "", "degree": 2}, {"id": "go_pkg_net_http_httptest", "label": "go_pkg_net_http_httptest", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_net_http_httptest", "community": 7, "community_name": "Community 7", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_crypto_sha256", "label": "go_pkg_crypto_sha256", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_crypto_sha256", "community": 3, "community_name": "Community 3", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_net_mail", "label": "go_pkg_net_mail", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_net_mail", "community": 3, "community_name": "Community 3", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_regexp", "label": "go_pkg_regexp", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_regexp", "community": 3, "community_name": "Community 3", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_oklog_ulid_v2", "label": "go_pkg_github_com_oklog_ulid_v2", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_oklog_ulid_v2", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 5}, {"id": "go_pkg_github_com_jackc_pgx_v5_stdlib", "label": "go_pkg_github_com_jackc_pgx_v5_stdlib", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_jackc_pgx_v5_stdlib", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_pressly_goose_v3", "label": "go_pkg_github_com_pressly_goose_v3", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_pressly_goose_v3", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_excalidraw_complete_stores_aws", "label": "go_pkg_excalidraw_complete_stores_aws", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_excalidraw_complete_stores_aws", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_excalidraw_complete_stores_filesystem", "label": "go_pkg_excalidraw_complete_stores_filesystem", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_excalidraw_complete_stores_filesystem", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_excalidraw_complete_stores_memory", "label": "go_pkg_excalidraw_complete_stores_memory", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_excalidraw_complete_stores_memory", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_excalidraw_complete_stores_postgres", "label": "go_pkg_excalidraw_complete_stores_postgres", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_excalidraw_complete_stores_postgres", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_io_ioutil", "label": "go_pkg_io_ioutil", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_io_ioutil", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_log", "label": "go_pkg_log", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_log", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 3}, {"id": "go_pkg_path", "label": "go_pkg_path", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_path", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_aws_aws_sdk_go_v2_aws", "label": "go_pkg_github_com_aws_aws_sdk_go_v2_aws", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_aws_aws_sdk_go_v2_aws", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_aws_aws_sdk_go_v2_config", "label": "go_pkg_github_com_aws_aws_sdk_go_v2_config", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_aws_aws_sdk_go_v2_config", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_aws_aws_sdk_go_v2_service_s3", "label": "go_pkg_github_com_aws_aws_sdk_go_v2_service_s3", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_aws_aws_sdk_go_v2_service_s3", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_github_com_aws_aws_sdk_go_v2_service_s3_types", "label": "go_pkg_github_com_aws_aws_sdk_go_v2_service_s3_types", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_github_com_aws_aws_sdk_go_v2_service_s3_types", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "go_pkg_path_filepath", "label": "go_pkg_path_filepath", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "go_pkg_path_filepath", "community": 1, "community_name": "Community 1", "source_file": "", "file_type": "", "degree": 1}, {"id": "typescript_eslint", "label": "typescript_eslint", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript_eslint", "community": 14, "community_name": "Community 14", "source_file": "", "file_type": "", "degree": 1}, {"id": "eslint_plugin_react", "label": "eslint_plugin_react", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint_plugin_react", "community": 14, "community_name": "Community 14", "source_file": "", "file_type": "", "degree": 1}, {"id": "config", "label": "config", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "config", "community": 12, "community_name": "Community 12", "source_file": "", "file_type": "", "degree": 1}, {"id": "plugin_react", "label": "plugin_react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plugin_react", "community": 12, "community_name": "Community 12", "source_file": "", "file_type": "", "degree": 2}, {"id": "path", "label": "path", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "path", "community": 12, "community_name": "Community 12", "source_file": "", "file_type": "", "degree": 2}, {"id": "url", "label": "url", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "url", "community": 12, "community_name": "Community 12", "source_file": "", "file_type": "", "degree": 1}, {"id": "test", "label": "test", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test", "community": 15, "community_name": "Community 15", "source_file": "", "file_type": "", "degree": 2}, {"id": "vite", "label": "vite", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "vite", "community": 12, "community_name": "Community 12", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_dist_test_assets_index_b3vpcucp_ts", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_dist_test_assets_index_b3vpcucp_ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_dist_test_assets_index_b3vpcucp_ts", "community": 0, "community_name": "Community 0", "source_file": "", "file_type": "", "degree": 1}, {"id": "react", "label": "react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 23}, {"id": "react_router_dom", "label": "react_router_dom", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "react_router_dom", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 11}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_applayout", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_applayout", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_applayout", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_dashboard_dashboard", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_dashboard_dashboard", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_dashboard_dashboard", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_login", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_login", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_login", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_signup", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_signup", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_signup", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_filebrowser_filebrowser", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_filebrowser_filebrowser", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_filebrowser_filebrowser", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_team_teamsettings", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_team_teamsettings", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_team_teamsettings", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_settings_usersettings", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_settings_usersettings", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_settings_usersettings", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_editor_editor", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_editor_editor", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_editor_editor", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 12}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_hooks", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_hooks", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_hooks", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 3}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 11}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 10}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_app_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_app_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_app_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "client", "label": "client", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "client", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_i18n", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_i18n", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_i18n", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_app", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_app", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_app", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_styles_global_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_styles_global_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_styles_global_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "i18next", "label": "i18next", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "i18next", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "react_i18next", "label": "react_i18next", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react_i18next", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 10}, {"id": "i18next_browser_languagedetector", "label": "i18next_browser_languagedetector", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "i18next_browser_languagedetector", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_i18n_locales_en_json", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_i18n_locales_en_json", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_i18n_locales_en_json", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_types", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_types", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_types", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 8}, {"id": "lucide_react", "label": "lucide_react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "lucide_react", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 14}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_modal_modal_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_modal_modal_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_modal_modal_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_card_card_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_card_card_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_card_card_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "vitest", "label": "vitest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest", "community": 13, "community_name": "Community 13", "source_file": "", "file_type": "", "degree": 3}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_card_card", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_card_card", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_card_card", "community": 13, "community_name": "Community 13", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_templatepicker_templatepicker_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_templatepicker_templatepicker_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_templatepicker_templatepicker_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_input_input_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_input_input_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_input_input_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "clsx", "label": "clsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "clsx", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_button_button_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_button_button_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_button_button_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_commandpalette_commandpalette_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_commandpalette_commandpalette_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_commandpalette_commandpalette_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_layout_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_layout_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_layout_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 3}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_sidebar", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_sidebar", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_sidebar", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_header", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_header", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_header", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_filebrowser_filebrowser_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_filebrowser_filebrowser_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_filebrowser_filebrowser_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_auth_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_auth_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_auth_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 2}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_templates_templates_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_templates_templates_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_templates_templates_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_templatepicker_templatepicker", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_templatepicker_templatepicker", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_templatepicker_templatepicker", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_editor_editor_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_editor_editor_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_editor_editor_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "types", "label": "types", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "types", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_settings_settings_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_settings_settings_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_settings_settings_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_dashboard_dashboard_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_dashboard_dashboard_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_dashboard_dashboard_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_team_team_module_scss", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_team_team_module_scss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_team_team_module_scss", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}, {"id": "zustand", "label": "zustand", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "zustand", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 4}, {"id": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores_themestore", "label": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores_themestore", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores_themestore", "community": 13, "community_name": "Community 13", "source_file": "", "file_type": "", "degree": 1}, {"id": "middleware", "label": "middleware", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.2, "font": {"size": 0, "color": "#ffffff"}, "title": "middleware", "community": 2, "community_name": "Community 2", "source_file": "", "file_type": "", "degree": 1}];
|
|
const RAW_EDGES = [{"from": "main_go", "to": "go_pkg_embed", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_excalidraw_complete_handlers_api_firebase", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_excalidraw_complete_handlers_api_kv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_excalidraw_complete_handlers_auth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_excalidraw_complete_middleware", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_excalidraw_complete_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_excalidraw_complete_workspace", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_flag", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_fmt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_io", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_io_fs", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_net_http", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_os", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_os_signal", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_strings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_syscall", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_github_com_go_chi_chi_v5", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_github_com_go_chi_chi_v5_middleware", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_github_com_go_chi_cors", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_github_com_joho_godotenv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_github_com_sirupsen_logrus", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_github_com_zishang520_engine_io_v2_types", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_github_com_zishang520_engine_io_v2_utils", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "go_pkg_github_com_zishang520_socket_io_v2_socket", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "excalidraw_usertofollow", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "excalidraw_onuserfollowedpayload", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "excalidraw_main_handleui", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "excalidraw_main_setuprouter", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "excalidraw_main_allowedorigins", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "excalidraw_main_securityheaders", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "excalidraw_main_setupsocketio", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "excalidraw_main_waitforshutdown", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main_go", "to": "excalidraw_main_main", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_handleui", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_setuprouter", "to": "excalidraw_main_allowedorigins", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_setuprouter", "to": "firebase_firebase_handlebatchcommit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_setuprouter", "to": "firebase_firebase_handlebatchget", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_setuprouter", "to": "kv_kv_handlelistcanvases", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_setuprouter", "to": "kv_kv_handlegetcanvas", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_setuprouter", "to": "kv_kv_handlesavecanvas", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_setuprouter", "to": "kv_kv_handledeletecanvas", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_setupsocketio", "to": "excalidraw_main_allowedorigins", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_setupsocketio", "to": "assets_index_b3vpcucp_gu_log", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_waitforshutdown", "to": "modal_modal_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_main", "to": "excalidraw_main_setuprouter", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_main", "to": "excalidraw_main_setupsocketio", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_main", "to": "excalidraw_main_handleui", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_main", "to": "excalidraw_main_waitforshutdown", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_main", "to": "team_teamsettings_load", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_main", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_main", "to": "auth_auth_initauth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_main", "to": "stores_storage_getstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_main", "to": "filesystem_store_newstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_main", "to": "auth_auth_setworkspacestore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "excalidraw_main_main", "to": "workspace_http_newapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_crypto_rand", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_encoding_base64", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_encoding_json", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_excalidraw_complete_core", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_excalidraw_complete_workspace", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_fmt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_io", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_net_http", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_os", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_github_com_golang_jwt_jwt_v5", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_github_com_sirupsen_logrus", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_golang_org_x_oauth2", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_golang_org_x_oauth2_github", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_encoding_hex", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "go_pkg_github_com_coreos_go_oidc_v3_oidc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_appclaims", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_oidcclaims", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_setworkspacestore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_initauth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_handlelogin", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_handlecallback", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_initgithub", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_initoidc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_generatestateoauthcookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_handlegithublogin", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_handlegithubcallback", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_handleoidclogin", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_handleoidccallback", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_validatestatecookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_createjwt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_auth_auth_go", "to": "auth_auth_parsejwt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_initauth", "to": "auth_auth_initoidc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_initauth", "to": "auth_auth_initgithub", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_initauth", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_initauth", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handlelogin", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handlecallback", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_initgithub", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_initoidc", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_init", "to": "auth_auth_initgithub", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_init", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_generatestateoauthcookie", "to": "assets_index_b3vpcucp_x1_read", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handlegithublogin", "to": "auth_auth_generatestateoauthcookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handlegithublogin", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handlegithubcallback", "to": "auth_auth_validatestatecookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handlegithubcallback", "to": "auth_auth_createjwt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handlegithubcallback", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handlegithubcallback", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handlegithubcallback", "to": "workspace_http_setsessioncookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handleoidclogin", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handleoidclogin", "to": "assets_index_b3vpcucp_x1_read", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handleoidccallback", "to": "auth_auth_validatestatecookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handleoidccallback", "to": "auth_auth_createjwt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handleoidccallback", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handleoidccallback", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_auth_handleoidccallback", "to": "workspace_http_setsessioncookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "go_pkg_fmt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "go_pkg_net_http", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "go_pkg_github_com_go_chi_chi_v5", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "go_pkg_github_com_go_chi_render", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "firebase_batchgetrequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "firebase_batchgetemptyresponse", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "firebase_foundinforesponse", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "firebase_batchgetexistsresponse", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "firebase_updaterequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "firebase_writerequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "firebase_batchcommitrequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "firebase_writeresult", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "firebase_batchcommitresponse", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "firebase_firebase_handlebatchcommit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_firebase_firebase_go", "to": "firebase_firebase_handlebatchget", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "firebase_batchgetrequest", "to": "firebase_batchgetrequest_bind", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "firebase_batchcommitrequest", "to": "firebase_batchcommitrequest_bind", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "firebase_firebase_handlebatchcommit", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "firebase_firebase_handlebatchget", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_documents_documents_go", "to": "go_pkg_bytes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_documents_documents_go", "to": "go_pkg_excalidraw_complete_core", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_documents_documents_go", "to": "go_pkg_io", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_documents_documents_go", "to": "go_pkg_net_http", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_documents_documents_go", "to": "go_pkg_github_com_go_chi_chi_v5", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_documents_documents_go", "to": "go_pkg_github_com_go_chi_render", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_documents_documents_go", "to": "documents_documentcreateresponse", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_documents_documents_go", "to": "documents_documents_handlecreate", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_documents_documents_go", "to": "documents_documents_handleget", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "documents_documents_handlecreate", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "documents_documents_handleget", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "go_pkg_encoding_json", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "go_pkg_excalidraw_complete_core", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "go_pkg_excalidraw_complete_handlers_auth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "go_pkg_excalidraw_complete_middleware", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "go_pkg_excalidraw_complete_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "go_pkg_io", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "go_pkg_net_http", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "go_pkg_github_com_go_chi_chi_v5", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "go_pkg_github_com_go_chi_render", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "go_pkg_github_com_sirupsen_logrus", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "kv_kv_handlelistcanvases", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "kv_kv_handlegetcanvas", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "kv_kv_handlesavecanvas", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "handlers_api_kv_kv_go", "to": "kv_kv_handledeletecanvas", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_js", "to": "cf_kv_index_fetch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_js", "to": "cf_kv_index_indexobject", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_js", "to": "cf_kv_index_canvasobject", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_js", "to": "cf_kv_index_parsekey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_js", "to": "cf_kv_index_isauthorized", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_js", "to": "cf_kv_index_setcorsheaders", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_js", "to": "cf_kv_index_handleoptions", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_js", "to": "cf_kv_index_handlelistkeys", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_fetch", "to": "cf_kv_index_handleoptions", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_fetch", "to": "cf_kv_index_isauthorized", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_fetch", "to": "cf_kv_index_setcorsheaders", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_fetch", "to": "cf_kv_index_handlelistkeys", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_fetch", "to": "cf_kv_index_parsekey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_fetch", "to": "cf_kv_index_canvasobject_fetch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_indexobject", "to": "cf_kv_index_indexobject_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_indexobject", "to": "cf_kv_index_indexobject_fetch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_indexobject_fetch", "to": "cf_kv_index_setcorsheaders", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject", "to": "cf_kv_index_canvasobject_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject", "to": "cf_kv_index_canvasobject_fetch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject", "to": "cf_kv_index_canvasobject_handlegetvalue", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject", "to": "cf_kv_index_canvasobject_handlebulkput", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject", "to": "cf_kv_index_canvasobject_handlebulkdelete", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject_fetch", "to": "cf_kv_index_canvasobject_handlegetvalue", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject_fetch", "to": "cf_kv_index_canvasobject_handlebulkput", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject_fetch", "to": "cf_kv_index_canvasobject_handlebulkdelete", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject_fetch", "to": "cf_kv_index_setcorsheaders", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject_handlegetvalue", "to": "cf_kv_index_setcorsheaders", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject_handlebulkput", "to": "cf_kv_index_parsekey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject_handlebulkput", "to": "cf_kv_index_canvasobject_fetch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject_handlebulkput", "to": "cf_kv_index_setcorsheaders", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject_handlebulkdelete", "to": "cf_kv_index_parsekey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject_handlebulkdelete", "to": "cf_kv_index_canvasobject_fetch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_canvasobject_handlebulkdelete", "to": "cf_kv_index_setcorsheaders", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_handlelistkeys", "to": "cf_kv_index_canvasobject_fetch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cf_kv_index_handlelistkeys", "to": "cf_kv_index_setcorsheaders", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "go_pkg_database_sql", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "go_pkg_encoding_json", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "go_pkg_errors", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "go_pkg_net_http", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "go_pkg_strconv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "go_pkg_strings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "go_pkg_github_com_go_chi_chi_v5", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "go_pkg_github_com_sirupsen_logrus", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_api", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_newapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_contextkey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_requiresameoriginmutation", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_ftoa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_itoa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_htmlescape", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_setsessioncookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_clearsessioncookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_issecurerequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_go", "to": "workspace_http_clientip", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_routes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlehealth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlesetupstatus", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_requiresession", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlesignup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelogin", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelogout", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handleme", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistteams", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlecreateteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handleupdateteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistteammembers", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistdrawings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlecreatedrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlegetdrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handleupdatedrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlearchivedrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistrevisions", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlecreaterevision", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlethumbnail", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelisttemplates", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistactivity", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlestats", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistfolders", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlecreatefolder", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistprojects", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlecreateproject", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlesearch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistteaminvites", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlecreateteaminvite", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handleacceptinvite", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistpermissions", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlecreatepermission", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistsharelinks", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlecreatesharelink", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlesharedresource", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistassets", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlecreateasset", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistembeds", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlecreateembed", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlelistlinks", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlecreatelink", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api", "to": "workspace_api_handlecreateteamuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_newapi", "to": "workspace_rate_limiter_newratelimiter", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlehealth", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlesetupstatus", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlesetupstatus", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_requiresession", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_requiresession", "to": "workspace_http_clearsessioncookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_requiresession", "to": "workspace_context_withuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_requiresameoriginmutation", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlesignup", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlesignup", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlesignup", "to": "workspace_http_clientip", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlesignup", "to": "workspace_http_setsessioncookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlesignup", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelogin", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelogin", "to": "workspace_http_clientip", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelogin", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelogin", "to": "workspace_http_setsessioncookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelogin", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelogout", "to": "workspace_http_clearsessioncookie", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelogout", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleme", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleme", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistteams", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistteams", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistteams", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateteam", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateteam", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateteam", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateteam", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleupdateteam", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleupdateteam", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleupdateteam", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleupdateteam", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistteammembers", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistteammembers", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistteammembers", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistdrawings", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistdrawings", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistdrawings", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatedrawing", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatedrawing", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatedrawing", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatedrawing", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlegetdrawing", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlegetdrawing", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlegetdrawing", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleupdatedrawing", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleupdatedrawing", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleupdatedrawing", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleupdatedrawing", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlearchivedrawing", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlearchivedrawing", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistrevisions", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistrevisions", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistrevisions", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreaterevision", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreaterevision", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreaterevision", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreaterevision", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlethumbnail", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlethumbnail", "to": "workspace_http_itoa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlethumbnail", "to": "workspace_http_ftoa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlethumbnail", "to": "workspace_http_htmlescape", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlethumbnail", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelisttemplates", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelisttemplates", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelisttemplates", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistactivity", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistactivity", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistactivity", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlestats", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlestats", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlestats", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistfolders", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistfolders", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistfolders", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatefolder", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatefolder", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatefolder", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatefolder", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistprojects", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistprojects", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistprojects", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateproject", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateproject", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateproject", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateproject", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlesearch", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlesearch", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlesearch", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_writelookuperror", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_decodejson", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_writeerror", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_setsessioncookie", "to": "workspace_http_issecurerequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_clearsessioncookie", "to": "workspace_http_issecurerequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "go_pkg_database_sql", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "go_pkg_errors", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "go_pkg_fmt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "go_pkg_net", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "go_pkg_net_netip", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "go_pkg_net_url", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "go_pkg_strings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_createinviterequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_createpermissiongrantrequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_createsharelinkrequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_createassetrequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_createembedrequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_createlinkrequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_store_sharing_scansharelink", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_store_sharing_scanassets", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_store_sharing_roleallows", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_store_sharing_permissionallows", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_store_sharing_validpermission", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_store_sharing_validteamrole", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_store_sharing_validassetkind", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_store_sharing_validassetmime", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharing_go", "to": "workspace_store_sharing_validateembedurl", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listteaminvites", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createteaminvite", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_acceptinvite", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listpermissiongrants", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createdrawingpermissiongrant", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listsharelinks", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createdrawingsharelink", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_sharedresourcebytoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listdrawingassets", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createdrawingasset", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listembeds", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createembed", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listlinkreferences", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createdrawinglinkreference", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_ensureteampermission", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_teamrole", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_userbyid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_userbyemail", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_teammembership", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_drawingbyidnoauth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_ensuretargetinteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_grantallows", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_upsertoauthsession", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_workspacestats", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_workspacestatsforwhere", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_count", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_ping", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_seedtemplates", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_userexists", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createuserwithpassword", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createteamuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_authenticatepassword", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_userbysessiontoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_deletesession", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listteamsforuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_updateteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_getteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_usercanaccessteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listteammembers", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listdrawings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listdrawingsbyquery", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_searchdrawings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createdrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_getdrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_updatedrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_archivedrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listrevisions", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createrevision", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listtemplates", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listactivity", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listfolders", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createfolder", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_listprojects", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_createproject", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_defaultteamid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_ensuredrawingaccess", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store", "to": "workspace_store_insertactivity", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listteaminvites", "to": "workspace_store_ensureteampermission", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteaminvite", "to": "workspace_store_ensureteampermission", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteaminvite", "to": "workspace_store_sharing_validteamrole", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteaminvite", "to": "workspace_store_normalizeemail", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteaminvite", "to": "workspace_store_randomtoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteaminvite", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteaminvite", "to": "workspace_store_hashtoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_acceptinvite", "to": "workspace_store_userbyid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_acceptinvite", "to": "workspace_store_teammembership", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_acceptinvite", "to": "workspace_store_hashtoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_acceptinvite", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_acceptinvite", "to": "workspace_store_insertactivitytx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawingpermissiongrant", "to": "workspace_store_sharing_validpermission", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawingpermissiongrant", "to": "workspace_store_userbyemail", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawingpermissiongrant", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listsharelinks", "to": "workspace_store_sharing_scansharelink", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawingsharelink", "to": "workspace_store_randomtoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawingsharelink", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawingsharelink", "to": "workspace_store_hashtoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharedresourcebytoken", "to": "workspace_store_sharing_scansharelink", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharedresourcebytoken", "to": "workspace_store_drawingbyidnoauth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_sharedresourcebytoken", "to": "workspace_store_hashtoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listdrawingassets", "to": "workspace_store_sharing_scanassets", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawingasset", "to": "workspace_store_sharing_validassetkind", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawingasset", "to": "workspace_store_sharing_validassetmime", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawingasset", "to": "workspace_store_drawingbyidnoauth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawingasset", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createembed", "to": "workspace_store_sharing_validateembedurl", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createembed", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawinglinkreference", "to": "workspace_store_drawingbyidnoauth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawinglinkreference", "to": "workspace_store_ensuretargetinteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawinglinkreference", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_ensureteampermission", "to": "workspace_store_teamrole", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_ensureteampermission", "to": "workspace_store_sharing_roleallows", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_userbyemail", "to": "workspace_store_normalizeemail", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_teammembership", "to": "workspace_store_userbyid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_drawingbyidnoauth", "to": "workspace_store_scandrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_grantallows", "to": "workspace_store_sharing_permissionallows", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_go", "to": "go_pkg_encoding_json", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_go", "to": "go_pkg_net_http", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_go", "to": "go_pkg_testing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_go", "to": "workspace_sharing_test_testinviteacceptaddseditormembership", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_go", "to": "workspace_sharing_test_testrestricteddrawinggrantallowsviewnotedit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_go", "to": "workspace_sharing_test_testsharelinkallowsunauthenticateddrawingread", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_go", "to": "workspace_sharing_test_testembedsrejectunsafeurls", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_go", "to": "workspace_sharing_test_testassetsandlinkreferences", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testinviteacceptaddseditormembership", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testinviteacceptaddseditormembership", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testinviteacceptaddseditormembership", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testrestricteddrawinggrantallowsviewnotedit", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testrestricteddrawinggrantallowsviewnotedit", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testrestricteddrawinggrantallowsviewnotedit", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testsharelinkallowsunauthenticateddrawingread", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testsharelinkallowsunauthenticateddrawingread", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testsharelinkallowsunauthenticateddrawingread", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testembedsrejectunsafeurls", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testembedsrejectunsafeurls", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testembedsrejectunsafeurls", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testassetsandlinkreferences", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testassetsandlinkreferences", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_sharing_test_testassetsandlinkreferences", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_rate_limiter_go", "to": "go_pkg_sync", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_rate_limiter_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_rate_limiter_go", "to": "workspace_ratelimiter", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_rate_limiter_go", "to": "workspace_rate_limiter_newratelimiter", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_ratelimiter", "to": "workspace_ratelimiter_allow", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_go", "to": "go_pkg_encoding_json", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_go", "to": "go_pkg_net_http", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_go", "to": "go_pkg_testing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_go", "to": "workspace_permissions_test_testpermissionmatrix", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_go", "to": "workspace_permissions_test_testadmincanmanageteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_go", "to": "workspace_permissions_test_testnonmembercannotaccessprivateteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_go", "to": "workspace_permissions_test_testpermissioninheritance", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_testpermissionmatrix", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_testpermissionmatrix", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_testpermissionmatrix", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_testadmincanmanageteam", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_testadmincanmanageteam", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_testadmincanmanageteam", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_testnonmembercannotaccessprivateteam", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_testnonmembercannotaccessprivateteam", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_testnonmembercannotaccessprivateteam", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_testpermissioninheritance", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_testpermissioninheritance", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_permissions_test_testpermissioninheritance", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "go_pkg_encoding_json", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_user", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_session", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_team", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_teammembership", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_teaminvite", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_project", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_folder", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_drawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_drawingrevision", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_drawingasset", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_template", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_activityevent", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_sharelink", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_permissiongrant", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_embed", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_linkreference", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_models_go", "to": "workspace_workspacestats", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "go_pkg_crypto_rand", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "go_pkg_database_sql", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "go_pkg_errors", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "go_pkg_excalidraw_complete_internal_postgres", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "go_pkg_fmt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "go_pkg_strings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "go_pkg_golang_org_x_crypto_bcrypt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "workspace_oauthprofile", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "workspace_oauth_useridbyidentitytx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "workspace_oauth_useridbyemailtx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "workspace_oauth_createoauthusertx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_go", "to": "workspace_oauth_updateoauthusertx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_upsertoauthsession", "to": "workspace_oauth_useridbyidentitytx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_upsertoauthsession", "to": "workspace_oauth_updateoauthusertx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_upsertoauthsession", "to": "workspace_oauth_useridbyemailtx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_upsertoauthsession", "to": "workspace_oauth_createoauthusertx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_upsertoauthsession", "to": "workspace_store_slugify", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_upsertoauthsession", "to": "workspace_store_normalizeemail", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_upsertoauthsession", "to": "workspace_store_createteamtx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_upsertoauthsession", "to": "workspace_store_insertactivitytx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_upsertoauthsession", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_upsertoauthsession", "to": "workspace_store_createsessiontx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_createoauthusertx", "to": "assets_index_b3vpcucp_x1_read", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_createoauthusertx", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_createoauthusertx", "to": "workspace_store_uniqueusername", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_createoauthusertx", "to": "workspace_store_slugify", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_extra_go", "to": "go_pkg_database_sql", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_extra_go", "to": "go_pkg_errors", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_extra_go", "to": "go_pkg_net_http", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_extra_go", "to": "go_pkg_github_com_go_chi_chi_v5", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistteaminvites", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistteaminvites", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistteaminvites", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateteaminvite", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateteaminvite", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateteaminvite", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateteaminvite", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleacceptinvite", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleacceptinvite", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleacceptinvite", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handleacceptinvite", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistpermissions", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistpermissions", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistpermissions", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatepermission", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatepermission", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatepermission", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatepermission", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistsharelinks", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistsharelinks", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistsharelinks", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatesharelink", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatesharelink", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatesharelink", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatesharelink", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlesharedresource", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlesharedresource", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistassets", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistassets", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistassets", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateasset", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateasset", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateasset", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateasset", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistembeds", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistembeds", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistembeds", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateembed", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateembed", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateembed", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateembed", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistlinks", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistlinks", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlelistlinks", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatelink", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatelink", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatelink", "to": "workspace_http_writelookuperror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreatelink", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateteamuser", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateteamuser", "to": "workspace_http_writeerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateteamuser", "to": "workspace_http_decodejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_api_handlecreateteamuser", "to": "workspace_http_writejson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_stats_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_workspacestats", "to": "workspace_store_workspacestatsforwhere", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_workspacestatsforwhere", "to": "workspace_store_count", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_test_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_test_go", "to": "go_pkg_testing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_test_go", "to": "workspace_oauth_test_testupsertoauthsessioncreatesandreusesidentity", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_oauth_test_testupsertoauthsessioncreatesandreusesidentity", "to": "workspace_http_test_newteststore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "go_pkg_bytes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "go_pkg_encoding_json", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "go_pkg_excalidraw_complete_internal_postgres", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "go_pkg_net_url", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "go_pkg_net_http", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "go_pkg_net_http_httptest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "go_pkg_os", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "go_pkg_strings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "go_pkg_testing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "workspace_http_test_newteststore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "workspace_http_test_databaseurlwithsearchpath", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "workspace_http_test_testsignupcreatescookiesessionanddefaultteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "workspace_http_test_testdrawingaccessrequiresteammembership", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "workspace_http_test_testteammembersrequiremembership", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "workspace_http_test_testdrawingrevisionstemplatesandactivity", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_go", "to": "workspace_http_test_testhealth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_newteststore", "to": "workspace_http_test_databaseurlwithsearchpath", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_newteststore", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_newteststore", "to": "postgres_postgres_open", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_newteststore", "to": "filesystem_store_newstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_newtestapi", "to": "workspace_http_test_newteststore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_newtestapi", "to": "workspace_http_newapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_signup", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testsignupcreatescookiesessionanddefaultteam", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testsignupcreatescookiesessionanddefaultteam", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testsignupcreatescookiesessionanddefaultteam", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testdrawingaccessrequiresteammembership", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testdrawingaccessrequiresteammembership", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testdrawingaccessrequiresteammembership", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testteammembersrequiremembership", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testteammembersrequiremembership", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testteammembersrequiremembership", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testdrawingrevisionstemplatesandactivity", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testdrawingrevisionstemplatesandactivity", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testdrawingrevisionstemplatesandactivity", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testhealth", "to": "workspace_http_test_newtestapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_http_test_testhealth", "to": "workspace_http_test_dojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_crypto_rand", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_crypto_sha256", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_database_sql", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_encoding_base64", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_encoding_hex", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_encoding_json", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_errors", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_excalidraw_complete_internal_postgres", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_fmt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_net_mail", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_regexp", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_strings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_github_com_oklog_ulid_v2", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "go_pkg_golang_org_x_crypto_bcrypt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_createdrawingrequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_updatedrawingrequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_createrevisionrequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_createfolderrequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_createprojectrequest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_newstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_createteamtx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_createsessiontx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_createrevisiontx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_insertactivitytx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_execer", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_insertactivityexec", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_drawingscanner", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_scandrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_userhashscanner", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_scanuserwithhash", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_normalizeemail", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_uniqueusername", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_uniqueteamslug", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_slugify", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_validdrawingvisibility", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_randomtoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_hashtoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_ptr", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_go", "to": "workspace_store_deref", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_newstore", "to": "workspace_store_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_newstore", "to": "workspace_store_seedtemplates", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_newstore", "to": "postgres_postgres_open", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_newstore", "to": "postgres_postgres_migrate", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_seedtemplates", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_seedtemplates", "to": "workspace_store_ptr", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createuserwithpassword", "to": "workspace_store_normalizeemail", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createuserwithpassword", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createuserwithpassword", "to": "workspace_store_slugify", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createuserwithpassword", "to": "workspace_store_uniqueusername", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createuserwithpassword", "to": "workspace_store_createteamtx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createuserwithpassword", "to": "workspace_store_insertactivitytx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createuserwithpassword", "to": "workspace_store_createsessiontx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteamuser", "to": "workspace_store_normalizeemail", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteamuser", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteamuser", "to": "workspace_store_slugify", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteamuser", "to": "workspace_store_uniqueusername", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteamuser", "to": "workspace_store_insertactivitytx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_authenticatepassword", "to": "workspace_store_normalizeemail", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_authenticatepassword", "to": "workspace_store_scanuserwithhash", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_authenticatepassword", "to": "workspace_store_createsessiontx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_authenticatepassword", "to": "workspace_store_insertactivitytx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_userbysessiontoken", "to": "workspace_store_hashtoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_deletesession", "to": "workspace_store_hashtoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listteamsforuser", "to": "workspace_store_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteam", "to": "workspace_store_createteamtx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteam", "to": "workspace_store_insertactivitytx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_updateteam", "to": "workspace_store_slugify", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_updateteam", "to": "workspace_store_getteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listteammembers", "to": "workspace_store_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listdrawings", "to": "workspace_store_usercanaccessteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listdrawings", "to": "workspace_store_listdrawingsbyquery", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listdrawingsbyquery", "to": "workspace_store_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listdrawingsbyquery", "to": "workspace_store_scandrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_searchdrawings", "to": "workspace_store_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_searchdrawings", "to": "workspace_store_scandrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawing", "to": "workspace_store_deref", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawing", "to": "workspace_store_defaultteamid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawing", "to": "workspace_store_usercanaccessteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawing", "to": "workspace_store_validdrawingvisibility", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawing", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawing", "to": "workspace_store_slugify", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawing", "to": "workspace_store_createrevisiontx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawing", "to": "workspace_store_insertactivitytx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createdrawing", "to": "workspace_store_getdrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_getdrawing", "to": "workspace_store_ensuredrawingaccess", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_getdrawing", "to": "workspace_store_scandrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_updatedrawing", "to": "workspace_store_ensuredrawingaccess", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_updatedrawing", "to": "workspace_store_getdrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_updatedrawing", "to": "workspace_store_slugify", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_updatedrawing", "to": "workspace_store_validdrawingvisibility", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_updatedrawing", "to": "workspace_store_insertactivity", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_archivedrawing", "to": "workspace_store_ensuredrawingaccess", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listrevisions", "to": "workspace_store_ensuredrawingaccess", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listrevisions", "to": "workspace_store_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createrevision", "to": "workspace_store_ensuredrawingaccess", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createrevision", "to": "workspace_store_createrevisiontx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createrevision", "to": "workspace_store_insertactivitytx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listtemplates", "to": "workspace_store_usercanaccessteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listtemplates", "to": "workspace_store_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listactivity", "to": "workspace_store_usercanaccessteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listactivity", "to": "workspace_store_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listfolders", "to": "workspace_store_defaultteamid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listfolders", "to": "workspace_store_usercanaccessteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listfolders", "to": "workspace_store_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createfolder", "to": "workspace_store_defaultteamid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createfolder", "to": "workspace_store_usercanaccessteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createfolder", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createfolder", "to": "workspace_store_slugify", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listprojects", "to": "workspace_store_defaultteamid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listprojects", "to": "workspace_store_usercanaccessteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_listprojects", "to": "workspace_store_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createproject", "to": "workspace_store_usercanaccessteam", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createproject", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createproject", "to": "workspace_store_slugify", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_ensuredrawingaccess", "to": "workspace_store_sharing_roleallows", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteamtx", "to": "workspace_store_slugify", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteamtx", "to": "workspace_store_uniqueteamslug", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createteamtx", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createsessiontx", "to": "workspace_store_randomtoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createsessiontx", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createsessiontx", "to": "workspace_store_hashtoken", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_createrevisiontx", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_insertactivity", "to": "workspace_store_insertactivityexec", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_insertactivitytx", "to": "workspace_store_insertactivityexec", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_insertactivityexec", "to": "workspace_store_newid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_store_randomtoken", "to": "assets_index_b3vpcucp_x1_read", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_context_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_context_go", "to": "workspace_currentsession", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_context_go", "to": "workspace_context_withuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "workspace_context_go", "to": "workspace_context_currentuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "go_pkg_database_sql", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "go_pkg_embed", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "go_pkg_fmt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "go_pkg_strconv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "go_pkg_github_com_jackc_pgx_v5_stdlib", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "go_pkg_github_com_pressly_goose_v3", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "postgres_db", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "postgres_tx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "postgres_postgres_open", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "postgres_postgres_migrate", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "internal_postgres_postgres_go", "to": "postgres_postgres_rebind", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_db", "to": "postgres_db_execcontext", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_db", "to": "postgres_db_querycontext", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_db", "to": "postgres_db_queryrowcontext", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_db", "to": "postgres_db_begintx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_tx", "to": "postgres_tx_execcontext", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_tx", "to": "postgres_tx_querycontext", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_tx", "to": "postgres_tx_queryrowcontext", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_db_execcontext", "to": "postgres_tx_execcontext", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_db_execcontext", "to": "postgres_postgres_rebind", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_db_querycontext", "to": "postgres_tx_querycontext", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_db_querycontext", "to": "postgres_postgres_rebind", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_db_queryrowcontext", "to": "postgres_tx_queryrowcontext", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_db_queryrowcontext", "to": "postgres_postgres_rebind", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_tx_execcontext", "to": "postgres_postgres_rebind", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_tx_querycontext", "to": "postgres_postgres_rebind", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_tx_queryrowcontext", "to": "postgres_postgres_rebind", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_auth_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_auth_go", "to": "go_pkg_excalidraw_complete_handlers_auth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_auth_go", "to": "go_pkg_net_http", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_auth_go", "to": "go_pkg_strings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_auth_go", "to": "go_pkg_github_com_go_chi_render", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_auth_go", "to": "middleware_contextkey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_auth_go", "to": "middleware_auth_authjwt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_auth_authjwt", "to": "auth_auth_parsejwt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "core_user_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "core_user_go", "to": "core_user", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "core_entity_go", "to": "go_pkg_bytes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "core_entity_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "core_entity_go", "to": "core_document", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "core_entity_go", "to": "core_documentstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "core_canvas_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "core_canvas_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "core_canvas_go", "to": "core_canvas", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "core_canvas_go", "to": "core_canvasstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_storage_go", "to": "go_pkg_excalidraw_complete_core", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_storage_go", "to": "go_pkg_excalidraw_complete_stores_aws", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_storage_go", "to": "go_pkg_excalidraw_complete_stores_filesystem", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_storage_go", "to": "go_pkg_excalidraw_complete_stores_memory", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_storage_go", "to": "go_pkg_excalidraw_complete_stores_postgres", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_storage_go", "to": "go_pkg_os", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_storage_go", "to": "go_pkg_github_com_sirupsen_logrus", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_storage_go", "to": "stores_store", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_storage_go", "to": "stores_storage_getstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_storage_getstore", "to": "filesystem_store_newstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_memory_store_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_memory_store_go", "to": "go_pkg_excalidraw_complete_core", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_memory_store_go", "to": "go_pkg_fmt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_memory_store_go", "to": "go_pkg_sync", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_memory_store_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_memory_store_go", "to": "go_pkg_github_com_oklog_ulid_v2", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_memory_store_go", "to": "go_pkg_github_com_sirupsen_logrus", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_memory_store_go", "to": "memory_memstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_memory_store_go", "to": "memory_store_newstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "memory_memstore", "to": "memory_memstore_findid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "memory_memstore", "to": "memory_memstore_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "memory_memstore", "to": "memory_memstore_list", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "memory_memstore", "to": "memory_memstore_get", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "memory_memstore", "to": "memory_memstore_save", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "memory_memstore", "to": "memory_memstore_delete", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "memory_memstore_delete", "to": "filesystem_fsstore_delete", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_bytes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_encoding_json", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_errors", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_excalidraw_complete_core", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_fmt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_io", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_io_ioutil", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_log", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_path", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_github_com_aws_aws_sdk_go_v2_aws", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_github_com_aws_aws_sdk_go_v2_config", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_github_com_aws_aws_sdk_go_v2_service_s3", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_github_com_aws_aws_sdk_go_v2_service_s3_types", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "go_pkg_github_com_oklog_ulid_v2", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "aws_s3store", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_aws_store_go", "to": "aws_store_newstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aws_s3store", "to": "aws_s3store_findid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aws_s3store", "to": "aws_s3store_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aws_s3store", "to": "aws_s3store_getcanvaskey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aws_s3store", "to": "aws_s3store_list", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aws_s3store", "to": "aws_s3store_get", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aws_s3store", "to": "aws_s3store_save", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aws_s3store", "to": "aws_s3store_delete", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aws_s3store_get", "to": "aws_s3store_getcanvaskey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aws_s3store_save", "to": "aws_s3store_getcanvaskey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aws_s3store_save", "to": "aws_s3store_get", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aws_s3store_delete", "to": "aws_s3store_getcanvaskey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_postgres_store_go", "to": "go_pkg_bytes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_postgres_store_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_postgres_store_go", "to": "go_pkg_database_sql", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_postgres_store_go", "to": "go_pkg_excalidraw_complete_core", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_postgres_store_go", "to": "go_pkg_excalidraw_complete_internal_postgres", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_postgres_store_go", "to": "go_pkg_fmt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_postgres_store_go", "to": "go_pkg_log", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_postgres_store_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_postgres_store_go", "to": "go_pkg_github_com_oklog_ulid_v2", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_postgres_store_go", "to": "go_pkg_github_com_sirupsen_logrus", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_postgres_store_go", "to": "postgres_postgresstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_postgres_store_go", "to": "postgres_store_newstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_postgresstore", "to": "postgres_postgresstore_findid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_postgresstore", "to": "postgres_postgresstore_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_postgresstore", "to": "postgres_postgresstore_list", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_postgresstore", "to": "postgres_postgresstore_get", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_postgresstore", "to": "postgres_postgresstore_save", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_postgresstore", "to": "postgres_postgresstore_delete", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_store_newstore", "to": "postgres_postgres_open", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postgres_store_newstore", "to": "postgres_postgres_migrate", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "go_pkg_bytes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "go_pkg_context", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "go_pkg_encoding_json", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "go_pkg_excalidraw_complete_core", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "go_pkg_fmt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "go_pkg_log", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "go_pkg_os", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "go_pkg_path_filepath", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "go_pkg_strings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "go_pkg_time", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "go_pkg_github_com_oklog_ulid_v2", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "go_pkg_github_com_sirupsen_logrus", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "filesystem_fsstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "stores_filesystem_store_go", "to": "filesystem_store_newstore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore", "to": "filesystem_fsstore_findid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore", "to": "filesystem_fsstore_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore", "to": "filesystem_fsstore_getusercanvaspath", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore", "to": "filesystem_fsstore_list", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore", "to": "filesystem_fsstore_get", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore", "to": "filesystem_fsstore_save", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore", "to": "filesystem_fsstore_delete", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore_list", "to": "filesystem_fsstore_getusercanvaspath", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore_get", "to": "filesystem_fsstore_getusercanvaspath", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore_get", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore_save", "to": "filesystem_fsstore_getusercanvaspath", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore_delete", "to": "filesystem_fsstore_getusercanvaspath", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filesystem_fsstore_delete", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_eslint_config_mjs", "to": "typescript_eslint", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_eslint_config_mjs", "to": "eslint_plugin_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_vitest_config_mjs", "to": "config", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_vitest_config_mjs", "to": "plugin_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_vitest_config_mjs", "to": "path", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_vitest_config_mjs", "to": "url", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_playwright_config_ts", "to": "test", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_vite_config_ts", "to": "vite", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_vite_config_ts", "to": "plugin_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_vite_config_ts", "to": "path", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_e2e_app_spec_ts", "to": "test", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_c", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_u", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_mg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_sv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_v", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_xv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_vu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ev", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_jv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_nv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_tv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_wv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_cv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_mm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_av", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_oa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ov", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_lm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_lo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_bi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ol", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_dv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_mv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_gg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_lv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_pg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_yg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_uv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_vv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_gv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_du", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_qv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_kv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_va", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_hm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_kc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_fv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ho", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_bu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_t0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_a0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_sg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_l0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_c0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_o0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_f0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ml", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_sa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_tg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ga", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_d0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_wg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_yi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_h0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_cg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_m0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_getderivedstatefromerror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_getderivedstatefromprops", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_componentdidcatch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_render", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_p0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_y0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_v0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_go", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_b0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_s0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_po", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_x0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_e0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_j0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_zg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_n0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_jc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_km", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_io", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_w0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_r0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_z0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_fc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_yo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ag", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_u0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_qm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_k0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_q0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_vo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_so", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_di", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_g0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ce", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_k", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_i0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_a1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_n1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_l1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_mi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_m", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_i1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ym", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_vm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ui", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_gm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_u1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_mu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_r1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_lg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ka", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_o1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_f1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_m1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ki", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_gu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_eu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_xm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_addpostprocessor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_handle", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_p1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_al", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_wc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_pu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_y1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_jm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ic", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_fm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_v1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_wm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_b1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_s1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_x1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_pc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_im", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ru", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_e1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_hi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_j1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_uo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_bg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ro", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_eg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_kn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_t1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_z1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_d1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_h1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_k1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_xa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_q1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_lookup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_cacheuserlanguage", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ig", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_lb", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_vb", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_vg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_de", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_xb", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_qb", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_og", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_zb", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_oo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_jb", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_wb", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_no", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_w2", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_np", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_c2", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_xt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_vn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ya", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ns", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ua", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ot", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_zl", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ms", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_cs", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_vs", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_xs", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_qe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_qs", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ks", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_w", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_h", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_b", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ex", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_zx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_d3", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_dg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_hg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_index_b3vpcucp_js", "to": "assets_index_b3vpcucp_ne", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_c", "to": "assets_index_b3vpcucp_xa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_c", "to": "assets_index_b3vpcucp_ga", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_c", "to": "assets_index_b3vpcucp_hi_t", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_u", "to": "assets_index_b3vpcucp_c", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_u", "to": "cf_kv_index_canvasobject_fetch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_mg", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_mg", "to": "assets_index_b3vpcucp_i0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_v", "to": "assets_index_b3vpcucp_sv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xv", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xv", "to": "assets_index_b3vpcucp_eu_emit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xv", "to": "assets_index_b3vpcucp_qe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xv", "to": "assets_index_b3vpcucp_hi_use", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xv", "to": "assets_index_b3vpcucp_du", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xv", "to": "assets_index_b3vpcucp_wv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_vu", "to": "assets_index_b3vpcucp_xv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ev", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ev", "to": "assets_index_b3vpcucp_c", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ev", "to": "assets_index_b3vpcucp_k", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ev", "to": "assets_index_b3vpcucp_ce", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jv", "to": "assets_index_b3vpcucp_ev", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jv", "to": "assets_index_b3vpcucp_ol", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jv", "to": "assets_index_b3vpcucp_vg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jv", "to": "assets_index_b3vpcucp_hm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_nv", "to": "assets_index_b3vpcucp_vu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_nv", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_nv", "to": "assets_index_b3vpcucp_c", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_tv", "to": "assets_index_b3vpcucp_nv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_jv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_vu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_tv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_eu_emit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_u", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_ns", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_hi_t", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_ot", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_pu_resolve", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_ks", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_vm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_fm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wv", "to": "assets_index_b3vpcucp_ya", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_cv", "to": "assets_index_b3vpcucp_wv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_av", "to": "assets_index_b3vpcucp_dv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_oa", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_lo", "to": "assets_index_b3vpcucp_ol", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_lo", "to": "assets_index_b3vpcucp_ov", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_mv", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_mv", "to": "assets_index_b3vpcucp_bi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gg", "to": "assets_index_b3vpcucp_lv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_lv", "to": "assets_index_b3vpcucp_ol", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_lv", "to": "assets_index_b3vpcucp_va", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_lv", "to": "assets_index_b3vpcucp_pg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_lv", "to": "assets_index_b3vpcucp_uv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_lv", "to": "assets_index_b3vpcucp_kv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_lv", "to": "assets_index_b3vpcucp_xv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_yg", "to": "assets_index_b3vpcucp_yg_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_yg", "to": "assets_index_b3vpcucp_yg_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_yg", "to": "assets_index_b3vpcucp_yg_adddetector", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_yg", "to": "assets_index_b3vpcucp_yg_detect", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_yg", "to": "assets_index_b3vpcucp_yg_cacheuserlanguage", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_du", "to": "assets_index_b3vpcucp_qv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qv", "to": "assets_index_b3vpcucp_oa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_kv", "to": "assets_index_b3vpcucp_oa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_va", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ho", "to": "assets_index_b3vpcucp_fv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_bu", "to": "assets_index_b3vpcucp_ol", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_bu", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_bu", "to": "assets_index_b3vpcucp_kc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_bu", "to": "assets_index_b3vpcucp_jv", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_t0", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_t0", "to": "assets_index_b3vpcucp_ml", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_t0", "to": "assets_index_b3vpcucp_ol", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_t0", "to": "assets_index_b3vpcucp_oa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_a0", "to": "assets_index_b3vpcucp_z0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_sg", "to": "assets_index_b3vpcucp_va", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_sg", "to": "assets_index_b3vpcucp_oa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_l0", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_l0", "to": "assets_index_b3vpcucp_x1_reload", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_f0", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_f0", "to": "assets_index_b3vpcucp_ml", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_f0", "to": "assets_index_b3vpcucp_yi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_f0", "to": "assets_index_b3vpcucp_av", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_sa", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_sa", "to": "assets_index_b3vpcucp_ml", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ga", "to": "assets_index_b3vpcucp_j0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ga", "to": "assets_index_b3vpcucp_d0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_d0", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_d0", "to": "assets_index_b3vpcucp_ml", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_d0", "to": "assets_index_b3vpcucp_sa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_d0", "to": "assets_index_b3vpcucp_ho", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_d0", "to": "assets_index_b3vpcucp_tg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_yi", "to": "assets_index_b3vpcucp_sa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_yi", "to": "assets_index_b3vpcucp_ho", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_h0", "to": "assets_index_b3vpcucp_cg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_cg", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_cg", "to": "assets_index_b3vpcucp_ml", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_cg", "to": "assets_index_b3vpcucp_zg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_cg", "to": "assets_index_b3vpcucp_sa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_cg", "to": "assets_index_b3vpcucp_ol", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_cg", "to": "assets_index_b3vpcucp_gg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_cg", "to": "assets_index_b3vpcucp_oa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_cg", "to": "assets_index_b3vpcucp_v0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_m0", "to": "assets_index_b3vpcucp_e0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_m0", "to": "assets_index_b3vpcucp_t0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_m0", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_m0", "to": "assets_index_b3vpcucp_c0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_m0", "to": "assets_index_b3vpcucp_va", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_m0", "to": "assets_index_b3vpcucp_fc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_m0", "to": "assets_index_b3vpcucp_w0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_m0", "to": "assets_index_b3vpcucp_r0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_m0", "to": "assets_index_b3vpcucp_o0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_componentdidcatch", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_render", "to": "assets_index_b3vpcucp_o0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_p0", "to": "assets_index_b3vpcucp_c0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_p0", "to": "assets_index_b3vpcucp_sg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_p0", "to": "assets_index_b3vpcucp_pu_resolve", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_p0", "to": "assets_index_b3vpcucp_ga", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_p0", "to": "assets_index_b3vpcucp_sa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_p0", "to": "assets_index_b3vpcucp_yi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y0", "to": "assets_index_b3vpcucp_yo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_v0", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_v0", "to": "assets_index_b3vpcucp_di", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_b0", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_b0", "to": "assets_index_b3vpcucp_go", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_b0", "to": "assets_index_b3vpcucp_k0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_s0", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_s0", "to": "assets_index_b3vpcucp_go", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_0", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_0", "to": "assets_index_b3vpcucp_go", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_po", "to": "assets_index_b3vpcucp_0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_po", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x0", "to": "assets_index_b3vpcucp_po", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x0", "to": "assets_index_b3vpcucp_so", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_e0", "to": "assets_index_b3vpcucp_s0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_e0", "to": "assets_index_b3vpcucp_po", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_j0", "to": "assets_index_b3vpcucp_b0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_j0", "to": "assets_index_b3vpcucp_po", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_j0", "to": "assets_index_b3vpcucp_tg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_zg", "to": "assets_index_b3vpcucp_oa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_n0", "to": "assets_index_b3vpcucp_cg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jc", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jc", "to": "assets_index_b3vpcucp_ml", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jc", "to": "assets_index_b3vpcucp_oa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jc", "to": "assets_index_b3vpcucp_sa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jc", "to": "assets_index_b3vpcucp_ga", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jc", "to": "assets_index_b3vpcucp_bu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jc", "to": "assets_index_b3vpcucp_ho", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_km", "to": "assets_index_b3vpcucp_h0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_km", "to": "assets_index_b3vpcucp_io", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fc", "to": "assets_index_b3vpcucp_oa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ag", "to": "assets_index_b3vpcucp_va", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm", "to": "assets_index_b3vpcucp_qm_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm", "to": "assets_index_b3vpcucp_qm_getscriptpartfromcode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm", "to": "assets_index_b3vpcucp_qm_getlanguagepartfromcode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm", "to": "assets_index_b3vpcucp_qm_formatlanguagecode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm", "to": "assets_index_b3vpcucp_qm_issupportedcode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm", "to": "assets_index_b3vpcucp_qm_getbestmatchfromcodes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm", "to": "assets_index_b3vpcucp_qm_getfallbackcodes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm", "to": "assets_index_b3vpcucp_qm_toresolvehierarchy", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_k0", "to": "assets_index_b3vpcucp_sa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_k0", "to": "assets_index_b3vpcucp_so", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_k0", "to": "assets_index_b3vpcucp_vo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_k0", "to": "assets_index_b3vpcucp_y0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_k0", "to": "assets_index_b3vpcucp_x0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_q0", "to": "assets_index_b3vpcucp_sa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_q0", "to": "assets_index_b3vpcucp_so", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_q0", "to": "assets_index_b3vpcucp_vo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_vo", "to": "assets_index_b3vpcucp_yo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_so", "to": "assets_index_b3vpcucp_yo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_g0", "to": "assets_index_b3vpcucp_l0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_g0", "to": "assets_index_b3vpcucp_vo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ce", "to": "assets_index_b3vpcucp_qe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_a1", "to": "assets_index_b3vpcucp_mg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_a1", "to": "assets_index_b3vpcucp_x0", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_n1", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_n1", "to": "assets_index_b3vpcucp_yi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_n1", "to": "assets_index_b3vpcucp_sa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_n1", "to": "assets_index_b3vpcucp_bi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_n1", "to": "assets_index_b3vpcucp_uo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_n1", "to": "assets_index_b3vpcucp_hi_hasloadednamespace", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_l1", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_l1", "to": "assets_index_b3vpcucp_mg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_l1", "to": "assets_index_b3vpcucp_yi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_l1", "to": "assets_index_b3vpcucp_va", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_l1", "to": "assets_index_b3vpcucp_du", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_vm", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ui", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ui", "to": "assets_index_b3vpcucp_vm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ui", "to": "assets_index_b3vpcucp_ym", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gm", "to": "assets_index_b3vpcucp_ui", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_u1", "to": "assets_index_b3vpcucp_ui", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_mu", "to": "assets_index_b3vpcucp_ui", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_r1", "to": "assets_index_b3vpcucp_mu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_lg", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_o1", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_f1", "to": "assets_index_b3vpcucp_f1_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_f1", "to": "assets_index_b3vpcucp_f1_getregexp", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_m1", "to": "assets_index_b3vpcucp_f1_getregexp", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu", "to": "assets_index_b3vpcucp_gu_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu", "to": "assets_index_b3vpcucp_gu_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu", "to": "assets_index_b3vpcucp_gu_log", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu", "to": "assets_index_b3vpcucp_gu_deprecate", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu", "to": "assets_index_b3vpcucp_gu_forward", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu", "to": "assets_index_b3vpcucp_gu_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu", "to": "assets_index_b3vpcucp_gu_clone", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu_constructor", "to": "assets_index_b3vpcucp_yg_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu_log", "to": "assets_index_b3vpcucp_gu_forward", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu_warn", "to": "assets_index_b3vpcucp_gu_forward", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu_error", "to": "assets_index_b3vpcucp_gu_forward", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu_deprecate", "to": "assets_index_b3vpcucp_gu_forward", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_gu_forward", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_eu", "to": "assets_index_b3vpcucp_eu_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_eu", "to": "assets_index_b3vpcucp_eu_on", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_eu", "to": "assets_index_b3vpcucp_eu_off", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_eu", "to": "assets_index_b3vpcucp_eu_once", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_eu", "to": "assets_index_b3vpcucp_eu_emit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_eu_once", "to": "assets_index_b3vpcucp_eu_on", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_addnamespaces", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_removenamespaces", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_getresource", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_addresource", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_addresources", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_addresourcebundle", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_removeresourcebundle", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_hasresourcebundle", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_getresourcebundle", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_getdatabylanguage", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_haslanguagesometranslations", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm", "to": "assets_index_b3vpcucp_xm_tojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_getresource", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_getresource", "to": "assets_index_b3vpcucp_mu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_getresource", "to": "assets_index_b3vpcucp_so", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_addresource", "to": "assets_index_b3vpcucp_xm_addnamespaces", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_addresource", "to": "assets_index_b3vpcucp_gm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_addresource", "to": "assets_index_b3vpcucp_eu_emit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_addresources", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_addresources", "to": "assets_index_b3vpcucp_xm_addresource", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_addresources", "to": "assets_index_b3vpcucp_eu_emit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_addresourcebundle", "to": "assets_index_b3vpcucp_xm_addnamespaces", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_addresourcebundle", "to": "assets_index_b3vpcucp_mu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_addresourcebundle", "to": "assets_index_b3vpcucp_lg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_addresourcebundle", "to": "assets_index_b3vpcucp_gm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_addresourcebundle", "to": "assets_index_b3vpcucp_eu_emit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_removeresourcebundle", "to": "assets_index_b3vpcucp_xm_hasresourcebundle", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_removeresourcebundle", "to": "assets_index_b3vpcucp_xm_removenamespaces", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_removeresourcebundle", "to": "assets_index_b3vpcucp_eu_emit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_hasresourcebundle", "to": "assets_index_b3vpcucp_pu_getresource", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_getresourcebundle", "to": "assets_index_b3vpcucp_pu_getresource", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xm_haslanguagesometranslations", "to": "assets_index_b3vpcucp_xm_getdatabylanguage", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_p1", "to": "assets_index_b3vpcucp_gu_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_al", "to": "assets_index_b3vpcucp_p1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_wc", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu", "to": "assets_index_b3vpcucp_pu_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu", "to": "assets_index_b3vpcucp_pu_changelanguage", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu", "to": "assets_index_b3vpcucp_pu_exists", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu", "to": "assets_index_b3vpcucp_pu_extractfromkey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu", "to": "assets_index_b3vpcucp_pu_translate", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu", "to": "assets_index_b3vpcucp_pu_extendtranslation", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu", "to": "assets_index_b3vpcucp_pu_resolve", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu", "to": "assets_index_b3vpcucp_pu_isvalidlookup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu", "to": "assets_index_b3vpcucp_pu_getresource", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu", "to": "assets_index_b3vpcucp_pu_getusedparamsdetails", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu", "to": "assets_index_b3vpcucp_pu_hasdefaultvalue", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_constructor", "to": "assets_index_b3vpcucp_i1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_constructor", "to": "assets_index_b3vpcucp_gu_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_exists", "to": "assets_index_b3vpcucp_pu_resolve", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_exists", "to": "assets_index_b3vpcucp_wc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_extractfromkey", "to": "assets_index_b3vpcucp_m1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_extractfromkey", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_al", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_pu_extractfromkey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_pu_getusedparamsdetails", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_pu_resolve", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_pu_hasdefaultvalue", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_y1_getsuffix", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_wc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_pu_extendtranslation", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_pu_isvalidlookup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_gu_log", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_qm_getfallbackcodes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_translate", "to": "assets_index_b3vpcucp_qm_toresolvehierarchy", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_extendtranslation", "to": "assets_index_b3vpcucp_yg_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_extendtranslation", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_extendtranslation", "to": "assets_index_b3vpcucp_fm_interpolate", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_extendtranslation", "to": "assets_index_b3vpcucp_fm_nest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_extendtranslation", "to": "assets_index_b3vpcucp_fm_reset", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_extendtranslation", "to": "assets_index_b3vpcucp_handle", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_extendtranslation", "to": "assets_index_b3vpcucp_pu_getusedparamsdetails", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_resolve", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_pu_getusedparamsdetails", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_constructor", "to": "assets_index_b3vpcucp_gu_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_getscriptpartfromcode", "to": "assets_index_b3vpcucp_ki", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_getscriptpartfromcode", "to": "assets_index_b3vpcucp_qm_formatlanguagecode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_getlanguagepartfromcode", "to": "assets_index_b3vpcucp_ki", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_getlanguagepartfromcode", "to": "assets_index_b3vpcucp_qm_formatlanguagecode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_formatlanguagecode", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_issupportedcode", "to": "assets_index_b3vpcucp_qm_getlanguagepartfromcode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_getbestmatchfromcodes", "to": "assets_index_b3vpcucp_qm_getfallbackcodes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_getfallbackcodes", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_getfallbackcodes", "to": "assets_index_b3vpcucp_qm_getscriptpartfromcode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_getfallbackcodes", "to": "assets_index_b3vpcucp_qm_formatlanguagecode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_getfallbackcodes", "to": "assets_index_b3vpcucp_qm_getlanguagepartfromcode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_toresolvehierarchy", "to": "assets_index_b3vpcucp_qm_getfallbackcodes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_toresolvehierarchy", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_toresolvehierarchy", "to": "assets_index_b3vpcucp_qm_formatlanguagecode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_toresolvehierarchy", "to": "assets_index_b3vpcucp_qm_getscriptpartfromcode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qm_toresolvehierarchy", "to": "assets_index_b3vpcucp_qm_getlanguagepartfromcode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1", "to": "assets_index_b3vpcucp_y1_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1", "to": "assets_index_b3vpcucp_y1_clearcache", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1", "to": "assets_index_b3vpcucp_y1_getrule", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1", "to": "assets_index_b3vpcucp_y1_needsplural", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1", "to": "assets_index_b3vpcucp_y1_getpluralformsofkey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1", "to": "assets_index_b3vpcucp_y1_getsuffixes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1", "to": "assets_index_b3vpcucp_y1_getsuffix", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1_constructor", "to": "assets_index_b3vpcucp_gu_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1_getrule", "to": "assets_index_b3vpcucp_ki", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1_getrule", "to": "assets_index_b3vpcucp_gu_error", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1_getrule", "to": "assets_index_b3vpcucp_qm_getlanguagepartfromcode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1_needsplural", "to": "assets_index_b3vpcucp_y1_getrule", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1_getpluralformsofkey", "to": "assets_index_b3vpcucp_y1_getsuffixes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1_getsuffixes", "to": "assets_index_b3vpcucp_y1_getrule", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1_getsuffix", "to": "assets_index_b3vpcucp_y1_getrule", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_y1_getsuffix", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jm", "to": "assets_index_b3vpcucp_r1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jm", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_jm", "to": "assets_index_b3vpcucp_so", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm", "to": "assets_index_b3vpcucp_fm_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm", "to": "assets_index_b3vpcucp_fm_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm", "to": "assets_index_b3vpcucp_fm_reset", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm", "to": "assets_index_b3vpcucp_fm_resetregexp", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm", "to": "assets_index_b3vpcucp_fm_interpolate", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm", "to": "assets_index_b3vpcucp_fm_nest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm_constructor", "to": "assets_index_b3vpcucp_gu_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm_constructor", "to": "assets_index_b3vpcucp_yg_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm_init", "to": "assets_index_b3vpcucp_ka", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm_init", "to": "assets_index_b3vpcucp_fm_resetregexp", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm_reset", "to": "assets_index_b3vpcucp_yg_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm_interpolate", "to": "assets_index_b3vpcucp_fm_resetregexp", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm_interpolate", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm_nest", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm_nest", "to": "assets_index_b3vpcucp_c", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm_nest", "to": "assets_index_b3vpcucp_m", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_fm_nest", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_b1", "to": "assets_index_b3vpcucp_vu", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_s1", "to": "assets_index_b3vpcucp_s1_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_s1", "to": "assets_index_b3vpcucp_s1_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_s1", "to": "assets_index_b3vpcucp_s1_add", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_s1", "to": "assets_index_b3vpcucp_s1_addcached", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_s1", "to": "assets_index_b3vpcucp_s1_format", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_s1_constructor", "to": "assets_index_b3vpcucp_gu_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_s1_constructor", "to": "assets_index_b3vpcucp_yg_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_s1_init", "to": "assets_index_b3vpcucp_u", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_s1_addcached", "to": "assets_index_b3vpcucp_wm", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_1", "to": "assets_index_b3vpcucp_kn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_1", "to": "assets_index_b3vpcucp_t1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1", "to": "assets_index_b3vpcucp_x1_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1", "to": "assets_index_b3vpcucp_x1_queueload", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1", "to": "assets_index_b3vpcucp_x1_loaded", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1", "to": "assets_index_b3vpcucp_x1_read", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1", "to": "assets_index_b3vpcucp_x1_prepareloading", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1", "to": "assets_index_b3vpcucp_x1_load", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1", "to": "assets_index_b3vpcucp_x1_reload", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1", "to": "assets_index_b3vpcucp_x1_loadone", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1", "to": "assets_index_b3vpcucp_x1_savemissing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_constructor", "to": "assets_index_b3vpcucp_gu_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_loaded", "to": "assets_index_b3vpcucp_eu_emit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_loaded", "to": "assets_index_b3vpcucp_xm_addresourcebundle", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_prepareloading", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_prepareloading", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_prepareloading", "to": "assets_index_b3vpcucp_qm_toresolvehierarchy", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_prepareloading", "to": "assets_index_b3vpcucp_x1_queueload", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_load", "to": "assets_index_b3vpcucp_x1_prepareloading", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_reload", "to": "assets_index_b3vpcucp_x1_prepareloading", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_loadone", "to": "assets_index_b3vpcucp_x1_read", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_savemissing", "to": "assets_index_b3vpcucp_hi_hasloadednamespace", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_savemissing", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_savemissing", "to": "assets_index_b3vpcucp_hi_t", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_x1_savemissing", "to": "assets_index_b3vpcucp_xm_addresource", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_im", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_loadresources", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_reloadresources", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_use", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_setresolvedlanguage", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_changelanguage", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_getfixedt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_t", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_exists", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_setdefaultnamespace", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_hasloadednamespace", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_loadnamespaces", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_loadlanguages", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_dir", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_createinstance", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_cloneinstance", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi", "to": "assets_index_b3vpcucp_hi_tojson", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_constructor", "to": "assets_index_b3vpcucp_im", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_constructor", "to": "assets_index_b3vpcucp_e1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_constructor", "to": "assets_index_b3vpcucp_yg_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_init", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_init", "to": "assets_index_b3vpcucp_pc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_init", "to": "assets_index_b3vpcucp_im", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_init", "to": "assets_index_b3vpcucp_yg_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_init", "to": "assets_index_b3vpcucp_eu_on", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_init", "to": "assets_index_b3vpcucp_qm_getfallbackcodes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_init", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_init", "to": "assets_index_b3vpcucp_mi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadresources", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadresources", "to": "assets_index_b3vpcucp_u", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadresources", "to": "assets_index_b3vpcucp_qm_getfallbackcodes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadresources", "to": "assets_index_b3vpcucp_x1_load", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_reloadresources", "to": "assets_index_b3vpcucp_mi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_reloadresources", "to": "assets_index_b3vpcucp_x1_reload", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_use", "to": "assets_index_b3vpcucp_addpostprocessor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_setresolvedlanguage", "to": "assets_index_b3vpcucp_xm_haslanguagesometranslations", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_changelanguage", "to": "assets_index_b3vpcucp_mi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_changelanguage", "to": "assets_index_b3vpcucp_eu_emit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_changelanguage", "to": "assets_index_b3vpcucp_yg_detect", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_getfixedt", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_t", "to": "assets_index_b3vpcucp_pu_translate", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_hasloadednamespace", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_hasloadednamespace", "to": "assets_index_b3vpcucp_xm_hasresourcebundle", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadnamespaces", "to": "assets_index_b3vpcucp_mi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadnamespaces", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadnamespaces", "to": "assets_index_b3vpcucp_hi_loadresources", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadnamespaces", "to": "assets_index_b3vpcucp_c", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadnamespaces", "to": "assets_index_b3vpcucp_pu_resolve", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadlanguages", "to": "assets_index_b3vpcucp_mi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadlanguages", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadlanguages", "to": "assets_index_b3vpcucp_hi_loadresources", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadlanguages", "to": "assets_index_b3vpcucp_c", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_loadlanguages", "to": "assets_index_b3vpcucp_pu_resolve", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_dir", "to": "assets_index_b3vpcucp_pc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_dir", "to": "assets_index_b3vpcucp_qm_getlanguagepartfromcode", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_cloneinstance", "to": "assets_index_b3vpcucp_gu_clone", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_cloneinstance", "to": "assets_index_b3vpcucp_pc", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_cloneinstance", "to": "assets_index_b3vpcucp_eu_on", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hi_cloneinstance", "to": "assets_index_b3vpcucp_yg_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_j1", "to": "assets_index_b3vpcucp_gu_forward", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_j1", "to": "assets_index_b3vpcucp_kn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_j1", "to": "assets_index_b3vpcucp_gu_warn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_uo", "to": "assets_index_b3vpcucp_kn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_uo", "to": "assets_index_b3vpcucp_j1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ro", "to": "assets_index_b3vpcucp_hi_loadnamespaces", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ro", "to": "assets_index_b3vpcucp_bg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_eg", "to": "assets_index_b3vpcucp_kn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_eg", "to": "assets_index_b3vpcucp_ro", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_eg", "to": "assets_index_b3vpcucp_hi_loadlanguages", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_eg", "to": "assets_index_b3vpcucp_bg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_h1", "to": "assets_index_b3vpcucp_h1_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_h1", "to": "assets_index_b3vpcucp_h1_addusednamespaces", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_h1", "to": "assets_index_b3vpcucp_h1_getusednamespaces", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_k1", "to": "assets_index_b3vpcucp_b1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xa", "to": "assets_index_b3vpcucp_m1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xa", "to": "assets_index_b3vpcucp_uo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xa", "to": "assets_index_b3vpcucp_kn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_lookup", "to": "assets_index_b3vpcucp_x1_read", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_lookup", "to": "assets_index_b3vpcucp_ig", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_lookup", "to": "assets_index_b3vpcucp_sg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_cacheuserlanguage", "to": "assets_index_b3vpcucp_gu_create", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_cacheuserlanguage", "to": "assets_index_b3vpcucp_ig", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_cacheuserlanguage", "to": "assets_index_b3vpcucp_sg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_yg_constructor", "to": "assets_index_b3vpcucp_yg_init", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_yg_init", "to": "assets_index_b3vpcucp_q1", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_yg_init", "to": "assets_index_b3vpcucp_lb", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_yg_init", "to": "assets_index_b3vpcucp_yg_adddetector", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_w2", "to": "assets_index_b3vpcucp_xa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_w2", "to": "assets_index_b3vpcucp_c", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_c2", "to": "assets_index_b3vpcucp_np", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ns", "to": "assets_index_b3vpcucp_xa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ns", "to": "assets_index_b3vpcucp_ga", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_zl", "to": "assets_index_b3vpcucp_ua", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_xs", "to": "assets_index_b3vpcucp_xs_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qe", "to": "cf_kv_index_canvasobject_fetch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qs", "to": "assets_index_b3vpcucp_xa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_qs", "to": "assets_index_b3vpcucp_ga", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_h", "to": "assets_index_b3vpcucp_xa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_h", "to": "assets_index_b3vpcucp_no", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_h", "to": "assets_index_b3vpcucp_ga", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_b", "to": "assets_index_b3vpcucp_xa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_b", "to": "assets_index_b3vpcucp_no", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_b", "to": "assets_index_b3vpcucp_ga", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ex", "to": "assets_index_b3vpcucp_xa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ex", "to": "assets_index_b3vpcucp_ga", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ex", "to": "assets_index_b3vpcucp_wg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_d3", "to": "assets_index_b3vpcucp_xa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hg", "to": "assets_index_b3vpcucp_xa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hg", "to": "assets_index_b3vpcucp_wg", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_hg", "to": "assets_index_b3vpcucp_ga", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_index_b3vpcucp_ne", "to": "assets_index_b3vpcucp_no", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_main_boekpov0_js", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_dist_test_assets_index_b3vpcucp_ts", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_main_boekpov0_js", "to": "assets_main_boekpov0_el", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_main_boekpov0_js", "to": "assets_main_boekpov0_sl", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_main_boekpov0_js", "to": "assets_main_boekpov0_jl", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_dist_test_assets_main_boekpov0_js", "to": "assets_main_boekpov0_ol", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_main_boekpov0_el", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_sa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_u", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_k", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_hi_t", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_c", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_de", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_xt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_ce", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_ne", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_yi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_vo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_ya", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_va", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_qe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_no", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_ro", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_io", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_kn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_bi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_uo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_ho", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_go", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_yo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_hi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_ua", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_ka", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "cf_kv_index_canvasobject_fetch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_sl", "to": "assets_index_b3vpcucp_ot", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_main_boekpov0_el", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_sa", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_hi_t", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_u", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_k", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_fe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_c", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_de", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_ce", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_ot", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_et", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_vn", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_ne", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_yi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_ua", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_ka", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_no", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_lo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_qe", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_ro", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_ga", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_so", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_xt", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_vo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_oo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_uo", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "assets_index_b3vpcucp_ki", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_jl", "to": "cf_kv_index_canvasobject_fetch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_ol", "to": "assets_main_boekpov0_sl", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "assets_main_boekpov0_ol", "to": "assets_main_boekpov0_jl", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "react_router_dom", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_applayout", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_dashboard_dashboard", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_login", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_filebrowser_filebrowser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_team_teamsettings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_settings_usersettings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_editor_editor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_hooks", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_app_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_app_tsx", "to": "src_app_app", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_app", "to": "hooks_useauth_useauth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_main_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_main_tsx", "to": "client", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_main_tsx", "to": "react_router_dom", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_main_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_i18n", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_main_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_app", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_main_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_styles_global_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_i18n_index_ts", "to": "i18next", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_i18n_index_ts", "to": "react_i18next", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_i18n_index_ts", "to": "i18next_browser_languagedetector", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_i18n_index_ts", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_i18n_locales_en_json", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_services_api_ts", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_types", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_services_api_ts", "to": "services_api_apierror", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_services_api_ts", "to": "services_api_fetchapi", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_api_apierror", "to": "services_api_apierror_constructor", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_api_fetchapi", "to": "cf_kv_index_canvasobject_fetch", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_modal_modal_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_modal_modal_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_modal_modal_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_modal_modal_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_modal_modal_tsx", "to": "modal_modal_handlekey", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_modal_modal_tsx", "to": "modal_modal_close", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_card_card_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_card_card_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_card_card_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_card_card_tsx", "to": "card_card_card", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_card_card_tsx", "to": "card_card_cardheader", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_card_card_tsx", "to": "card_card_cardcontent", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_card_card_tsx", "to": "card_card_cardfooter", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_card_card_test_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_card_card_test_tsx", "to": "vitest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_card_card_test_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_card_card", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_templatepicker_templatepicker_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_templatepicker_templatepicker_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_templatepicker_templatepicker_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_templatepicker_templatepicker_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_templatepicker_templatepicker_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_templatepicker_templatepicker_tsx", "to": "templatepicker_templatepicker_makehanddrawnrect", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_templatepicker_templatepicker_tsx", "to": "templatepicker_templatepicker_maketext", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_templatepicker_templatepicker_tsx", "to": "templatepicker_templatepicker_makecheckbox", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "templatepicker_templatepicker_makecheckbox", "to": "templatepicker_templatepicker_makehanddrawnrect", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_input_input_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_input_input_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_input_input_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_button_button_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_button_button_tsx", "to": "clsx", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_button_button_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_button_button_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_commandpalette_commandpalette_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_commandpalette_commandpalette_tsx", "to": "react_router_dom", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_commandpalette_commandpalette_tsx", "to": "react_i18next", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_commandpalette_commandpalette_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_commandpalette_commandpalette_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_commandpalette_commandpalette_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_commandpalette_commandpalette_tsx", "to": "commandpalette_commandpalette_onkeydown", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "react_router_dom", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "react_i18next", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_layout_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_sidebar_tsx", "to": "layout_sidebar_sidebar", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_sidebar_sidebar", "to": "assets_index_b3vpcucp_hi_t", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "react_router_dom", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "react_i18next", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_types", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_layout_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "layout_header_handlechange", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "layout_header_handleselect", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "layout_header_handlecreatedrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_header_tsx", "to": "layout_header_onclick", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_applayout_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_applayout_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_applayout_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_sidebar", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_applayout_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_header", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_applayout_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_layout_layout_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_components_layout_applayout_tsx", "to": "layout_applayout_applayout", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_useauth_ts", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_useauth_ts", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_useauth_ts", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_useauth_ts", "to": "hooks_useauth_useauth", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_usedrawings_ts", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_usedrawings_ts", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_usedrawings_ts", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_usedrawings_ts", "to": "hooks_usedrawings_usedrawings", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_useteams_ts", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_useteams_ts", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_useteams_ts", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_hooks_useteams_ts", "to": "hooks_useteams_useteams", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "react_router_dom", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "react_i18next", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_types", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_filebrowser_filebrowser_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "filebrowser_filebrowser_showmodal", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "filebrowser_filebrowser_loaddata", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "filebrowser_filebrowser_handlecreatedrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "filebrowser_filebrowser_handlecreatefolder", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "filebrowser_filebrowser_handledeletedrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "filebrowser_filebrowser_handleduplicatedrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "filebrowser_filebrowser_handlerenamedrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "filebrowser_filebrowser_handlemovedrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "filebrowser_filebrowser_onclick", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_filebrowser_filebrowser_tsx", "to": "filebrowser_filebrowser_setsortby", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filebrowser_filebrowser_handlecreatedrawing", "to": "filebrowser_filebrowser_showmodal", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filebrowser_filebrowser_handlecreatefolder", "to": "filebrowser_filebrowser_showmodal", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filebrowser_filebrowser_handledeletedrawing", "to": "filebrowser_filebrowser_showmodal", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filebrowser_filebrowser_handleduplicatedrawing", "to": "filebrowser_filebrowser_showmodal", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filebrowser_filebrowser_handlerenamedrawing", "to": "filebrowser_filebrowser_showmodal", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filebrowser_filebrowser_handlemovedrawing", "to": "filebrowser_filebrowser_showmodal", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_signup_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_signup_tsx", "to": "react_router_dom", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_signup_tsx", "to": "react_i18next", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_signup_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_signup_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_signup_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_hooks", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_signup_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_auth_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_signup_tsx", "to": "auth_signup_handlesubmit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_signup_handlesubmit", "to": "workspace_http_test_signup", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_login_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_login_tsx", "to": "react_router_dom", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_login_tsx", "to": "react_i18next", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_login_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_login_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_login_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_hooks", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_login_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_auth_auth_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_auth_login_tsx", "to": "auth_login_handlesubmit", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_templates_templates_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_templates_templates_tsx", "to": "react_router_dom", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_templates_templates_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_templates_templates_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_templates_templates_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_templates_templates_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_templates_templates_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_types", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_templates_templates_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_templates_templates_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_templates_templates_tsx", "to": "templates_templates_handlecreate", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_templates_templates_tsx", "to": "templates_templates_handleusetemplate", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "react_router_dom", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "react_i18next", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components_templatepicker_templatepicker", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_types", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_editor_editor_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "types", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "editor_editor_prepareelementsforimport", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "editor_editor_appstatewithoutgrid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "editor_editor_loaddrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "editor_editor_handlerestorerevision", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "editor_editor_handlemanualsave", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_editor_editor_tsx", "to": "editor_editor_handleloadtemplate", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "editor_editor_loaddrawing", "to": "editor_editor_appstatewithoutgrid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "editor_editor_handlerestorerevision", "to": "editor_editor_appstatewithoutgrid", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "editor_editor_handleloadtemplate", "to": "editor_editor_prepareelementsforimport", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_usersettings_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_usersettings_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_usersettings_tsx", "to": "react_i18next", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_usersettings_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_usersettings_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_settings_usersettings_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_settings_settings_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_dashboard_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_dashboard_tsx", "to": "react_router_dom", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_dashboard_tsx", "to": "react_i18next", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_dashboard_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_dashboard_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_dashboard_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_dashboard_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_dashboard_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_dashboard_dashboard_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_dashboard_tsx", "to": "dashboard_dashboard_statchart", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_dashboard_tsx", "to": "dashboard_dashboard_loaddata", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_dashboard_tsx", "to": "dashboard_dashboard_handlecreatedrawing", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_dashboard_dashboard_tsx", "to": "dashboard_dashboard_formatbytes", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_team_teamsettings_tsx", "to": "react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_team_teamsettings_tsx", "to": "lucide_react", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_team_teamsettings_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_components", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_team_teamsettings_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_team_teamsettings_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_services", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_team_teamsettings_tsx", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_pages_team_team_module_scss", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_team_teamsettings_tsx", "to": "team_teamsettings_load", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_pages_team_teamsettings_tsx", "to": "team_teamsettings_handlecreateuser", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_test_setup_ts", "to": "vitest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_teamstore_ts", "to": "zustand", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_teamstore_ts", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_types", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_drawingstore_ts", "to": "zustand", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_drawingstore_ts", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_types", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_themestore_test_ts", "to": "vitest", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_themestore_test_ts", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_stores_themestore", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_themestore_ts", "to": "zustand", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_themestore_ts", "to": "middleware", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_themestore_ts", "to": "stores_themestore_getinitialtheme", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_themestore_ts", "to": "stores_themestore_applytheme", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_authstore_ts", "to": "zustand", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_src_stores_authstore_ts", "to": "home_tdvorak_desktop_prog_html_excalidraw_frontend_src_types", "label": "", "title": " [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
|
|
const LEGEND = [];
|
|
|
|
// 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> |