305 lines
588 KiB
HTML
305 lines
588 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; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
|
|
#legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
|
|
#legend-controls label:hover { color: #e0e0e0; }
|
|
.legend-cb, #select-all-cb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1.5px solid #3a3a5e; border-radius: 3px; background: #0f0f1a; cursor: pointer; position: relative; flex-shrink: 0; }
|
|
.legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
|
|
.legend-cb:checked::after, #select-all-cb:checked::after { content: ''; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
|
|
#select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
|
|
#select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="graph"></div>
|
|
<div id="sidebar">
|
|
<div id="search-wrap">
|
|
<input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
|
|
<div id="search-results"></div>
|
|
</div>
|
|
<div id="info-panel">
|
|
<h3>Node Info</h3>
|
|
<div id="info-content"><span class="empty">Click a node to inspect it</span></div>
|
|
</div>
|
|
<div id="legend-wrap">
|
|
<h3>Communities</h3>
|
|
<div id="legend-controls">
|
|
<label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
|
|
</div>
|
|
<div id="legend"></div>
|
|
</div>
|
|
<div id="stats">747 nodes · 1213 edges · 79 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "postcss_config_mjs", "label": "postcss.config.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "postcss.config.mjs", "community": 43, "community_name": "PostCSS Config", "source_file": "postcss.config.mjs", "file_type": "code", "degree": 1}, {"id": "lms_system_postcss_config_config", "label": "config", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "config", "community": 43, "community_name": "PostCSS Config", "source_file": "postcss.config.mjs", "file_type": "code", "degree": 1}, {"id": "load_test_js", "label": "load-test.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "load-test.js", "community": 20, "community_name": "Load Testing", "source_file": "load-test.js", "file_type": "code", "degree": 9}, {"id": "lms_system_load_test_lessons", "label": "LESSONS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "LESSONS", "community": 20, "community_name": "Load Testing", "source_file": "load-test.js", "file_type": "code", "degree": 1}, {"id": "lms_system_load_test_test_user", "label": "TEST_USER", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TEST_USER", "community": 20, "community_name": "Load Testing", "source_file": "load-test.js", "file_type": "code", "degree": 1}, {"id": "lms_system_load_test_browser_headers", "label": "BROWSER_HEADERS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BROWSER_HEADERS", "community": 20, "community_name": "Load Testing", "source_file": "load-test.js", "file_type": "code", "degree": 1}, {"id": "lms_system_load_test_options", "label": "options", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "options", "community": 20, "community_name": "Load Testing", "source_file": "load-test.js", "file_type": "code", "degree": 1}, {"id": "lms_system_load_test_jar", "label": "jar", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "jar", "community": 20, "community_name": "Load Testing", "source_file": "load-test.js", "file_type": "code", "degree": 1}, {"id": "lms_system_load_test_loginres", "label": "loginRes", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "loginRes", "community": 20, "community_name": "Load Testing", "source_file": "load-test.js", "file_type": "code", "degree": 1}, {"id": "lms_system_load_test_dashres", "label": "dashRes", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "dashRes", "community": 20, "community_name": "Load Testing", "source_file": "load-test.js", "file_type": "code", "degree": 1}, {"id": "lms_system_load_test_courseres", "label": "courseRes", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "courseRes", "community": 20, "community_name": "Load Testing", "source_file": "load-test.js", "file_type": "code", "degree": 1}, {"id": "lms_system_load_test_lessonres", "label": "lessonRes", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "lessonRes", "community": 20, "community_name": "Load Testing", "source_file": "load-test.js", "file_type": "code", "degree": 1}, {"id": "prisma_config_ts", "label": "prisma.config.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma.config.ts", "community": 34, "community_name": "Tech Docs & Prisma Schema", "source_file": "prisma.config.ts", "file_type": "code", "degree": 1}, {"id": "next_env_d_ts", "label": "next-env.d.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "next-env.d.ts", "community": 52, "community_name": "Community 52", "source_file": "next-env.d.ts", "file_type": "code", "degree": 0}, {"id": "package_json", "label": "package.json", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "package.json", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 8}, {"id": "lms_system_package_name", "label": "name", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_version", "label": "version", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_private", "label": "private", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_scripts", "label": "scripts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 6}, {"id": "lms_system_package_scripts_dev", "label": "dev", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_scripts_build", "label": "build", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_scripts_start", "label": "start", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "start", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_scripts_lint", "label": "lint", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "lint", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_scripts_type_check", "label": "type-check", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "type-check", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_prisma", "label": "prisma", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "lms_system_package_prisma_seed", "label": "seed", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "seed", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies", "label": "dependencies", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 27.2, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 35}, {"id": "lms_system_package_dependencies_aws_sdk_client_s3", "label": "@aws-sdk/client-s3", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@aws-sdk/client-s3", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_aws_sdk_s3_request_presigner", "label": "@aws-sdk/s3-request-presigner", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@aws-sdk/s3-request-presigner", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_base_ui_react", "label": "@base-ui/react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@base-ui/react", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_dnd_kit_core", "label": "@dnd-kit/core", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@dnd-kit/core", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_dnd_kit_sortable", "label": "@dnd-kit/sortable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@dnd-kit/sortable", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_dnd_kit_utilities", "label": "@dnd-kit/utilities", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@dnd-kit/utilities", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_kinescope_react_kinescope_player", "label": "@kinescope/react-kinescope-player", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@kinescope/react-kinescope-player", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_prisma_adapter_pg", "label": "@prisma/adapter-pg", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@prisma/adapter-pg", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_prisma_client", "label": "@prisma/client", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "@prisma/client", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "lms_system_package_dependencies_tiptap_extension_image", "label": "@tiptap/extension-image", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@tiptap/extension-image", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_tiptap_extension_link", "label": "@tiptap/extension-link", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@tiptap/extension-link", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_tiptap_extension_placeholder", "label": "@tiptap/extension-placeholder", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@tiptap/extension-placeholder", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_tiptap_extension_underline", "label": "@tiptap/extension-underline", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@tiptap/extension-underline", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_tiptap_pm", "label": "@tiptap/pm", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@tiptap/pm", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_tiptap_react", "label": "@tiptap/react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@tiptap/react", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_tiptap_starter_kit", "label": "@tiptap/starter-kit", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@tiptap/starter-kit", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_bcryptjs", "label": "bcryptjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "bcryptjs", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_better_auth", "label": "better-auth", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "better-auth", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_class_variance_authority", "label": "class-variance-authority", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "class-variance-authority", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_clsx", "label": "clsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "clsx", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "lms_system_package_dependencies_gray_matter", "label": "gray-matter", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "gray-matter", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_iconv_lite", "label": "iconv-lite", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "iconv-lite", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_lucide_react", "label": "lucide-react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "lucide-react", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_next", "label": "next", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "next", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_next_themes", "label": "next-themes", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "next-themes", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_pg", "label": "pg", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "pg", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_react", "label": "react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_react_dom", "label": "react-dom", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_remark_parse", "label": "remark-parse", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "remark-parse", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_resend", "label": "resend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "resend", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_sonner", "label": "sonner", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "sonner", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_tailwind_merge", "label": "tailwind-merge", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwind-merge", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_dependencies_unified", "label": "unified", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "unified", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "lms_system_package_dependencies_zod", "label": "zod", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "zod", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies", "label": "devDependencies", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "devDependencies", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 14}, {"id": "lms_system_package_devdependencies_tailwindcss_postcss", "label": "@tailwindcss/postcss", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@tailwindcss/postcss", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies_types_bcryptjs", "label": "@types/bcryptjs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/bcryptjs", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies_types_node", "label": "@types/node", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies_types_pg", "label": "@types/pg", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/pg", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies_types_react", "label": "@types/react", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies_types_react_dom", "label": "@types/react-dom", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react-dom", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies_dotenv", "label": "dotenv", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "dotenv", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies_eslint", "label": "eslint", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies_eslint_config_next", "label": "eslint-config-next", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-config-next", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies_prisma", "label": "prisma", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies_tailwindcss", "label": "tailwindcss", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwindcss", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies_ts_node", "label": "ts-node", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-node", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "lms_system_package_devdependencies_typescript", "label": "typescript", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 8, "community_name": "Next.js Config", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "components_json", "label": "components.json", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "components.json", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 11}, {"id": "lms_system_components_schema", "label": "$schema", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "$schema", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_style", "label": "style", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "style", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_rsc", "label": "rsc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "rsc", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_tsx", "label": "tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "tsx", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_tailwind", "label": "tailwind", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwind", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 6}, {"id": "lms_system_components_tailwind_config", "label": "config", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "config", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_tailwind_css", "label": "css", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "css", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_tailwind_basecolor", "label": "baseColor", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "baseColor", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_tailwind_cssvariables", "label": "cssVariables", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "cssVariables", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_tailwind_prefix", "label": "prefix", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "prefix", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_iconlibrary", "label": "iconLibrary", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "iconLibrary", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_rtl", "label": "rtl", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "rtl", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_aliases", "label": "aliases", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "aliases", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 6}, {"id": "lms_system_components_aliases_components", "label": "components", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "components", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_aliases_utils", "label": "utils", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "utils", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_aliases_ui", "label": "ui", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ui", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_aliases_lib", "label": "lib", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_aliases_hooks", "label": "hooks", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "hooks", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_menucolor", "label": "menuColor", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "menuColor", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_menuaccent", "label": "menuAccent", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "menuAccent", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "lms_system_components_registries", "label": "registries", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "registries", "community": 12, "community_name": "Components Manifest", "source_file": "components.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_json", "label": "tsconfig.json", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.json", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 3}, {"id": "lms_system_tsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "compilerOptions", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 16}, {"id": "lms_system_tsconfig_compileroptions_target", "label": "target", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_lib", "label": "lib", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_allowjs", "label": "allowJs", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "allowJs", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_strict", "label": "strict", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "strict", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_noemit", "label": "noEmit", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "noEmit", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_esmoduleinterop", "label": "esModuleInterop", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "esModuleInterop", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_module", "label": "module", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_resolvejsonmodule", "label": "resolveJsonModule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveJsonModule", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_isolatedmodules", "label": "isolatedModules", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "isolatedModules", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_jsx", "label": "jsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "jsx", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_incremental", "label": "incremental", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "incremental", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_plugins", "label": "plugins", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "plugins", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_compileroptions_paths", "label": "paths", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "paths", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 2}, {"id": "lms_system_tsconfig_paths", "label": "@/*", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@/*", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_include", "label": "include", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "lms_system_tsconfig_exclude", "label": "exclude", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "exclude", "community": 15, "community_name": "TSConfig", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "entrypoint_sh", "label": "entrypoint.sh", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "entrypoint.sh", "community": 53, "community_name": "Community 53", "source_file": "entrypoint.sh", "file_type": "code", "degree": 0}, {"id": "eslint_config_mjs", "label": "eslint.config.mjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint.config.mjs", "community": 42, "community_name": "ESLint Config", "source_file": "eslint.config.mjs", "file_type": "code", "degree": 1}, {"id": "lms_system_eslint_config_eslintconfig", "label": "eslintConfig", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "eslintConfig", "community": 42, "community_name": "ESLint Config", "source_file": "eslint.config.mjs", "file_type": "code", "degree": 1}, {"id": "next_config_ts", "label": "next.config.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "next.config.ts", "community": 8, "community_name": "Next.js Config", "source_file": "next.config.ts", "file_type": "code", "degree": 2}, {"id": "lms_system_next_config_nextconfig", "label": "nextConfig", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "nextConfig", "community": 8, "community_name": "Next.js Config", "source_file": "next.config.ts", "file_type": "code", "degree": 1}, {"id": "prisma_seed_ts", "label": "seed.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "seed.ts", "community": 30, "community_name": "Prisma Seed", "source_file": "prisma/seed.ts", "file_type": "code", "degree": 3}, {"id": "prisma_seed_adapter", "label": "adapter", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "adapter", "community": 30, "community_name": "Prisma Seed", "source_file": "prisma/seed.ts", "file_type": "code", "degree": 1}, {"id": "prisma_seed_prisma", "label": "prisma", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 30, "community_name": "Prisma Seed", "source_file": "prisma/seed.ts", "file_type": "code", "degree": 1}, {"id": "prisma_seed_main", "label": "main()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 30, "community_name": "Prisma Seed", "source_file": "prisma/seed.ts", "file_type": "code", "degree": 1}, {"id": "scripts_backup_sh", "label": "backup.sh", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "backup.sh", "community": 47, "community_name": "Backup Script", "source_file": "scripts/backup.sh", "file_type": "code", "degree": 1}, {"id": "scripts_backup_log", "label": "log()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "log()", "community": 47, "community_name": "Backup Script", "source_file": "scripts/backup.sh", "file_type": "code", "degree": 1}, {"id": "src_middleware_ts", "label": "middleware.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "middleware.ts", "community": 32, "community_name": "Middleware", "source_file": "src/middleware.ts", "file_type": "code", "degree": 3}, {"id": "src_middleware_public_routes", "label": "PUBLIC_ROUTES", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PUBLIC_ROUTES", "community": 32, "community_name": "Middleware", "source_file": "src/middleware.ts", "file_type": "code", "degree": 1}, {"id": "src_middleware_middleware", "label": "middleware()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "middleware()", "community": 32, "community_name": "Middleware", "source_file": "src/middleware.ts", "file_type": "code", "degree": 1}, {"id": "src_middleware_config", "label": "config", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "config", "community": 32, "community_name": "Middleware", "source_file": "src/middleware.ts", "file_type": "code", "degree": 1}, {"id": "src_app_layout_tsx", "label": "layout.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "layout.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/layout.tsx", "file_type": "code", "degree": 5}, {"id": "app_layout_firamono", "label": "firaMono", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "firaMono", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/layout.tsx", "file_type": "code", "degree": 1}, {"id": "app_layout_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/layout.tsx", "file_type": "code", "degree": 2}, {"id": "app_layout_rootlayout", "label": "RootLayout()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "RootLayout()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/layout.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_page_tsx", "label": "page.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/page.tsx", "file_type": "code", "degree": 3}, {"id": "app_page_homepage", "label": "HomePage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HomePage()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_student_layout_tsx", "label": "layout.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "layout.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(student)/layout.tsx", "file_type": "code", "degree": 9}, {"id": "student_layout_studentlayout", "label": "StudentLayout()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "StudentLayout()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(student)/layout.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_student_dashboard_page_tsx", "label": "page.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/(student)/dashboard/page.tsx", "file_type": "code", "degree": 4}, {"id": "dashboard_page_studentdashboard", "label": "StudentDashboard()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "StudentDashboard()", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/(student)/dashboard/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_student_courses_slug_layout_tsx", "label": "layout.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "layout.tsx", "community": 25, "community_name": "Student Course Sidebar Layout", "source_file": "src/app/(student)/courses/[slug]/layout.tsx", "file_type": "code", "degree": 7}, {"id": "slug_layout_props", "label": "Props", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 25, "community_name": "Student Course Sidebar Layout", "source_file": "src/app/(student)/courses/[slug]/layout.tsx", "file_type": "code", "degree": 1}, {"id": "slug_layout_courselayout", "label": "CourseLayout()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CourseLayout()", "community": 25, "community_name": "Student Course Sidebar Layout", "source_file": "src/app/(student)/courses/[slug]/layout.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_student_courses_slug_page_tsx", "label": "page.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/(student)/courses/[slug]/page.tsx", "file_type": "code", "degree": 3}, {"id": "slug_page_props", "label": "Props", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/(student)/courses/[slug]/page.tsx", "file_type": "code", "degree": 1}, {"id": "slug_page_coursepage", "label": "CoursePage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CoursePage()", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/(student)/courses/[slug]/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_student_courses_slug_lessons_lessonid_actions_ts", "label": "actions.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "actions.ts", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/actions.ts", "file_type": "code", "degree": 4}, {"id": "lessonid_actions_togglelessonprogress", "label": "toggleLessonProgress()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleLessonProgress()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/actions.ts", "file_type": "code", "degree": 1}, {"id": "src_app_student_courses_slug_lessons_lessonid_homework_actions_ts", "label": "homework-actions.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "homework-actions.ts", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/homework-actions.ts", "file_type": "code", "degree": 8}, {"id": "lessonid_homework_actions_homeworkfile", "label": "HomeworkFile", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeworkFile", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/homework-actions.ts", "file_type": "code", "degree": 1}, {"id": "lessonid_homework_actions_submithomework", "label": "submitHomework()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "submitHomework()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/homework-actions.ts", "file_type": "code", "degree": 1}, {"id": "src_app_student_courses_slug_lessons_lessonid_comment_actions_ts", "label": "comment-actions.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "comment-actions.ts", "community": 36, "community_name": "Student Comment Actions", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/comment-actions.ts", "file_type": "code", "degree": 5}, {"id": "lessonid_comment_actions_addcomment", "label": "addComment()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "addComment()", "community": 36, "community_name": "Student Comment Actions", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/comment-actions.ts", "file_type": "code", "degree": 1}, {"id": "lessonid_comment_actions_deletecomment", "label": "deleteComment()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteComment()", "community": 36, "community_name": "Student Comment Actions", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/comment-actions.ts", "file_type": "code", "degree": 1}, {"id": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "label": "page.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 19.3, "font": {"size": 12, "color": "#ffffff"}, "title": "page.tsx", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/page.tsx", "file_type": "code", "degree": 19}, {"id": "lessonid_page_props", "label": "Props", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/lessons/[lessonId]/page.tsx", "file_type": "code", "degree": 2}, {"id": "lessonid_page_lessonpage", "label": "LessonPage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonPage()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_student_profile_actions_ts", "label": "actions.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "actions.ts", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/(student)/profile/actions.ts", "file_type": "code", "degree": 4}, {"id": "profile_actions_changepasswordaction", "label": "changePasswordAction()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "changePasswordAction()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/(student)/profile/actions.ts", "file_type": "code", "degree": 1}, {"id": "src_app_student_profile_page_tsx", "label": "page.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/(student)/profile/page.tsx", "file_type": "code", "degree": 4}, {"id": "profile_page_metadata", "label": "metadata", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/(student)/profile/page.tsx", "file_type": "code", "degree": 1}, {"id": "profile_page_profilepage", "label": "ProfilePage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfilePage()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/(student)/profile/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_student_questions_page_tsx", "label": "page.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/(student)/questions/page.tsx", "file_type": "code", "degree": 4}, {"id": "questions_page_questionspage", "label": "QuestionsPage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "QuestionsPage()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/(student)/questions/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_student_questions_new_page_tsx", "label": "page.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 29, "community_name": "Student New Question Page", "source_file": "src/app/(student)/questions/new/page.tsx", "file_type": "code", "degree": 3}, {"id": "new_page_fileattachment", "label": "FileAttachment", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FileAttachment", "community": 29, "community_name": "Student New Question Page", "source_file": "src/app/(student)/questions/new/page.tsx", "file_type": "code", "degree": 1}, {"id": "new_page_formatfilesize", "label": "formatFileSize()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatFileSize()", "community": 29, "community_name": "Student New Question Page", "source_file": "src/app/(student)/questions/new/page.tsx", "file_type": "code", "degree": 1}, {"id": "new_page_newquestionpage", "label": "NewQuestionPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "NewQuestionPage()", "community": 29, "community_name": "Student New Question Page", "source_file": "src/app/(student)/questions/new/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_student_questions_id_page_tsx", "label": "page.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/(student)/questions/[id]/page.tsx", "file_type": "code", "degree": 6}, {"id": "id_page_questionthreadpage", "label": "QuestionThreadPage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "QuestionThreadPage()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/(student)/questions/[id]/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_layout_tsx", "label": "layout.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "layout.tsx", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/admin/layout.tsx", "file_type": "code", "degree": 6}, {"id": "admin_layout_adminlayout", "label": "AdminLayout()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminLayout()", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/admin/layout.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_admin_settings_actions_ts", "label": "actions.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "actions.ts", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/admin/settings/actions.ts", "file_type": "code", "degree": 8}, {"id": "settings_actions_savesettings", "label": "saveSettings()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "saveSettings()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/admin/settings/actions.ts", "file_type": "code", "degree": 2}, {"id": "src_app_admin_settings_page_tsx", "label": "page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/admin/settings/page.tsx", "file_type": "code", "degree": 6}, {"id": "settings_page_metadata", "label": "metadata", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/admin/settings/page.tsx", "file_type": "code", "degree": 1}, {"id": "settings_page_settingspage", "label": "SettingsPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingsPage()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/admin/settings/page.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_admin_comments_delete_action_ts", "label": "delete-action.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "delete-action.ts", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/admin/comments/delete-action.ts", "file_type": "code", "degree": 4}, {"id": "comments_delete_action_deletecomment", "label": "deleteComment()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteComment()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/admin/comments/delete-action.ts", "file_type": "code", "degree": 1}, {"id": "src_app_admin_comments_actions_ts", "label": "actions.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "actions.ts", "community": 21, "community_name": "Admin Comments Moderation", "source_file": "src/app/admin/comments/actions.ts", "file_type": "code", "degree": 5}, {"id": "comments_actions_admindeletecomment", "label": "adminDeleteComment()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "adminDeleteComment()", "community": 21, "community_name": "Admin Comments Moderation", "source_file": "src/app/admin/comments/actions.ts", "file_type": "code", "degree": 2}, {"id": "src_app_admin_comments_page_tsx", "label": "page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 21, "community_name": "Admin Comments Moderation", "source_file": "src/app/admin/comments/page.tsx", "file_type": "code", "degree": 8}, {"id": "comments_page_metadata", "label": "metadata", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 21, "community_name": "Admin Comments Moderation", "source_file": "src/app/admin/comments/page.tsx", "file_type": "code", "degree": 1}, {"id": "comments_page_props", "label": "Props", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 21, "community_name": "Admin Comments Moderation", "source_file": "src/app/admin/comments/page.tsx", "file_type": "code", "degree": 1}, {"id": "comments_page_admincommentspage", "label": "AdminCommentsPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminCommentsPage()", "community": 21, "community_name": "Admin Comments Moderation", "source_file": "src/app/admin/comments/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_dashboard_page_tsx", "label": "page.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 27, "community_name": "Admin/Curator Dashboards", "source_file": "src/app/admin/dashboard/page.tsx", "file_type": "code", "degree": 3}, {"id": "dashboard_page_admindashboard", "label": "AdminDashboard()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminDashboard()", "community": 27, "community_name": "Admin/Curator Dashboards", "source_file": "src/app/admin/dashboard/page.tsx", "file_type": "code", "degree": 1}, {"id": "dashboard_page_statcard", "label": "StatCard()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "StatCard()", "community": 27, "community_name": "Admin/Curator Dashboards", "source_file": "src/app/curator/dashboard/page.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_admin_courses_actions_ts", "label": "actions.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "actions.ts", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/courses/actions.ts", "file_type": "code", "degree": 10}, {"id": "courses_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/courses/actions.ts", "file_type": "code", "degree": 4}, {"id": "courses_actions_slugify", "label": "slugify()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "slugify()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/courses/actions.ts", "file_type": "code", "degree": 2}, {"id": "courses_actions_createcourse", "label": "createCourse()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "createCourse()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/courses/actions.ts", "file_type": "code", "degree": 4}, {"id": "courses_actions_updatecourse", "label": "updateCourse()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "updateCourse()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/courses/actions.ts", "file_type": "code", "degree": 3}, {"id": "courses_actions_deletecourse", "label": "deleteCourse()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteCourse()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/courses/actions.ts", "file_type": "code", "degree": 3}, {"id": "src_app_admin_courses_page_tsx", "label": "page.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/courses/page.tsx", "file_type": "code", "degree": 8}, {"id": "courses_page_coursespage", "label": "CoursesPage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CoursesPage()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/courses/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_courses_courseid_actions_ts", "label": "actions.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "actions.ts", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/admin/courses/[courseId]/actions.ts", "file_type": "code", "degree": 12}, {"id": "courseid_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/admin/courses/[courseId]/actions.ts", "file_type": "code", "degree": 7}, {"id": "courseid_actions_createmodule", "label": "createModule()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "createModule()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/admin/courses/[courseId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "courseid_actions_updatemodule", "label": "updateModule()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "updateModule()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/admin/courses/[courseId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "courseid_actions_deletemodule", "label": "deleteModule()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteModule()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/admin/courses/[courseId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "courseid_actions_reordermodules", "label": "reorderModules()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "reorderModules()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/admin/courses/[courseId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "courseid_actions_grantaccess", "label": "grantAccess()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "grantAccess()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/admin/courses/[courseId]/actions.ts", "file_type": "code", "degree": 3}, {"id": "courseid_actions_revokeaccess", "label": "revokeAccess()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "revokeAccess()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/admin/courses/[courseId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "src_app_admin_courses_courseid_page_tsx", "label": "page.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "page.tsx", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/app/admin/courses/[courseId]/page.tsx", "file_type": "code", "degree": 11}, {"id": "courseid_page_props", "label": "Props", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/app/admin/courses/[courseId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "courseid_page_coursedetailpage", "label": "CourseDetailPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CourseDetailPage()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/app/admin/courses/[courseId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_courses_courseid_modules_moduleid_actions_ts", "label": "actions.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "actions.ts", "community": 24, "community_name": "Module Actions Standalone", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/actions.ts", "file_type": "code", "degree": 10}, {"id": "moduleid_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 24, "community_name": "Module Actions Standalone", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/actions.ts", "file_type": "code", "degree": 7}, {"id": "moduleid_actions_createlesson", "label": "createLesson()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "createLesson()", "community": 24, "community_name": "Module Actions Standalone", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "moduleid_actions_updatelesson", "label": "updateLesson()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "updateLesson()", "community": 24, "community_name": "Module Actions Standalone", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "moduleid_actions_deletelesson", "label": "deleteLesson()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteLesson()", "community": 24, "community_name": "Module Actions Standalone", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "moduleid_actions_reorderlessons", "label": "reorderLessons()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "reorderLessons()", "community": 24, "community_name": "Module Actions Standalone", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "moduleid_actions_togglelessonpublished", "label": "toggleLessonPublished()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleLessonPublished()", "community": 24, "community_name": "Module Actions Standalone", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "moduleid_actions_movelessontomodule", "label": "moveLessonToModule()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "moveLessonToModule()", "community": 24, "community_name": "Module Actions Standalone", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "src_app_admin_courses_courseid_modules_moduleid_page_tsx", "label": "page.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/page.tsx", "file_type": "code", "degree": 5}, {"id": "moduleid_page_props", "label": "Props", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "moduleid_page_modulepage", "label": "ModulePage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ModulePage()", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_actions_ts", "label": "actions.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "actions.ts", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/lessons/[lessonId]/actions.ts", "file_type": "code", "degree": 5}, {"id": "lessonid_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/lessons/[lessonId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "lessonid_actions_savelesson", "label": "saveLesson()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "saveLesson()", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/lessons/[lessonId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_homework_actions_ts", "label": "homework-actions.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "homework-actions.ts", "community": 31, "community_name": "Admin Homework Actions", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/lessons/[lessonId]/homework-actions.ts", "file_type": "code", "degree": 6}, {"id": "lessonid_homework_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 31, "community_name": "Admin Homework Actions", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/lessons/[lessonId]/homework-actions.ts", "file_type": "code", "degree": 3}, {"id": "lessonid_homework_actions_savehomework", "label": "saveHomework()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "saveHomework()", "community": 31, "community_name": "Admin Homework Actions", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/lessons/[lessonId]/homework-actions.ts", "file_type": "code", "degree": 2}, {"id": "lessonid_homework_actions_deletehomework", "label": "deleteHomework()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteHomework()", "community": 31, "community_name": "Admin Homework Actions", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/lessons/[lessonId]/homework-actions.ts", "file_type": "code", "degree": 2}, {"id": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_page_tsx", "label": "page.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "page.tsx", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/lessons/[lessonId]/page.tsx", "file_type": "code", "degree": 11}, {"id": "lessonid_page_lessoneditorpage", "label": "LessonEditorPage()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonEditorPage()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/lessons/[lessonId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_import_export_import_actions_ts", "label": "import-actions.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.4, "font": {"size": 12, "color": "#ffffff"}, "title": "import-actions.ts", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/import-actions.ts", "file_type": "code", "degree": 15}, {"id": "import_export_import_actions_parsedrow", "label": "ParsedRow", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ParsedRow", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/import-actions.ts", "file_type": "code", "degree": 1}, {"id": "import_export_import_actions_previewresult", "label": "PreviewResult", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PreviewResult", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/import-actions.ts", "file_type": "code", "degree": 2}, {"id": "import_export_import_actions_importoptions", "label": "ImportOptions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ImportOptions", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/import-actions.ts", "file_type": "code", "degree": 2}, {"id": "import_export_import_actions_applyresult", "label": "ApplyResult", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ApplyResult", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/import-actions.ts", "file_type": "code", "degree": 2}, {"id": "import_export_import_actions_parsecsvline", "label": "parseCSVLine()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "parseCSVLine()", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/import-actions.ts", "file_type": "code", "degree": 2}, {"id": "import_export_import_actions_normalizeheaders", "label": "normalizeHeaders()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeHeaders()", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/import-actions.ts", "file_type": "code", "degree": 2}, {"id": "import_export_import_actions_assertadmin", "label": "assertAdmin()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "assertAdmin()", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/import-actions.ts", "file_type": "code", "degree": 3}, {"id": "import_export_import_actions_parsecsv", "label": "parseCSV()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parseCSV()", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/import-actions.ts", "file_type": "code", "degree": 5}, {"id": "import_export_import_actions_applyimport", "label": "applyImport()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "applyImport()", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/import-actions.ts", "file_type": "code", "degree": 4}, {"id": "src_app_admin_import_export_page_tsx", "label": "page.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/page.tsx", "file_type": "code", "degree": 7}, {"id": "import_export_page_metadata", "label": "metadata", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/page.tsx", "file_type": "code", "degree": 1}, {"id": "import_export_page_importexportpage", "label": "ImportExportPage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ImportExportPage()", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/app/admin/import-export/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_users_enroll_action_ts", "label": "enroll-action.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "enroll-action.ts", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/app/admin/users/enroll-action.ts", "file_type": "code", "degree": 9}, {"id": "users_enroll_action_requireadmin", "label": "requireAdmin()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/app/admin/users/enroll-action.ts", "file_type": "code", "degree": 3}, {"id": "users_enroll_action_grantcourseaccess", "label": "grantCourseAccess()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "grantCourseAccess()", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/app/admin/users/enroll-action.ts", "file_type": "code", "degree": 4}, {"id": "users_enroll_action_getpublishedcourses", "label": "getPublishedCourses()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getPublishedCourses()", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/app/admin/users/enroll-action.ts", "file_type": "code", "degree": 3}, {"id": "src_app_admin_users_actions_ts", "label": "actions.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "actions.ts", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/admin/users/actions.ts", "file_type": "code", "degree": 7}, {"id": "users_actions_createuser", "label": "createUser()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "createUser()", "community": 19, "community_name": "Create-User Form", "source_file": "src/app/admin/users/actions.ts", "file_type": "code", "degree": 3}, {"id": "src_app_admin_users_page_tsx", "label": "page.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/app/admin/users/page.tsx", "file_type": "code", "degree": 7}, {"id": "users_page_props", "label": "Props", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/app/admin/users/page.tsx", "file_type": "code", "degree": 1}, {"id": "users_page_userspage", "label": "UsersPage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UsersPage()", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/app/admin/users/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_users_new_page_tsx", "label": "page.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 19, "community_name": "Create-User Form", "source_file": "src/app/admin/users/new/page.tsx", "file_type": "code", "degree": 4}, {"id": "new_page_metadata", "label": "metadata", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 19, "community_name": "Create-User Form", "source_file": "src/app/admin/users/new/page.tsx", "file_type": "code", "degree": 1}, {"id": "new_page_newuserpage", "label": "NewUserPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "NewUserPage()", "community": 19, "community_name": "Create-User Form", "source_file": "src/app/admin/users/new/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_users_userid_actions_ts", "label": "actions.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "actions.ts", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/app/admin/users/[userId]/actions.ts", "file_type": "code", "degree": 12}, {"id": "userid_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/app/admin/users/[userId]/actions.ts", "file_type": "code", "degree": 7}, {"id": "userid_actions_bulkgrantaccess", "label": "bulkGrantAccess()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "bulkGrantAccess()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/app/admin/users/[userId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "userid_actions_updateusercontact", "label": "updateUserContact()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "updateUserContact()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/app/admin/users/[userId]/actions.ts", "file_type": "code", "degree": 3}, {"id": "userid_actions_addbalancetransaction", "label": "addBalanceTransaction()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "addBalanceTransaction()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/app/admin/users/[userId]/actions.ts", "file_type": "code", "degree": 3}, {"id": "userid_actions_deletebalancetransaction", "label": "deleteBalanceTransaction()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteBalanceTransaction()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/app/admin/users/[userId]/actions.ts", "file_type": "code", "degree": 3}, {"id": "userid_actions_resetuserpassword", "label": "resetUserPassword()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "resetUserPassword()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/app/admin/users/[userId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "userid_actions_revokeuseraccess", "label": "revokeUserAccess()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "revokeUserAccess()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/app/admin/users/[userId]/actions.ts", "file_type": "code", "degree": 2}, {"id": "src_app_admin_users_userid_page_tsx", "label": "page.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/app/admin/users/[userId]/page.tsx", "file_type": "code", "degree": 9}, {"id": "userid_page_props", "label": "Props", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/app/admin/users/[userId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "userid_page_userpage", "label": "UserPage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UserPage()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/app/admin/users/[userId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_categories_actions_ts", "label": "actions.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "actions.ts", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/categories/actions.ts", "file_type": "code", "degree": 10}, {"id": "categories_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/categories/actions.ts", "file_type": "code", "degree": 4}, {"id": "categories_actions_slugify", "label": "slugify()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "slugify()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/categories/actions.ts", "file_type": "code", "degree": 2}, {"id": "categories_actions_createcategory", "label": "createCategory()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "createCategory()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/categories/actions.ts", "file_type": "code", "degree": 4}, {"id": "categories_actions_updatecategory", "label": "updateCategory()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "updateCategory()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/categories/actions.ts", "file_type": "code", "degree": 3}, {"id": "categories_actions_deletecategory", "label": "deleteCategory()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteCategory()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/categories/actions.ts", "file_type": "code", "degree": 3}, {"id": "src_app_admin_categories_page_tsx", "label": "page.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "page.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/categories/page.tsx", "file_type": "code", "degree": 10}, {"id": "categories_page_categoriespage", "label": "CategoriesPage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoriesPage()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/app/admin/categories/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_quizzes_page_tsx", "label": "page.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/admin/quizzes/page.tsx", "file_type": "code", "degree": 3}, {"id": "quizzes_page_metadata", "label": "metadata", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/admin/quizzes/page.tsx", "file_type": "code", "degree": 1}, {"id": "quizzes_page_adminquizzespage", "label": "AdminQuizzesPage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminQuizzesPage()", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/admin/quizzes/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_quizzes_quizid_page_tsx", "label": "page.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/admin/quizzes/[quizId]/page.tsx", "file_type": "code", "degree": 3}, {"id": "quizid_page_props", "label": "Props", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/admin/quizzes/[quizId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "quizid_page_adminquizattemptspage", "label": "AdminQuizAttemptsPage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminQuizAttemptsPage()", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/admin/quizzes/[quizId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_admin_questions_page_tsx", "label": "page.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 22, "community_name": "Admin Questions Split View", "source_file": "src/app/admin/questions/page.tsx", "file_type": "code", "degree": 5}, {"id": "questions_page_adminquestionspage", "label": "AdminQuestionsPage()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminQuestionsPage()", "community": 22, "community_name": "Admin Questions Split View", "source_file": "src/app/admin/questions/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_curator_layout_tsx", "label": "layout.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "layout.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/curator/layout.tsx", "file_type": "code", "degree": 11}, {"id": "curator_layout_curatorlayout", "label": "CuratorLayout()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CuratorLayout()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/curator/layout.tsx", "file_type": "code", "degree": 2}, {"id": "curator_layout_navlink", "label": "NavLink()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "NavLink()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/curator/layout.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_curator_dashboard_page_tsx", "label": "page.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 27, "community_name": "Admin/Curator Dashboards", "source_file": "src/app/curator/dashboard/page.tsx", "file_type": "code", "degree": 5}, {"id": "dashboard_page_curatordashboard", "label": "CuratorDashboard()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CuratorDashboard()", "community": 27, "community_name": "Admin/Curator Dashboards", "source_file": "src/app/curator/dashboard/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_curator_homework_page_tsx", "label": "page.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/curator/homework/page.tsx", "file_type": "code", "degree": 3}, {"id": "homework_page_props", "label": "Props", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/curator/homework/page.tsx", "file_type": "code", "degree": 1}, {"id": "homework_page_homeworklistpage", "label": "HomeworkListPage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeworkListPage()", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/app/curator/homework/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_curator_homework_submissionid_actions_ts", "label": "actions.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "actions.ts", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/actions.ts", "file_type": "code", "degree": 14}, {"id": "submissionid_actions_requirecurator", "label": "requireCurator()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "requireCurator()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/actions.ts", "file_type": "code", "degree": 4}, {"id": "submissionid_actions_submitfeedback", "label": "submitFeedback()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "submitFeedback()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/actions.ts", "file_type": "code", "degree": 6}, {"id": "submissionid_actions_setreviewing", "label": "setReviewing()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "setReviewing()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/actions.ts", "file_type": "code", "degree": 3}, {"id": "submissionid_actions_deletesubmission", "label": "deleteSubmission()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteSubmission()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/actions.ts", "file_type": "code", "degree": 3}, {"id": "src_app_curator_homework_submissionid_content_tabs_tsx", "label": "content-tabs.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "content-tabs.tsx", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/content-tabs.tsx", "file_type": "code", "degree": 5}, {"id": "submissionid_content_tabs_props", "label": "Props", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/content-tabs.tsx", "file_type": "code", "degree": 1}, {"id": "submissionid_content_tabs_contenttabs", "label": "ContentTabs()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentTabs()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/content-tabs.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_curator_homework_submissionid_delete_button_tsx", "label": "delete-button.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "delete-button.tsx", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/delete-button.tsx", "file_type": "code", "degree": 4}, {"id": "submissionid_delete_button_deletesubmissionbutton", "label": "DeleteSubmissionButton()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteSubmissionButton()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/delete-button.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_curator_homework_submissionid_feedback_form_tsx", "label": "feedback-form.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "feedback-form.tsx", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/feedback-form.tsx", "file_type": "code", "degree": 9}, {"id": "submissionid_feedback_form_fileitem", "label": "FileItem", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FileItem", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/feedback-form.tsx", "file_type": "code", "degree": 1}, {"id": "submissionid_feedback_form_formatsize", "label": "formatSize()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatSize()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/feedback-form.tsx", "file_type": "code", "degree": 1}, {"id": "submissionid_feedback_form_feedbackform", "label": "FeedbackForm()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "FeedbackForm()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/feedback-form.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_curator_homework_submissionid_page_tsx", "label": "page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "page.tsx", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/page.tsx", "file_type": "code", "degree": 11}, {"id": "submissionid_page_props", "label": "Props", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "submissionid_page_formatsize", "label": "formatSize()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatSize()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "submissionid_page_statusbadge", "label": "StatusBadge()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "StatusBadge()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "submissionid_page_submissionpage", "label": "SubmissionPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SubmissionPage()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/app/curator/homework/[submissionId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_curator_questions_page_tsx", "label": "page.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/curator/questions/page.tsx", "file_type": "code", "degree": 5}, {"id": "questions_page_curatorquestionspage", "label": "CuratorQuestionsPage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CuratorQuestionsPage()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/curator/questions/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_api_auth_all_route_ts", "label": "route.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/auth/[...all]/route.ts", "file_type": "code", "degree": 3}, {"id": "all_route_get_post", "label": "{ GET, POST }", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "{ GET, POST }", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/auth/[...all]/route.ts", "file_type": "code", "degree": 1}, {"id": "src_app_api_student_audio_upload_route_ts", "label": "route.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/student/audio-upload/route.ts", "file_type": "code", "degree": 5}, {"id": "audio_upload_route_post", "label": "POST()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/curator/audio-upload/route.ts", "file_type": "code", "degree": 3}, {"id": "src_app_api_student_question_upload_route_ts", "label": "route.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/student/question-upload/route.ts", "file_type": "code", "degree": 6}, {"id": "question_upload_route_allowed_types", "label": "ALLOWED_TYPES", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ALLOWED_TYPES", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/student/question-upload/route.ts", "file_type": "code", "degree": 1}, {"id": "question_upload_route_post", "label": "POST()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/student/question-upload/route.ts", "file_type": "code", "degree": 2}, {"id": "src_app_api_student_homework_upload_route_ts", "label": "route.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/student/homework-upload/route.ts", "file_type": "code", "degree": 5}, {"id": "homework_upload_route_post", "label": "POST()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/student/homework-upload/route.ts", "file_type": "code", "degree": 2}, {"id": "src_app_api_admin_export_users_route_ts", "label": "route.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/admin/export-users/route.ts", "file_type": "code", "degree": 4}, {"id": "export_users_route_get", "label": "GET()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "GET()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/admin/export-users/route.ts", "file_type": "code", "degree": 1}, {"id": "src_app_api_admin_lessons_lessonid_route_ts", "label": "route.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/admin/lessons/[lessonId]/route.ts", "file_type": "code", "degree": 4}, {"id": "lessonid_route_patch", "label": "PATCH()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/admin/lessons/[lessonId]/route.ts", "file_type": "code", "degree": 1}, {"id": "src_app_api_admin_lesson_files_route_ts", "label": "route.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "route.ts", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/admin/lesson-files/route.ts", "file_type": "code", "degree": 10}, {"id": "lesson_files_route_requireadmin", "label": "requireAdmin()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/admin/lesson-files/route.ts", "file_type": "code", "degree": 4}, {"id": "lesson_files_route_post", "label": "POST()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/admin/lesson-files/route.ts", "file_type": "code", "degree": 4}, {"id": "lesson_files_route_patch", "label": "PATCH()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH()", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/admin/lesson-files/route.ts", "file_type": "code", "degree": 2}, {"id": "lesson_files_route_delete", "label": "DELETE()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE()", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/admin/lesson-files/route.ts", "file_type": "code", "degree": 3}, {"id": "src_app_api_admin_import_md_route_ts", "label": "route.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "src/app/api/admin/import-md/route.ts", "file_type": "code", "degree": 5}, {"id": "import_md_route_post", "label": "POST()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "src/app/api/admin/import-md/route.ts", "file_type": "code", "degree": 2}, {"id": "src_app_api_admin_upload_route_ts", "label": "route.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/admin/upload/route.ts", "file_type": "code", "degree": 5}, {"id": "upload_route_post", "label": "POST()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/curator/upload/route.ts", "file_type": "code", "degree": 3}, {"id": "src_app_api_curator_audio_upload_route_ts", "label": "route.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/app/api/curator/audio-upload/route.ts", "file_type": "code", "degree": 5}, {"id": "src_app_api_curator_upload_route_ts", "label": "route.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/curator/upload/route.ts", "file_type": "code", "degree": 5}, {"id": "src_app_api_questions_route_ts", "label": "route.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/api/questions/route.ts", "file_type": "code", "degree": 9}, {"id": "questions_route_fileattachment", "label": "FileAttachment", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FileAttachment", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/api/questions/route.ts", "file_type": "code", "degree": 1}, {"id": "questions_route_builds3prefix", "label": "buildS3Prefix()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "buildS3Prefix()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/api/questions/route.ts", "file_type": "code", "degree": 2}, {"id": "questions_route_get", "label": "GET()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "GET()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/api/questions/route.ts", "file_type": "code", "degree": 1}, {"id": "questions_route_post", "label": "POST()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/api/questions/route.ts", "file_type": "code", "degree": 2}, {"id": "src_app_api_questions_id_route_ts", "label": "route.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/questions/[id]/route.ts", "file_type": "code", "degree": 4}, {"id": "id_route_get", "label": "GET()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "GET()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/questions/[id]/route.ts", "file_type": "code", "degree": 1}, {"id": "src_app_api_questions_id_messages_route_ts", "label": "route.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/api/questions/[id]/messages/route.ts", "file_type": "code", "degree": 9}, {"id": "messages_route_fileattachment", "label": "FileAttachment", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FileAttachment", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/api/questions/[id]/messages/route.ts", "file_type": "code", "degree": 1}, {"id": "messages_route_builds3prefix", "label": "buildS3Prefix()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "buildS3Prefix()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/api/questions/[id]/messages/route.ts", "file_type": "code", "degree": 2}, {"id": "messages_route_post", "label": "POST()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/app/api/questions/[id]/messages/route.ts", "file_type": "code", "degree": 3}, {"id": "src_app_api_questions_id_close_route_ts", "label": "route.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "route.ts", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/questions/[id]/close/route.ts", "file_type": "code", "degree": 4}, {"id": "close_route_patch", "label": "PATCH()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH()", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/app/api/questions/[id]/close/route.ts", "file_type": "code", "degree": 1}, {"id": "src_app_maintenance_page_tsx", "label": "page.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 49, "community_name": "Maintenance Page", "source_file": "src/app/maintenance/page.tsx", "file_type": "code", "degree": 1}, {"id": "maintenance_page_maintenancepage", "label": "MaintenancePage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "MaintenancePage()", "community": 49, "community_name": "Maintenance Page", "source_file": "src/app/maintenance/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_auth_verify_email_page_tsx", "label": "page.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 48, "community_name": "Verify Email Page", "source_file": "src/app/(auth)/verify-email/page.tsx", "file_type": "code", "degree": 1}, {"id": "verify_email_page_verifyemailpage", "label": "VerifyEmailPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "VerifyEmailPage()", "community": 48, "community_name": "Verify Email Page", "source_file": "src/app/(auth)/verify-email/page.tsx", "file_type": "code", "degree": 1}, {"id": "src_app_auth_register_register_form_tsx", "label": "register-form.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "register-form.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/register/register-form.tsx", "file_type": "code", "degree": 4}, {"id": "register_register_form_props", "label": "Props", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/register/register-form.tsx", "file_type": "code", "degree": 1}, {"id": "register_register_form_registerform", "label": "RegisterForm()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterForm()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/register/register-form.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_auth_register_page_tsx", "label": "page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/register/page.tsx", "file_type": "code", "degree": 5}, {"id": "register_page_registerpage", "label": "RegisterPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterPage()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/register/page.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_auth_forgot_password_page_tsx", "label": "page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/forgot-password/page.tsx", "file_type": "code", "degree": 3}, {"id": "forgot_password_page_forgotpasswordpage", "label": "ForgotPasswordPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ForgotPasswordPage()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/forgot-password/page.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_auth_reset_password_page_tsx", "label": "page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/reset-password/page.tsx", "file_type": "code", "degree": 3}, {"id": "reset_password_page_resetpasswordpage", "label": "ResetPasswordPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ResetPasswordPage()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/reset-password/page.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_auth_login_login_form_tsx", "label": "login-form.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "login-form.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/login/login-form.tsx", "file_type": "code", "degree": 4}, {"id": "login_login_form_loginform", "label": "LoginForm()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginForm()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/login/login-form.tsx", "file_type": "code", "degree": 2}, {"id": "src_app_auth_login_page_tsx", "label": "page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/login/page.tsx", "file_type": "code", "degree": 5}, {"id": "login_page_loginpage", "label": "LoginPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginPage()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/app/(auth)/login/page.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_ui_alert_dialog_tsx", "label": "alert-dialog.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "alert-dialog.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 16}, {"id": "ui_alert_dialog_alertdialog", "label": "AlertDialog()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertDialog()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 1}, {"id": "ui_alert_dialog_alertdialogtrigger", "label": "AlertDialogTrigger()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertDialogTrigger()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 1}, {"id": "ui_alert_dialog_alertdialogportal", "label": "AlertDialogPortal()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertDialogPortal()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 1}, {"id": "ui_alert_dialog_alertdialogoverlay", "label": "AlertDialogOverlay()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertDialogOverlay()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 2}, {"id": "ui_alert_dialog_alertdialogcontent", "label": "AlertDialogContent()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertDialogContent()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 2}, {"id": "ui_alert_dialog_alertdialogheader", "label": "AlertDialogHeader()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertDialogHeader()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 2}, {"id": "ui_alert_dialog_alertdialogfooter", "label": "AlertDialogFooter()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertDialogFooter()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 2}, {"id": "ui_alert_dialog_alertdialogmedia", "label": "AlertDialogMedia()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertDialogMedia()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 2}, {"id": "ui_alert_dialog_alertdialogtitle", "label": "AlertDialogTitle()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertDialogTitle()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 2}, {"id": "ui_alert_dialog_alertdialogdescription", "label": "AlertDialogDescription()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertDialogDescription()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 2}, {"id": "ui_alert_dialog_alertdialogaction", "label": "AlertDialogAction()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertDialogAction()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 2}, {"id": "ui_alert_dialog_alertdialogcancel", "label": "AlertDialogCancel()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AlertDialogCancel()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/alert-dialog.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_ui_label_tsx", "label": "label.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "label.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/label.tsx", "file_type": "code", "degree": 5}, {"id": "ui_label_label", "label": "Label()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Label()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/label.tsx", "file_type": "code", "degree": 4}, {"id": "src_components_ui_sonner_tsx", "label": "sonner.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "sonner.tsx", "community": 50, "community_name": "Sonner Toast", "source_file": "src/components/ui/sonner.tsx", "file_type": "code", "degree": 1}, {"id": "ui_sonner_toaster", "label": "Toaster()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Toaster()", "community": 50, "community_name": "Sonner Toast", "source_file": "src/components/ui/sonner.tsx", "file_type": "code", "degree": 1}, {"id": "src_components_ui_dialog_tsx", "label": "dialog.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.4, "font": {"size": 12, "color": "#ffffff"}, "title": "dialog.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/dialog.tsx", "file_type": "code", "degree": 15}, {"id": "ui_dialog_dialog", "label": "Dialog()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Dialog()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/dialog.tsx", "file_type": "code", "degree": 2}, {"id": "ui_dialog_dialogtrigger", "label": "DialogTrigger()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "DialogTrigger()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/dialog.tsx", "file_type": "code", "degree": 2}, {"id": "ui_dialog_dialogportal", "label": "DialogPortal()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DialogPortal()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/dialog.tsx", "file_type": "code", "degree": 1}, {"id": "ui_dialog_dialogclose", "label": "DialogClose()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DialogClose()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/dialog.tsx", "file_type": "code", "degree": 1}, {"id": "ui_dialog_dialogoverlay", "label": "DialogOverlay()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "DialogOverlay()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/dialog.tsx", "file_type": "code", "degree": 2}, {"id": "ui_dialog_dialogcontent", "label": "DialogContent()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DialogContent()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/dialog.tsx", "file_type": "code", "degree": 3}, {"id": "ui_dialog_dialogheader", "label": "DialogHeader()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DialogHeader()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/dialog.tsx", "file_type": "code", "degree": 3}, {"id": "ui_dialog_dialogfooter", "label": "DialogFooter()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "DialogFooter()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/dialog.tsx", "file_type": "code", "degree": 2}, {"id": "ui_dialog_dialogtitle", "label": "DialogTitle()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DialogTitle()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/dialog.tsx", "file_type": "code", "degree": 3}, {"id": "ui_dialog_dialogdescription", "label": "DialogDescription()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "DialogDescription()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/dialog.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_ui_badge_tsx", "label": "badge.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "badge.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/badge.tsx", "file_type": "code", "degree": 6}, {"id": "ui_badge_badgevariants", "label": "badgeVariants", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "badgeVariants", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/badge.tsx", "file_type": "code", "degree": 2}, {"id": "ui_badge_badge", "label": "Badge()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Badge()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/badge.tsx", "file_type": "code", "degree": 5}, {"id": "src_components_ui_button_tsx", "label": "button.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "button.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/button.tsx", "file_type": "code", "degree": 12}, {"id": "ui_button_buttonvariants", "label": "buttonVariants", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "buttonVariants", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/button.tsx", "file_type": "code", "degree": 2}, {"id": "ui_button_button", "label": "Button()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Button()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/button.tsx", "file_type": "code", "degree": 11}, {"id": "src_components_ui_select_tsx", "label": "select.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "select.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/select.tsx", "file_type": "code", "degree": 11}, {"id": "ui_select_selectgroup", "label": "SelectGroup()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectGroup()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/select.tsx", "file_type": "code", "degree": 2}, {"id": "ui_select_selectvalue", "label": "SelectValue()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectValue()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/select.tsx", "file_type": "code", "degree": 2}, {"id": "ui_select_selecttrigger", "label": "SelectTrigger()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectTrigger()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/select.tsx", "file_type": "code", "degree": 2}, {"id": "ui_select_selectcontent", "label": "SelectContent()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectContent()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/select.tsx", "file_type": "code", "degree": 2}, {"id": "ui_select_selectlabel", "label": "SelectLabel()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectLabel()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/select.tsx", "file_type": "code", "degree": 2}, {"id": "ui_select_selectitem", "label": "SelectItem()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectItem()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/select.tsx", "file_type": "code", "degree": 2}, {"id": "ui_select_selectseparator", "label": "SelectSeparator()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectSeparator()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/select.tsx", "file_type": "code", "degree": 2}, {"id": "ui_select_selectscrollupbutton", "label": "SelectScrollUpButton()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectScrollUpButton()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/select.tsx", "file_type": "code", "degree": 2}, {"id": "ui_select_selectscrolldownbutton", "label": "SelectScrollDownButton()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectScrollDownButton()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/select.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_ui_textarea_tsx", "label": "textarea.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "textarea.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/textarea.tsx", "file_type": "code", "degree": 5}, {"id": "ui_textarea_textarea", "label": "Textarea()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Textarea()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/textarea.tsx", "file_type": "code", "degree": 4}, {"id": "src_components_ui_input_tsx", "label": "input.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "input.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/input.tsx", "file_type": "code", "degree": 8}, {"id": "ui_input_input", "label": "Input()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Input()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/ui/input.tsx", "file_type": "code", "degree": 7}, {"id": "src_components_layout_logout_button_tsx", "label": "logout-button.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "logout-button.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/layout/logout-button.tsx", "file_type": "code", "degree": 5}, {"id": "layout_logout_button_logoutbutton", "label": "LogoutButton()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoutButton()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/layout/logout-button.tsx", "file_type": "code", "degree": 4}, {"id": "src_components_student_course_sidebar_tsx", "label": "course-sidebar.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "course-sidebar.tsx", "community": 25, "community_name": "Student Course Sidebar Layout", "source_file": "src/components/student/course-sidebar.tsx", "file_type": "code", "degree": 5}, {"id": "student_course_sidebar_lesson", "label": "Lesson", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Lesson", "community": 25, "community_name": "Student Course Sidebar Layout", "source_file": "src/components/student/course-sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "student_course_sidebar_module", "label": "Module", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 25, "community_name": "Student Course Sidebar Layout", "source_file": "src/components/student/course-sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "student_course_sidebar_course", "label": "Course", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Course", "community": 25, "community_name": "Student Course Sidebar Layout", "source_file": "src/components/student/course-sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "student_course_sidebar_coursesidebar", "label": "CourseSidebar()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CourseSidebar()", "community": 25, "community_name": "Student Course Sidebar Layout", "source_file": "src/components/student/course-sidebar.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_student_quiz_section_tsx", "label": "quiz-section.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "quiz-section.tsx", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/quiz-section.tsx", "file_type": "code", "degree": 7}, {"id": "student_quiz_section_question", "label": "Question", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Question", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/quiz-section.tsx", "file_type": "code", "degree": 1}, {"id": "student_quiz_section_props", "label": "Props", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/quiz-section.tsx", "file_type": "code", "degree": 1}, {"id": "student_quiz_section_inputstyle", "label": "inputStyle", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "inputStyle", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/quiz-section.tsx", "file_type": "code", "degree": 1}, {"id": "student_quiz_section_quizsection", "label": "QuizSection()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "QuizSection()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/quiz-section.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_student_homework_section_tsx", "label": "homework-section.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "homework-section.tsx", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/homework-section.tsx", "file_type": "code", "degree": 11}, {"id": "student_homework_section_hwfile", "label": "HWFile", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HWFile", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/homework-section.tsx", "file_type": "code", "degree": 1}, {"id": "student_homework_section_feedback", "label": "Feedback", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Feedback", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/homework-section.tsx", "file_type": "code", "degree": 1}, {"id": "student_homework_section_submission", "label": "Submission", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Submission", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/homework-section.tsx", "file_type": "code", "degree": 1}, {"id": "student_homework_section_props", "label": "Props", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/homework-section.tsx", "file_type": "code", "degree": 1}, {"id": "student_homework_section_formatsize", "label": "formatSize()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatSize()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/homework-section.tsx", "file_type": "code", "degree": 1}, {"id": "student_homework_section_homeworksection", "label": "HomeworkSection()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeworkSection()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/homework-section.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_student_lesson_complete_button_tsx", "label": "lesson-complete-button.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "lesson-complete-button.tsx", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/lesson-complete-button.tsx", "file_type": "code", "degree": 4}, {"id": "student_lesson_complete_button_lessoncompletebutton", "label": "LessonCompleteButton()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonCompleteButton()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/lesson-complete-button.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_student_lesson_content_tsx", "label": "lesson-content.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "lesson-content.tsx", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/lesson-content.tsx", "file_type": "code", "degree": 2}, {"id": "student_lesson_content_lessoncontent", "label": "LessonContent()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonContent()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/lesson-content.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_student_lesson_comments_tsx", "label": "lesson-comments.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "lesson-comments.tsx", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/lesson-comments.tsx", "file_type": "code", "degree": 9}, {"id": "student_lesson_comments_reply", "label": "Reply", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Reply", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/lesson-comments.tsx", "file_type": "code", "degree": 1}, {"id": "student_lesson_comments_comment", "label": "Comment", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Comment", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/lesson-comments.tsx", "file_type": "code", "degree": 1}, {"id": "student_lesson_comments_props", "label": "Props", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/lesson-comments.tsx", "file_type": "code", "degree": 1}, {"id": "student_lesson_comments_formatdate", "label": "formatDate()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDate()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/lesson-comments.tsx", "file_type": "code", "degree": 1}, {"id": "student_lesson_comments_lessoncomments", "label": "LessonComments()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonComments()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/student/lesson-comments.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_sortable_modules_tsx", "label": "sortable-modules.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "sortable-modules.tsx", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/sortable-modules.tsx", "file_type": "code", "degree": 9}, {"id": "admin_sortable_modules_module", "label": "Module", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/sortable-modules.tsx", "file_type": "code", "degree": 1}, {"id": "admin_sortable_modules_sortablemodule", "label": "SortableModule()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SortableModule()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/sortable-modules.tsx", "file_type": "code", "degree": 1}, {"id": "admin_sortable_modules_sortablemodules", "label": "SortableModules()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SortableModules()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/sortable-modules.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_stop_impersonate_banner_tsx", "label": "stop-impersonate-banner.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "stop-impersonate-banner.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/stop-impersonate-banner.tsx", "file_type": "code", "degree": 4}, {"id": "admin_stop_impersonate_banner_stopimpersonatebanner", "label": "StopImpersonateBanner()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "StopImpersonateBanner()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/stop-impersonate-banner.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_csv_exporter_tsx", "label": "csv-exporter.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "csv-exporter.tsx", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/components/admin/csv-exporter.tsx", "file_type": "code", "degree": 5}, {"id": "admin_csv_exporter_course", "label": "Course", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Course", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/components/admin/csv-exporter.tsx", "file_type": "code", "degree": 1}, {"id": "admin_csv_exporter_inputstyle", "label": "inputStyle", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "inputStyle", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/components/admin/csv-exporter.tsx", "file_type": "code", "degree": 1}, {"id": "admin_csv_exporter_focushandlers", "label": "focusHandlers", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "focusHandlers", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/components/admin/csv-exporter.tsx", "file_type": "code", "degree": 1}, {"id": "admin_csv_exporter_csvexporter", "label": "CsvExporter()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CsvExporter()", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/components/admin/csv-exporter.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_users_search_tsx", "label": "users-search.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "users-search.tsx", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/users-search.tsx", "file_type": "code", "degree": 3}, {"id": "admin_users_search_inputstyle", "label": "inputStyle", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "inputStyle", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/users-search.tsx", "file_type": "code", "degree": 1}, {"id": "admin_users_search_userssearch", "label": "UsersSearch()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "UsersSearch()", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/users-search.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_quick_enroll_modal_tsx", "label": "quick-enroll-modal.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "quick-enroll-modal.tsx", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/quick-enroll-modal.tsx", "file_type": "code", "degree": 7}, {"id": "admin_quick_enroll_modal_course", "label": "Course", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Course", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/quick-enroll-modal.tsx", "file_type": "code", "degree": 1}, {"id": "admin_quick_enroll_modal_props", "label": "Props", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/quick-enroll-modal.tsx", "file_type": "code", "degree": 1}, {"id": "admin_quick_enroll_modal_quickenrollbutton", "label": "QuickEnrollButton()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "QuickEnrollButton()", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/quick-enroll-modal.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_settings_form_tsx", "label": "settings-form.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "settings-form.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/settings-form.tsx", "file_type": "code", "degree": 12}, {"id": "admin_settings_form_inputstyle", "label": "inputStyle", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "inputStyle", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/settings-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_settings_form_focushandlers", "label": "focusHandlers", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "focusHandlers", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/settings-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_settings_form_section", "label": "Section()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Section()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/settings-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_settings_form_field", "label": "Field()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Field()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/settings-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_settings_form_toggle", "label": "Toggle()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Toggle()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/settings-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_settings_form_selectfield", "label": "SelectField()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectField()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/settings-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_settings_form_settingsform", "label": "SettingsForm()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingsForm()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/settings-form.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_users_table_tsx", "label": "users-table.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "users-table.tsx", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/users-table.tsx", "file_type": "code", "degree": 12}, {"id": "admin_users_table_enrollment", "label": "Enrollment", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Enrollment", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/users-table.tsx", "file_type": "code", "degree": 1}, {"id": "admin_users_table_userrow", "label": "UserRow", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UserRow", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/users-table.tsx", "file_type": "code", "degree": 1}, {"id": "admin_users_table_rolelabel", "label": "roleLabel", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "roleLabel", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/users-table.tsx", "file_type": "code", "degree": 1}, {"id": "admin_users_table_rolevariant", "label": "roleVariant", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "roleVariant", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/users-table.tsx", "file_type": "code", "degree": 1}, {"id": "admin_users_table_userpopup", "label": "UserPopup()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UserPopup()", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/users-table.tsx", "file_type": "code", "degree": 1}, {"id": "admin_users_table_impersonatebutton", "label": "ImpersonateButton()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ImpersonateButton()", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/users-table.tsx", "file_type": "code", "degree": 1}, {"id": "admin_users_table_userstable", "label": "UsersTable()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "UsersTable()", "community": 14, "community_name": "Admin Users List & Enroll", "source_file": "src/components/admin/users-table.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_create_user_form_tsx", "label": "create-user-form.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "create-user-form.tsx", "community": 19, "community_name": "Create-User Form", "source_file": "src/components/admin/create-user-form.tsx", "file_type": "code", "degree": 10}, {"id": "admin_create_user_form_roles", "label": "ROLES", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ROLES", "community": 19, "community_name": "Create-User Form", "source_file": "src/components/admin/create-user-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_create_user_form_generatepassword", "label": "generatePassword()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "generatePassword()", "community": 19, "community_name": "Create-User Form", "source_file": "src/components/admin/create-user-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_create_user_form_inputstyle", "label": "inputStyle", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "inputStyle", "community": 19, "community_name": "Create-User Form", "source_file": "src/components/admin/create-user-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_create_user_form_focushandlers", "label": "focusHandlers", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "focusHandlers", "community": 19, "community_name": "Create-User Form", "source_file": "src/components/admin/create-user-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_create_user_form_field", "label": "Field()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Field()", "community": 19, "community_name": "Create-User Form", "source_file": "src/components/admin/create-user-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_create_user_form_toggle", "label": "Toggle()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Toggle()", "community": 19, "community_name": "Create-User Form", "source_file": "src/components/admin/create-user-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_create_user_form_createuserform", "label": "CreateUserForm()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateUserForm()", "community": 19, "community_name": "Create-User Form", "source_file": "src/components/admin/create-user-form.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_admin_nav_tsx", "label": "admin-nav.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-nav.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/admin-nav.tsx", "file_type": "code", "degree": 3}, {"id": "admin_admin_nav_links", "label": "links", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "links", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/admin-nav.tsx", "file_type": "code", "degree": 1}, {"id": "admin_admin_nav_adminnav", "label": "AdminNav()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminNav()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/admin-nav.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_create_course_dialog_tsx", "label": "create-course-dialog.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.9, "font": {"size": 12, "color": "#ffffff"}, "title": "create-course-dialog.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/admin/create-course-dialog.tsx", "file_type": "code", "degree": 18}, {"id": "admin_create_course_dialog_createcoursedialog", "label": "CreateCourseDialog()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateCourseDialog()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/admin/create-course-dialog.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_lesson_files_manager_tsx", "label": "lesson-files-manager.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "lesson-files-manager.tsx", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/lesson-files-manager.tsx", "file_type": "code", "degree": 5}, {"id": "admin_lesson_files_manager_lessonfile", "label": "LessonFile", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonFile", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/lesson-files-manager.tsx", "file_type": "code", "degree": 1}, {"id": "admin_lesson_files_manager_lessonfilesmanager", "label": "LessonFilesManager()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonFilesManager()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/lesson-files-manager.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_sortable_lessons_tsx", "label": "sortable-lessons.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "sortable-lessons.tsx", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/components/admin/sortable-lessons.tsx", "file_type": "code", "degree": 12}, {"id": "admin_sortable_lessons_lesson", "label": "Lesson", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Lesson", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/components/admin/sortable-lessons.tsx", "file_type": "code", "degree": 1}, {"id": "admin_sortable_lessons_othermodule", "label": "OtherModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "OtherModule", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/components/admin/sortable-lessons.tsx", "file_type": "code", "degree": 1}, {"id": "admin_sortable_lessons_sortablelesson", "label": "SortableLesson()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SortableLesson()", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/components/admin/sortable-lessons.tsx", "file_type": "code", "degree": 1}, {"id": "admin_sortable_lessons_sortablelessons", "label": "SortableLessons()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SortableLessons()", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/components/admin/sortable-lessons.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_user_contact_editor_tsx", "label": "user-contact-editor.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "user-contact-editor.tsx", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-contact-editor.tsx", "file_type": "code", "degree": 7}, {"id": "admin_user_contact_editor_inputstyle", "label": "inputStyle", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "inputStyle", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-contact-editor.tsx", "file_type": "code", "degree": 1}, {"id": "admin_user_contact_editor_focushandlers", "label": "focusHandlers", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "focusHandlers", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-contact-editor.tsx", "file_type": "code", "degree": 1}, {"id": "admin_user_contact_editor_props", "label": "Props", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-contact-editor.tsx", "file_type": "code", "degree": 1}, {"id": "admin_user_contact_editor_usercontacteditor", "label": "UserContactEditor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "UserContactEditor()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-contact-editor.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_category_row_tsx", "label": "category-row.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "category-row.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/admin/category-row.tsx", "file_type": "code", "degree": 10}, {"id": "admin_category_row_props", "label": "Props", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/admin/category-row.tsx", "file_type": "code", "degree": 1}, {"id": "admin_category_row_categoryrow", "label": "CategoryRow()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoryRow()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/admin/category-row.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_user_enrollment_manager_tsx", "label": "user-enrollment-manager.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "user-enrollment-manager.tsx", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-enrollment-manager.tsx", "file_type": "code", "degree": 8}, {"id": "admin_user_enrollment_manager_course", "label": "Course", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Course", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-enrollment-manager.tsx", "file_type": "code", "degree": 1}, {"id": "admin_user_enrollment_manager_enrollment", "label": "Enrollment", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Enrollment", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-enrollment-manager.tsx", "file_type": "code", "degree": 1}, {"id": "admin_user_enrollment_manager_props", "label": "Props", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-enrollment-manager.tsx", "file_type": "code", "degree": 1}, {"id": "admin_user_enrollment_manager_userenrollmentmanager", "label": "UserEnrollmentManager()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "UserEnrollmentManager()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-enrollment-manager.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_homework_editor_tsx", "label": "homework-editor.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "homework-editor.tsx", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/homework-editor.tsx", "file_type": "code", "degree": 6}, {"id": "admin_homework_editor_props", "label": "Props", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/homework-editor.tsx", "file_type": "code", "degree": 1}, {"id": "admin_homework_editor_homeworkeditor", "label": "HomeworkEditor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeworkEditor()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/homework-editor.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_course_tree_tsx", "label": "course-tree.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "course-tree.tsx", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/course-tree.tsx", "file_type": "code", "degree": 4}, {"id": "admin_course_tree_lesson", "label": "Lesson", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Lesson", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/course-tree.tsx", "file_type": "code", "degree": 1}, {"id": "admin_course_tree_module", "label": "Module", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/course-tree.tsx", "file_type": "code", "degree": 1}, {"id": "admin_course_tree_coursetree", "label": "CourseTree()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CourseTree()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/course-tree.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_csv_importer_tsx", "label": "csv-importer.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "csv-importer.tsx", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/components/admin/csv-importer.tsx", "file_type": "code", "degree": 13}, {"id": "admin_csv_importer_course", "label": "Course", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Course", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/components/admin/csv-importer.tsx", "file_type": "code", "degree": 1}, {"id": "admin_csv_importer_inputstyle", "label": "inputStyle", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "inputStyle", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/components/admin/csv-importer.tsx", "file_type": "code", "degree": 1}, {"id": "admin_csv_importer_focushandlers", "label": "focusHandlers", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "focusHandlers", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/components/admin/csv-importer.tsx", "file_type": "code", "degree": 1}, {"id": "admin_csv_importer_toggle", "label": "Toggle()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Toggle()", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/components/admin/csv-importer.tsx", "file_type": "code", "degree": 1}, {"id": "admin_csv_importer_stepindicator", "label": "StepIndicator()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "StepIndicator()", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/components/admin/csv-importer.tsx", "file_type": "code", "degree": 1}, {"id": "admin_csv_importer_csvimporter", "label": "CsvImporter()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CsvImporter()", "community": 10, "community_name": "CSV Import/Export", "source_file": "src/components/admin/csv-importer.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_course_edit_form_tsx", "label": "course-edit-form.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.4, "font": {"size": 12, "color": "#ffffff"}, "title": "course-edit-form.tsx", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/admin/course-edit-form.tsx", "file_type": "code", "degree": 15}, {"id": "admin_course_edit_form_course", "label": "Course", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Course", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/admin/course-edit-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_course_edit_form_category", "label": "Category", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/components/admin/course-edit-form.tsx", "file_type": "code", "degree": 1}, {"id": "admin_course_edit_form_courseeditform", "label": "CourseEditForm()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CourseEditForm()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/course-edit-form.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_comments_table_tsx", "label": "comments-table.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "comments-table.tsx", "community": 21, "community_name": "Admin Comments Moderation", "source_file": "src/components/admin/comments-table.tsx", "file_type": "code", "degree": 6}, {"id": "admin_comments_table_comment", "label": "Comment", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Comment", "community": 21, "community_name": "Admin Comments Moderation", "source_file": "src/components/admin/comments-table.tsx", "file_type": "code", "degree": 1}, {"id": "admin_comments_table_inputstyle", "label": "inputStyle", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "inputStyle", "community": 21, "community_name": "Admin Comments Moderation", "source_file": "src/components/admin/comments-table.tsx", "file_type": "code", "degree": 1}, {"id": "admin_comments_table_commentstable", "label": "CommentsTable()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CommentsTable()", "community": 21, "community_name": "Admin Comments Moderation", "source_file": "src/components/admin/comments-table.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_homework_filters_tsx", "label": "homework-filters.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "homework-filters.tsx", "community": 28, "community_name": "Homework Filters", "source_file": "src/components/admin/homework-filters.tsx", "file_type": "code", "degree": 3}, {"id": "admin_homework_filters_inputstyle", "label": "inputStyle", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "inputStyle", "community": 28, "community_name": "Homework Filters", "source_file": "src/components/admin/homework-filters.tsx", "file_type": "code", "degree": 1}, {"id": "admin_homework_filters_course", "label": "Course", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Course", "community": 28, "community_name": "Homework Filters", "source_file": "src/components/admin/homework-filters.tsx", "file_type": "code", "degree": 1}, {"id": "admin_homework_filters_homeworkfilters", "label": "HomeworkFilters()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeworkFilters()", "community": 28, "community_name": "Homework Filters", "source_file": "src/components/admin/homework-filters.tsx", "file_type": "code", "degree": 1}, {"id": "src_components_admin_quiz_editor_tsx", "label": "quiz-editor.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "quiz-editor.tsx", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/quiz-editor.tsx", "file_type": "code", "degree": 9}, {"id": "admin_quiz_editor_qtype", "label": "QType", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "QType", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/quiz-editor.tsx", "file_type": "code", "degree": 1}, {"id": "admin_quiz_editor_question", "label": "Question", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Question", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/quiz-editor.tsx", "file_type": "code", "degree": 1}, {"id": "admin_quiz_editor_props", "label": "Props", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/quiz-editor.tsx", "file_type": "code", "degree": 1}, {"id": "admin_quiz_editor_type_labels", "label": "TYPE_LABELS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TYPE_LABELS", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/quiz-editor.tsx", "file_type": "code", "degree": 1}, {"id": "admin_quiz_editor_quizeditor", "label": "QuizEditor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "QuizEditor()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/quiz-editor.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_user_balance_block_tsx", "label": "user-balance-block.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "user-balance-block.tsx", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-balance-block.tsx", "file_type": "code", "degree": 10}, {"id": "admin_user_balance_block_transaction", "label": "Transaction", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Transaction", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-balance-block.tsx", "file_type": "code", "degree": 1}, {"id": "admin_user_balance_block_props", "label": "Props", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-balance-block.tsx", "file_type": "code", "degree": 1}, {"id": "admin_user_balance_block_inputstyle", "label": "inputStyle", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "inputStyle", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-balance-block.tsx", "file_type": "code", "degree": 1}, {"id": "admin_user_balance_block_focushandlers", "label": "focusHandlers", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "focusHandlers", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-balance-block.tsx", "file_type": "code", "degree": 1}, {"id": "admin_user_balance_block_formatamount", "label": "formatAmount()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "formatAmount()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-balance-block.tsx", "file_type": "code", "degree": 2}, {"id": "admin_user_balance_block_userbalanceblock", "label": "UserBalanceBlock()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UserBalanceBlock()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/components/admin/user-balance-block.tsx", "file_type": "code", "degree": 3}, {"id": "src_components_admin_lesson_editor_tsx", "label": "lesson-editor.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "lesson-editor.tsx", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/lesson-editor.tsx", "file_type": "code", "degree": 6}, {"id": "admin_lesson_editor_lessondata", "label": "LessonData", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonData", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/lesson-editor.tsx", "file_type": "code", "degree": 1}, {"id": "admin_lesson_editor_siblinglesson", "label": "SiblingLesson", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SiblingLesson", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/lesson-editor.tsx", "file_type": "code", "degree": 1}, {"id": "admin_lesson_editor_lessoneditor", "label": "LessonEditor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonEditor()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/lesson-editor.tsx", "file_type": "code", "degree": 2}, {"id": "admin_lesson_editor_sep", "label": "Sep()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Sep()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/lesson-editor.tsx", "file_type": "code", "degree": 1}, {"id": "admin_lesson_editor_toolbtn", "label": "ToolBtn()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ToolBtn()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/admin/lesson-editor.tsx", "file_type": "code", "degree": 1}, {"id": "src_components_admin_enrollment_manager_tsx", "label": "enrollment-manager.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "enrollment-manager.tsx", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/enrollment-manager.tsx", "file_type": "code", "degree": 13}, {"id": "admin_enrollment_manager_student", "label": "Student", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Student", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/enrollment-manager.tsx", "file_type": "code", "degree": 1}, {"id": "admin_enrollment_manager_enrollment", "label": "Enrollment", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Enrollment", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/enrollment-manager.tsx", "file_type": "code", "degree": 1}, {"id": "admin_enrollment_manager_logentry", "label": "LogEntry", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "LogEntry", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/enrollment-manager.tsx", "file_type": "code", "degree": 1}, {"id": "admin_enrollment_manager_props", "label": "Props", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/enrollment-manager.tsx", "file_type": "code", "degree": 1}, {"id": "admin_enrollment_manager_enrollmentmanager", "label": "EnrollmentManager()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "EnrollmentManager()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/components/admin/enrollment-manager.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_admin_admin_shell_tsx", "label": "admin-shell.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-shell.tsx", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/admin-shell.tsx", "file_type": "code", "degree": 7}, {"id": "admin_admin_shell_adminshell", "label": "AdminShell()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminShell()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/components/admin/admin-shell.tsx", "file_type": "code", "degree": 3}, {"id": "src_components_curator_content_viewer_tsx", "label": "content-viewer.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "content-viewer.tsx", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/components/curator/content-viewer.tsx", "file_type": "code", "degree": 2}, {"id": "curator_content_viewer_contentviewer", "label": "ContentViewer()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentViewer()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/components/curator/content-viewer.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_curator_audio_recorder_tsx", "label": "audio-recorder.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "audio-recorder.tsx", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/components/curator/audio-recorder.tsx", "file_type": "code", "degree": 4}, {"id": "curator_audio_recorder_audiorecorderprops", "label": "AudioRecorderProps", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AudioRecorderProps", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/components/curator/audio-recorder.tsx", "file_type": "code", "degree": 1}, {"id": "curator_audio_recorder_audiorecorder", "label": "AudioRecorder()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AudioRecorder()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/components/curator/audio-recorder.tsx", "file_type": "code", "degree": 3}, {"id": "src_components_shared_file_format_badge_tsx", "label": "file-format-badge.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "file-format-badge.tsx", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/shared/file-format-badge.tsx", "file_type": "code", "degree": 5}, {"id": "shared_file_format_badge_format_map", "label": "FORMAT_MAP", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FORMAT_MAP", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/shared/file-format-badge.tsx", "file_type": "code", "degree": 1}, {"id": "shared_file_format_badge_getfileformatinfo", "label": "getFileFormatInfo()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "getFileFormatInfo()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/shared/file-format-badge.tsx", "file_type": "code", "degree": 2}, {"id": "shared_file_format_badge_fileformatbadge", "label": "FileFormatBadge()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "FileFormatBadge()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/components/shared/file-format-badge.tsx", "file_type": "code", "degree": 4}, {"id": "src_components_questions_questionsplitview_tsx", "label": "QuestionSplitView.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "QuestionSplitView.tsx", "community": 22, "community_name": "Admin Questions Split View", "source_file": "src/components/questions/QuestionSplitView.tsx", "file_type": "code", "degree": 9}, {"id": "questions_questionsplitview_fileattachment", "label": "FileAttachment", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FileAttachment", "community": 22, "community_name": "Admin Questions Split View", "source_file": "src/components/questions/QuestionSplitView.tsx", "file_type": "code", "degree": 1}, {"id": "questions_questionsplitview_message", "label": "Message", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Message", "community": 22, "community_name": "Admin Questions Split View", "source_file": "src/components/questions/QuestionSplitView.tsx", "file_type": "code", "degree": 1}, {"id": "questions_questionsplitview_questionsummary", "label": "QuestionSummary", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "QuestionSummary", "community": 22, "community_name": "Admin Questions Split View", "source_file": "src/components/questions/QuestionSplitView.tsx", "file_type": "code", "degree": 1}, {"id": "questions_questionsplitview_questiondetail", "label": "QuestionDetail", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "QuestionDetail", "community": 22, "community_name": "Admin Questions Split View", "source_file": "src/components/questions/QuestionSplitView.tsx", "file_type": "code", "degree": 1}, {"id": "questions_questionsplitview_formatdate", "label": "formatDate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDate()", "community": 22, "community_name": "Admin Questions Split View", "source_file": "src/components/questions/QuestionSplitView.tsx", "file_type": "code", "degree": 1}, {"id": "questions_questionsplitview_formatfilesize", "label": "formatFileSize()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatFileSize()", "community": 22, "community_name": "Admin Questions Split View", "source_file": "src/components/questions/QuestionSplitView.tsx", "file_type": "code", "degree": 1}, {"id": "questions_questionsplitview_questionsplitview", "label": "QuestionSplitView()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "QuestionSplitView()", "community": 22, "community_name": "Admin Questions Split View", "source_file": "src/components/questions/QuestionSplitView.tsx", "file_type": "code", "degree": 3}, {"id": "src_components_questions_questionthread_tsx", "label": "QuestionThread.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "QuestionThread.tsx", "community": 26, "community_name": "Question Thread UI", "source_file": "src/components/questions/QuestionThread.tsx", "file_type": "code", "degree": 7}, {"id": "questions_questionthread_fileattachment", "label": "FileAttachment", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FileAttachment", "community": 26, "community_name": "Question Thread UI", "source_file": "src/components/questions/QuestionThread.tsx", "file_type": "code", "degree": 1}, {"id": "questions_questionthread_message", "label": "Message", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Message", "community": 26, "community_name": "Question Thread UI", "source_file": "src/components/questions/QuestionThread.tsx", "file_type": "code", "degree": 1}, {"id": "questions_questionthread_questionthreadprops", "label": "QuestionThreadProps", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "QuestionThreadProps", "community": 26, "community_name": "Question Thread UI", "source_file": "src/components/questions/QuestionThread.tsx", "file_type": "code", "degree": 1}, {"id": "questions_questionthread_formatdate", "label": "formatDate()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatDate()", "community": 26, "community_name": "Question Thread UI", "source_file": "src/components/questions/QuestionThread.tsx", "file_type": "code", "degree": 1}, {"id": "questions_questionthread_formatfilesize", "label": "formatFileSize()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatFileSize()", "community": 26, "community_name": "Question Thread UI", "source_file": "src/components/questions/QuestionThread.tsx", "file_type": "code", "degree": 1}, {"id": "questions_questionthread_questionthread", "label": "QuestionThread()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "QuestionThread()", "community": 26, "community_name": "Question Thread UI", "source_file": "src/components/questions/QuestionThread.tsx", "file_type": "code", "degree": 2}, {"id": "src_components_player_kinescope_player_tsx", "label": "kinescope-player.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "kinescope-player.tsx", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/player/kinescope-player.tsx", "file_type": "code", "degree": 3}, {"id": "player_kinescope_player_props", "label": "Props", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/player/kinescope-player.tsx", "file_type": "code", "degree": 1}, {"id": "player_kinescope_player_kinescopeplayer", "label": "KinescopePlayer()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "KinescopePlayer()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/components/player/kinescope-player.tsx", "file_type": "code", "degree": 2}, {"id": "src_lib_prisma_ts", "label": "prisma.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 39.0, "font": {"size": 12, "color": "#ffffff"}, "title": "prisma.ts", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/lib/prisma.ts", "file_type": "code", "degree": 59}, {"id": "lib_prisma_globalforprisma", "label": "globalForPrisma", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "globalForPrisma", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/lib/prisma.ts", "file_type": "code", "degree": 1}, {"id": "lib_prisma_createprismaclient", "label": "createPrismaClient()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "createPrismaClient()", "community": 13, "community_name": "Prisma Client & Dashboards", "source_file": "src/lib/prisma.ts", "file_type": "code", "degree": 1}, {"id": "src_lib_s3_ts", "label": "s3.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "s3.ts", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/lib/s3.ts", "file_type": "code", "degree": 11}, {"id": "lib_s3_s3", "label": "s3", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "s3", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/lib/s3.ts", "file_type": "code", "degree": 1}, {"id": "lib_s3_getpublicurl", "label": "getPublicUrl()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "getPublicUrl()", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/lib/s3.ts", "file_type": "code", "degree": 2}, {"id": "lib_s3_uploadfile", "label": "uploadFile()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "uploadFile()", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/lib/s3.ts", "file_type": "code", "degree": 14}, {"id": "lib_s3_deletefile", "label": "deleteFile()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteFile()", "community": 16, "community_name": "S3 Upload Routes", "source_file": "src/lib/s3.ts", "file_type": "code", "degree": 4}, {"id": "src_lib_settings_ts", "label": "settings.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.3, "font": {"size": 12, "color": "#ffffff"}, "title": "settings.ts", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/lib/settings.ts", "file_type": "code", "degree": 21}, {"id": "lib_settings_settings_defaults", "label": "SETTINGS_DEFAULTS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SETTINGS_DEFAULTS", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/lib/settings.ts", "file_type": "code", "degree": 2}, {"id": "lib_settings_settingskey", "label": "SettingsKey", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingsKey", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/lib/settings.ts", "file_type": "code", "degree": 2}, {"id": "lib_settings_settings", "label": "Settings", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/lib/settings.ts", "file_type": "code", "degree": 2}, {"id": "lib_settings_getsettings", "label": "getSettings", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "getSettings", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/lib/settings.ts", "file_type": "code", "degree": 10}, {"id": "lib_settings_getsetting", "label": "getSetting()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.4, "font": {"size": 12, "color": "#ffffff"}, "title": "getSetting()", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/lib/settings.ts", "file_type": "code", "degree": 15}, {"id": "lib_settings_asbool", "label": "asBool()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "asBool()", "community": 11, "community_name": "Curator Homework Review", "source_file": "src/lib/settings.ts", "file_type": "code", "degree": 5}, {"id": "lib_settings_parsenotificationemails", "label": "parseNotificationEmails()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "parseNotificationEmails()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/lib/settings.ts", "file_type": "code", "degree": 3}, {"id": "src_lib_md_to_tiptap_ts", "label": "md-to-tiptap.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "md-to-tiptap.ts", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "src/lib/md-to-tiptap.ts", "file_type": "code", "degree": 7}, {"id": "lib_md_to_tiptap_mark", "label": "Mark", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Mark", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "src/lib/md-to-tiptap.ts", "file_type": "code", "degree": 1}, {"id": "lib_md_to_tiptap_tiptapnode", "label": "TipTapNode", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "TipTapNode", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "src/lib/md-to-tiptap.ts", "file_type": "code", "degree": 1}, {"id": "lib_md_to_tiptap_mdastnode", "label": "MdastNode", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "MdastNode", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "src/lib/md-to-tiptap.ts", "file_type": "code", "degree": 1}, {"id": "lib_md_to_tiptap_convertinline", "label": "convertInline()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "convertInline()", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "src/lib/md-to-tiptap.ts", "file_type": "code", "degree": 2}, {"id": "lib_md_to_tiptap_convertblock", "label": "convertBlock()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "convertBlock()", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "src/lib/md-to-tiptap.ts", "file_type": "code", "degree": 3}, {"id": "lib_md_to_tiptap_mdtotiptap", "label": "mdToTiptap()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "mdToTiptap()", "community": 2, "community_name": "Markdown\u2192TipTap Import", "source_file": "src/lib/md-to-tiptap.ts", "file_type": "code", "degree": 5}, {"id": "src_lib_email_ts", "label": "email.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 24.3, "font": {"size": 12, "color": "#ffffff"}, "title": "email.ts", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 29}, {"id": "lib_email_getresend", "label": "getResend()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "getResend()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 12}, {"id": "lib_email_getschoolname", "label": "getSchoolName()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "getSchoolName()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 13}, {"id": "lib_email_base", "label": "base()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "base()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 12}, {"id": "lib_email_btn", "label": "btn()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.9, "font": {"size": 12, "color": "#ffffff"}, "title": "btn()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 12}, {"id": "lib_email_quote", "label": "quote()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "quote()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 6}, {"id": "lib_email_sendcourseaccessemail", "label": "sendCourseAccessEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "sendCourseAccessEmail()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 11}, {"id": "lib_email_sendhomeworksubmittedemail", "label": "sendHomeworkSubmittedEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "sendHomeworkSubmittedEmail()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 7}, {"id": "lib_email_sendfeedbackreceivedemail", "label": "sendFeedbackReceivedEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sendFeedbackReceivedEmail()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 8}, {"id": "lib_email_sendwelcomeemail", "label": "sendWelcomeEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "sendWelcomeEmail()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 10}, {"id": "lib_email_sendtestemail", "label": "sendTestEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "sendTestEmail()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 5}, {"id": "lib_email_sendaccessemail", "label": "sendAccessEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "sendAccessEmail()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 6}, {"id": "lib_email_sendpasswordresetemail", "label": "sendPasswordResetEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "sendPasswordResetEmail()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 6}, {"id": "lib_email_sendquestioncreatedemail", "label": "sendQuestionCreatedEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "sendQuestionCreatedEmail()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 7}, {"id": "lib_email_sendquestionreplyemail", "label": "sendQuestionReplyEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sendQuestionReplyEmail()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 8}, {"id": "lib_email_sendquestionfollowupemail", "label": "sendQuestionFollowUpEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "sendQuestionFollowUpEmail()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 7}, {"id": "lib_email_sendhomeworkupdatedemail", "label": "sendHomeworkUpdatedEmail()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "sendHomeworkUpdatedEmail()", "community": 3, "community_name": "Email Notifications & Q&A API", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 6}, {"id": "src_lib_utils_ts", "label": "utils.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "utils.ts", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/lib/utils.ts", "file_type": "code", "degree": 9}, {"id": "lib_utils_cn", "label": "cn()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 29.2, "font": {"size": 12, "color": "#ffffff"}, "title": "cn()", "community": 0, "community_name": "Admin Categories & UI Library", "source_file": "src/lib/utils.ts", "file_type": "code", "degree": 39}, {"id": "src_lib_auth_ts", "label": "auth.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "auth.ts", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/lib/auth.ts", "file_type": "code", "degree": 61}, {"id": "lib_auth_auth", "label": "auth", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 37.0, "font": {"size": 12, "color": "#ffffff"}, "title": "auth", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/lib/auth.ts", "file_type": "code", "degree": 55}, {"id": "lib_auth_session", "label": "Session", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Session", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/lib/auth.ts", "file_type": "code", "degree": 1}, {"id": "lib_auth_user", "label": "User", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "User", "community": 5, "community_name": "Auth/Session & Student Profile", "source_file": "src/lib/auth.ts", "file_type": "code", "degree": 1}, {"id": "src_lib_auth_client_ts", "label": "auth-client.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "auth-client.ts", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/lib/auth-client.ts", "file_type": "code", "degree": 5}, {"id": "lib_auth_client_authclient", "label": "authClient", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "authClient", "community": 1, "community_name": "Auth Flow & App Settings", "source_file": "src/lib/auth-client.ts", "file_type": "code", "degree": 3}, {"id": "src_lib_actions_course_actions_ts", "label": "course-actions.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "course-actions.ts", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/lib/actions/course-actions.ts", "file_type": "code", "degree": 14}, {"id": "actions_course_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/lib/actions/course-actions.ts", "file_type": "code", "degree": 7}, {"id": "actions_course_actions_createmodule", "label": "createModule()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "createModule()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/lib/actions/course-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_course_actions_updatemodule", "label": "updateModule()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "updateModule()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/lib/actions/course-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_course_actions_deletemodule", "label": "deleteModule()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteModule()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/lib/actions/course-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_course_actions_reordermodules", "label": "reorderModules()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "reorderModules()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/lib/actions/course-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_course_actions_grantaccess", "label": "grantAccess()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "grantAccess()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/lib/actions/course-actions.ts", "file_type": "code", "degree": 4}, {"id": "actions_course_actions_revokeaccess", "label": "revokeAccess()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "revokeAccess()", "community": 9, "community_name": "Course Tree & Module Sorting", "source_file": "src/lib/actions/course-actions.ts", "file_type": "code", "degree": 3}, {"id": "src_lib_actions_quiz_actions_ts", "label": "quiz-actions.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "quiz-actions.ts", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/lib/actions/quiz-actions.ts", "file_type": "code", "degree": 7}, {"id": "actions_quiz_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/lib/actions/quiz-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_quiz_actions_savequiz", "label": "saveQuiz()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "saveQuiz()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/lib/actions/quiz-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_quiz_actions_deletequiz", "label": "deleteQuiz()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteQuiz()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/lib/actions/quiz-actions.ts", "file_type": "code", "degree": 3}, {"id": "src_lib_actions_student_actions_ts", "label": "student-actions.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 19.3, "font": {"size": 12, "color": "#ffffff"}, "title": "student-actions.ts", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/lib/actions/student-actions.ts", "file_type": "code", "degree": 19}, {"id": "actions_student_actions_togglelessonprogress", "label": "toggleLessonProgress()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleLessonProgress()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/lib/actions/student-actions.ts", "file_type": "code", "degree": 2}, {"id": "actions_student_actions_homeworkfile", "label": "HomeworkFile", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeworkFile", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/lib/actions/student-actions.ts", "file_type": "code", "degree": 1}, {"id": "actions_student_actions_submithomework", "label": "submitHomework()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "submitHomework()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/lib/actions/student-actions.ts", "file_type": "code", "degree": 5}, {"id": "actions_student_actions_submitquizattempt", "label": "submitQuizAttempt()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "submitQuizAttempt()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/lib/actions/student-actions.ts", "file_type": "code", "degree": 2}, {"id": "actions_student_actions_addcomment", "label": "addComment()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "addComment()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/lib/actions/student-actions.ts", "file_type": "code", "degree": 2}, {"id": "actions_student_actions_deletecomment", "label": "deleteComment()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteComment()", "community": 4, "community_name": "Student Lesson Player", "source_file": "src/lib/actions/student-actions.ts", "file_type": "code", "degree": 2}, {"id": "src_lib_actions_lesson_actions_ts", "label": "lesson-actions.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "lesson-actions.ts", "community": 35, "community_name": "Lesson Actions Lib", "source_file": "src/lib/actions/lesson-actions.ts", "file_type": "code", "degree": 5}, {"id": "actions_lesson_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 35, "community_name": "Lesson Actions Lib", "source_file": "src/lib/actions/lesson-actions.ts", "file_type": "code", "degree": 2}, {"id": "actions_lesson_actions_savelesson", "label": "saveLesson()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "saveLesson()", "community": 35, "community_name": "Lesson Actions Lib", "source_file": "src/lib/actions/lesson-actions.ts", "file_type": "code", "degree": 2}, {"id": "src_lib_actions_user_actions_ts", "label": "user-actions.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "user-actions.ts", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/lib/actions/user-actions.ts", "file_type": "code", "degree": 7}, {"id": "actions_user_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/lib/actions/user-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_user_actions_bulkgrantaccess", "label": "bulkGrantAccess()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "bulkGrantAccess()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/lib/actions/user-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_user_actions_revokeuseraccess", "label": "revokeUserAccess()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "revokeUserAccess()", "community": 7, "community_name": "Admin User Detail (Balance/Contact)", "source_file": "src/lib/actions/user-actions.ts", "file_type": "code", "degree": 3}, {"id": "src_lib_actions_module_actions_ts", "label": "module-actions.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.4, "font": {"size": 12, "color": "#ffffff"}, "title": "module-actions.ts", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/lib/actions/module-actions.ts", "file_type": "code", "degree": 11}, {"id": "actions_module_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/lib/actions/module-actions.ts", "file_type": "code", "degree": 7}, {"id": "actions_module_actions_createlesson", "label": "createLesson()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "createLesson()", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/lib/actions/module-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_module_actions_updatelesson", "label": "updateLesson()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "updateLesson()", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/lib/actions/module-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_module_actions_deletelesson", "label": "deleteLesson()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteLesson()", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/lib/actions/module-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_module_actions_reorderlessons", "label": "reorderLessons()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "reorderLessons()", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/lib/actions/module-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_module_actions_togglelessonpublished", "label": "toggleLessonPublished()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "toggleLessonPublished()", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/lib/actions/module-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_module_actions_movelessontomodule", "label": "moveLessonToModule()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "moveLessonToModule()", "community": 17, "community_name": "Module Page & Lesson Sorting", "source_file": "src/lib/actions/module-actions.ts", "file_type": "code", "degree": 3}, {"id": "src_lib_actions_homework_actions_ts", "label": "homework-actions.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.4, "font": {"size": 0, "color": "#ffffff"}, "title": "homework-actions.ts", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/lib/actions/homework-actions.ts", "file_type": "code", "degree": 7}, {"id": "actions_homework_actions_requireadmin", "label": "requireAdmin()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "requireAdmin()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/lib/actions/homework-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_homework_actions_savehomework", "label": "saveHomework()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "saveHomework()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/lib/actions/homework-actions.ts", "file_type": "code", "degree": 3}, {"id": "actions_homework_actions_deletehomework", "label": "deleteHomework()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteHomework()", "community": 6, "community_name": "Lesson Editor & Quiz Tools", "source_file": "src/lib/actions/homework-actions.ts", "file_type": "code", "degree": 3}, {"id": "roadmap_md", "label": "Project Roadmap", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Project Roadmap", "community": 38, "community_name": "Project Docs (CLAUDE/ROADMAP)", "source_file": "ROADMAP.md", "file_type": "document", "degree": 1}, {"id": "technical_md", "label": "Technical Documentation", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Technical Documentation", "community": 34, "community_name": "Tech Docs & Prisma Schema", "source_file": "TECHNICAL.md", "file_type": "document", "degree": 1}, {"id": "agents_md", "label": "Agent Instructions", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Agent Instructions", "community": 54, "community_name": "Community 54", "source_file": "AGENTS.md", "file_type": "document", "degree": 0}, {"id": "claude_md", "label": "Claude Project Rules", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Claude Project Rules", "community": 38, "community_name": "Project Docs (CLAUDE/ROADMAP)", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "prisma_schema", "label": "Prisma Schema", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Prisma Schema", "community": 34, "community_name": "Tech Docs & Prisma Schema", "source_file": "prisma/schema.prisma", "file_type": "code", "degree": 2}, {"id": "middleware_ts", "label": "Auth Middleware", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Auth Middleware", "community": 41, "community_name": "Auth\u2194Middleware Pair", "source_file": "src/middleware.ts", "file_type": "code", "degree": 1}, {"id": "lib_auth_ts", "label": "Better Auth Server Config", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Better Auth Server Config", "community": 41, "community_name": "Auth\u2194Middleware Pair", "source_file": "src/lib/auth.ts", "file_type": "code", "degree": 1}, {"id": "lib_prisma_ts", "label": "Prisma Client Singleton", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Prisma Client Singleton", "community": 37, "community_name": "Lesson Actions + Prisma Bridge", "source_file": "src/lib/prisma.ts", "file_type": "code", "degree": 2}, {"id": "lib_settings_ts", "label": "Settings Helper", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings Helper", "community": 55, "community_name": "Community 55", "source_file": "src/lib/settings.ts", "file_type": "code", "degree": 0}, {"id": "lib_email_ts", "label": "Email Helpers (Resend)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Email Helpers (Resend)", "community": 33, "community_name": "Email\u2192Homework\u2192Questions Bridge", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 2}, {"id": "student_lesson_actions", "label": "Lesson Progress Actions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Lesson Progress Actions", "community": 37, "community_name": "Lesson Actions + Prisma Bridge", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/actions.ts", "file_type": "code", "degree": 1}, {"id": "student_homework_actions", "label": "Homework Submission Actions", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Homework Submission Actions", "community": 33, "community_name": "Email\u2192Homework\u2192Questions Bridge", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/homework-actions.ts", "file_type": "code", "degree": 1}, {"id": "student_comment_actions", "label": "Lesson Comment Actions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Lesson Comment Actions", "community": 37, "community_name": "Lesson Actions + Prisma Bridge", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/comment-actions.ts", "file_type": "code", "degree": 1}, {"id": "api_questions_route", "label": "Questions API Route", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Questions API Route", "community": 33, "community_name": "Email\u2192Homework\u2192Questions Bridge", "source_file": "src/app/api/questions/route.ts", "file_type": "code", "degree": 1}, {"id": "lesson_page_lessonpage", "label": "Lesson Page", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Lesson Page", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/(student)/courses/[slug]/lessons/[lessonId]/page.tsx", "file_type": "code", "degree": 2}, {"id": "student_dashboard_studentdashboard", "label": "Student Dashboard", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Student Dashboard", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/(student)/dashboard/page.tsx", "file_type": "code", "degree": 1}, {"id": "admin_courses_actions_createcourse", "label": "Create Course Action", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Create Course Action", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/admin/courses/actions.ts", "file_type": "code", "degree": 1}, {"id": "admin_courses_actions_updatecourse", "label": "Update Course Action", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Update Course Action", "community": 56, "community_name": "Community 56", "source_file": "src/app/admin/courses/actions.ts", "file_type": "code", "degree": 0}, {"id": "admin_course_detail_coursedetailpage", "label": "Course Detail Page", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Course Detail Page", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/admin/courses/[courseId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "admin_module_actions_createmodule", "label": "Create Module Action", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Create Module Action", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/admin/courses/[courseId]/actions.ts", "file_type": "code", "degree": 1}, {"id": "admin_lesson_actions_createlesson", "label": "Create Lesson Action", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Create Lesson Action", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/admin/courses/[courseId]/modules/[moduleId]/actions.ts", "file_type": "code", "degree": 1}, {"id": "admin_dashboard_admindashboard", "label": "Admin Dashboard", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Admin Dashboard", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/admin/dashboard/page.tsx", "file_type": "code", "degree": 1}, {"id": "import_actions_parsecsv", "label": "Parse CSV Action", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Parse CSV Action", "community": 57, "community_name": "Community 57", "source_file": "src/app/admin/import-export/import-actions.ts", "file_type": "code", "degree": 0}, {"id": "import_actions_applyimport", "label": "Apply Import Action", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Apply Import Action", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/admin/import-export/import-actions.ts", "file_type": "code", "degree": 1}, {"id": "admin_users_actions_createuser", "label": "Create User Action", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Create User Action", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/admin/users/actions.ts", "file_type": "code", "degree": 1}, {"id": "admin_user_detail_userpage", "label": "User Detail Page", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "User Detail Page", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/admin/users/[userId]/page.tsx", "file_type": "code", "degree": 1}, {"id": "api_questions_post", "label": "Create Question API", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Create Question API", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/api/questions/route.ts", "file_type": "code", "degree": 1}, {"id": "curator_homework_actions_submitfeedback", "label": "Submit Feedback Action", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Submit Feedback Action", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/app/curator/homework/[submissionId]/actions.ts", "file_type": "code", "degree": 1}, {"id": "prisma_client", "label": "Prisma Client", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Prisma Client", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/lib/prisma.ts", "file_type": "code", "degree": 13}, {"id": "auth_lib", "label": "Auth Library", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Auth Library", "community": 18, "community_name": "Cross-cutting Course Actions", "source_file": "src/lib/auth.ts", "file_type": "code", "degree": 2}, {"id": "lesson_files_manager_lessonfilesmanager", "label": "LessonFilesManager", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonFilesManager", "community": 40, "community_name": "File-format Badge & Files Manager", "source_file": "src/components/admin/lesson-files-manager.tsx", "file_type": "code", "degree": 1}, {"id": "sortable_lessons_sortablelessons", "label": "SortableLessons", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SortableLessons", "community": 45, "community_name": "Sortable Lessons\u2194Module Actions", "source_file": "src/components/admin/sortable-lessons.tsx", "file_type": "code", "degree": 1}, {"id": "user_contact_editor_usercontacteditor", "label": "UserContactEditor", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "UserContactEditor", "community": 58, "community_name": "Community 58", "source_file": "src/components/admin/user-contact-editor.tsx", "file_type": "code", "degree": 0}, {"id": "category_row_categoryrow", "label": "CategoryRow", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoryRow", "community": 59, "community_name": "Community 59", "source_file": "src/components/admin/category-row.tsx", "file_type": "code", "degree": 0}, {"id": "user_enrollment_manager_userenrollmentmanager", "label": "UserEnrollmentManager", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UserEnrollmentManager", "community": 51, "community_name": "User Enrollment Pair", "source_file": "src/components/admin/user-enrollment-manager.tsx", "file_type": "code", "degree": 1}, {"id": "homework_editor_homeworkeditor", "label": "HomeworkEditor", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeworkEditor", "community": 39, "community_name": "Homework Editor\u2194Actions Pair", "source_file": "src/components/admin/homework-editor.tsx", "file_type": "code", "degree": 1}, {"id": "course_tree_coursetree", "label": "CourseTree", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CourseTree", "community": 60, "community_name": "Community 60", "source_file": "src/components/admin/course-tree.tsx", "file_type": "code", "degree": 0}, {"id": "csv_importer_csvimporter", "label": "CsvImporter", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CsvImporter", "community": 61, "community_name": "Community 61", "source_file": "src/components/admin/csv-importer.tsx", "file_type": "code", "degree": 0}, {"id": "course_edit_form_courseeditform", "label": "CourseEditForm", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CourseEditForm", "community": 62, "community_name": "Community 62", "source_file": "src/components/admin/course-edit-form.tsx", "file_type": "code", "degree": 0}, {"id": "comments_table_commentstable", "label": "CommentsTable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CommentsTable", "community": 63, "community_name": "Community 63", "source_file": "src/components/admin/comments-table.tsx", "file_type": "code", "degree": 0}, {"id": "homework_filters_homeworkfilters", "label": "HomeworkFilters", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeworkFilters", "community": 64, "community_name": "Community 64", "source_file": "src/components/admin/homework-filters.tsx", "file_type": "code", "degree": 0}, {"id": "quiz_editor_quizeditor", "label": "QuizEditor", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "QuizEditor", "community": 46, "community_name": "Quiz Editor\u2194Quiz Actions", "source_file": "src/components/admin/quiz-editor.tsx", "file_type": "code", "degree": 1}, {"id": "user_balance_block_userbalanceblock", "label": "UserBalanceBlock", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "UserBalanceBlock", "community": 65, "community_name": "Community 65", "source_file": "src/components/admin/user-balance-block.tsx", "file_type": "code", "degree": 0}, {"id": "lesson_editor_lessoneditor", "label": "LessonEditor", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonEditor", "community": 44, "community_name": "Lesson Editor\u2194md-to-tiptap", "source_file": "src/components/admin/lesson-editor.tsx", "file_type": "code", "degree": 1}, {"id": "enrollment_manager_enrollmentmanager", "label": "EnrollmentManager", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "EnrollmentManager", "community": 23, "community_name": "Bridge: Shared Libs (auth/prisma/email)", "source_file": "src/components/admin/enrollment-manager.tsx", "file_type": "code", "degree": 1}, {"id": "admin_shell_adminshell", "label": "AdminShell", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminShell", "community": 66, "community_name": "Community 66", "source_file": "src/components/admin/admin-shell.tsx", "file_type": "code", "degree": 0}, {"id": "content_viewer_contentviewer", "label": "ContentViewer", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentViewer", "community": 67, "community_name": "Community 67", "source_file": "src/components/curator/content-viewer.tsx", "file_type": "code", "degree": 0}, {"id": "audio_recorder_audiorecorder", "label": "AudioRecorder", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AudioRecorder", "community": 23, "community_name": "Bridge: Shared Libs (auth/prisma/email)", "source_file": "src/components/curator/audio-recorder.tsx", "file_type": "code", "degree": 1}, {"id": "logout_button_logoutbutton", "label": "LogoutButton", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoutButton", "community": 68, "community_name": "Community 68", "source_file": "src/components/layout/logout-button.tsx", "file_type": "code", "degree": 0}, {"id": "kinescope_player_kinescopeplayer", "label": "KinescopePlayer", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "KinescopePlayer", "community": 69, "community_name": "Community 69", "source_file": "src/components/player/kinescope-player.tsx", "file_type": "code", "degree": 0}, {"id": "question_split_view_questionsplitview", "label": "QuestionSplitView", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "QuestionSplitView", "community": 70, "community_name": "Community 70", "source_file": "src/components/questions/QuestionSplitView.tsx", "file_type": "code", "degree": 0}, {"id": "question_thread_questionthread", "label": "QuestionThread", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "QuestionThread", "community": 71, "community_name": "Community 71", "source_file": "src/components/questions/QuestionThread.tsx", "file_type": "code", "degree": 0}, {"id": "file_format_badge_fileformatbadge", "label": "FileFormatBadge", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FileFormatBadge", "community": 40, "community_name": "File-format Badge & Files Manager", "source_file": "src/components/shared/file-format-badge.tsx", "file_type": "code", "degree": 1}, {"id": "course_sidebar_coursesidebar", "label": "CourseSidebar", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CourseSidebar", "community": 72, "community_name": "Community 72", "source_file": "src/components/student/course-sidebar.tsx", "file_type": "code", "degree": 0}, {"id": "quiz_section_quizsection", "label": "QuizSection", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "QuizSection", "community": 73, "community_name": "Community 73", "source_file": "src/components/student/quiz-section.tsx", "file_type": "code", "degree": 0}, {"id": "homework_section_homeworksection", "label": "HomeworkSection", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeworkSection", "community": 23, "community_name": "Bridge: Shared Libs (auth/prisma/email)", "source_file": "src/components/student/homework-section.tsx", "file_type": "code", "degree": 2}, {"id": "lesson_complete_button_lessoncompletebutton", "label": "LessonCompleteButton", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonCompleteButton", "community": 74, "community_name": "Community 74", "source_file": "src/components/student/lesson-complete-button.tsx", "file_type": "code", "degree": 0}, {"id": "lesson_content_lessoncontent", "label": "LessonContent", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonContent", "community": 75, "community_name": "Community 75", "source_file": "src/components/student/lesson-content.tsx", "file_type": "code", "degree": 0}, {"id": "lesson_comments_lessoncomments", "label": "LessonComments", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LessonComments", "community": 76, "community_name": "Community 76", "source_file": "src/components/student/lesson-comments.tsx", "file_type": "code", "degree": 0}, {"id": "prisma_prisma", "label": "Prisma Client", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Prisma Client", "community": 23, "community_name": "Bridge: Shared Libs (auth/prisma/email)", "source_file": "src/lib/prisma.ts", "file_type": "code", "degree": 1}, {"id": "s3_s3", "label": "S3 Client", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "S3 Client", "community": 77, "community_name": "Community 77", "source_file": "src/lib/s3.ts", "file_type": "code", "degree": 0}, {"id": "settings_getsettings", "label": "getSettings", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getSettings", "community": 23, "community_name": "Bridge: Shared Libs (auth/prisma/email)", "source_file": "src/lib/settings.ts", "file_type": "code", "degree": 1}, {"id": "md_to_tiptap_mdtotiptap", "label": "mdToTiptap", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "mdToTiptap", "community": 44, "community_name": "Lesson Editor\u2194md-to-tiptap", "source_file": "src/lib/md-to-tiptap.ts", "file_type": "code", "degree": 1}, {"id": "email_senders", "label": "Email Senders", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Email Senders", "community": 23, "community_name": "Bridge: Shared Libs (auth/prisma/email)", "source_file": "src/lib/email.ts", "file_type": "code", "degree": 4}, {"id": "auth_auth", "label": "Better Auth", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Better Auth", "community": 23, "community_name": "Bridge: Shared Libs (auth/prisma/email)", "source_file": "src/lib/auth.ts", "file_type": "code", "degree": 1}, {"id": "course_actions_grantaccess", "label": "grantAccess", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "grantAccess", "community": 23, "community_name": "Bridge: Shared Libs (auth/prisma/email)", "source_file": "src/lib/actions/course-actions.ts", "file_type": "code", "degree": 3}, {"id": "quiz_actions_savequiz", "label": "saveQuiz", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "saveQuiz", "community": 46, "community_name": "Quiz Editor\u2194Quiz Actions", "source_file": "src/lib/actions/quiz-actions.ts", "file_type": "code", "degree": 1}, {"id": "student_actions_submithomework", "label": "submitHomework", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.0, "font": {"size": 0, "color": "#ffffff"}, "title": "submitHomework", "community": 23, "community_name": "Bridge: Shared Libs (auth/prisma/email)", "source_file": "src/lib/actions/student-actions.ts", "file_type": "code", "degree": 2}, {"id": "lesson_actions_savelesson", "label": "saveLesson", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "saveLesson", "community": 78, "community_name": "Community 78", "source_file": "src/lib/actions/lesson-actions.ts", "file_type": "code", "degree": 0}, {"id": "user_actions_bulkgrantaccess", "label": "bulkGrantAccess", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "bulkGrantAccess", "community": 51, "community_name": "User Enrollment Pair", "source_file": "src/lib/actions/user-actions.ts", "file_type": "code", "degree": 1}, {"id": "module_actions_createlesson", "label": "createLesson", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "createLesson", "community": 45, "community_name": "Sortable Lessons\u2194Module Actions", "source_file": "src/lib/actions/module-actions.ts", "file_type": "code", "degree": 1}, {"id": "homework_actions_savehomework", "label": "saveHomework", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.5, "font": {"size": 0, "color": "#ffffff"}, "title": "saveHomework", "community": 39, "community_name": "Homework Editor\u2194Actions Pair", "source_file": "src/lib/actions/homework-actions.ts", "file_type": "code", "degree": 1}];
|
|
const RAW_EDGES = [{"from": "postcss_config_mjs", "to": "lms_system_postcss_config_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "load_test_js", "to": "lms_system_load_test_lessons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "load_test_js", "to": "lms_system_load_test_test_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "load_test_js", "to": "lms_system_load_test_browser_headers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "load_test_js", "to": "lms_system_load_test_options", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "load_test_js", "to": "lms_system_load_test_jar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "load_test_js", "to": "lms_system_load_test_loginres", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "load_test_js", "to": "lms_system_load_test_dashres", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "load_test_js", "to": "lms_system_load_test_courseres", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "load_test_js", "to": "lms_system_load_test_lessonres", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prisma_config_ts", "to": "prisma_schema", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "lms_system_package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "lms_system_package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "lms_system_package_private", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "lms_system_package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "lms_system_package_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "lms_system_package_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "lms_system_package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_json", "to": "next_config_ts", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lms_system_package_scripts", "to": "lms_system_package_scripts_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_scripts", "to": "lms_system_package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_scripts", "to": "lms_system_package_scripts_start", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_scripts", "to": "lms_system_package_scripts_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_scripts", "to": "lms_system_package_scripts_type_check", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_prisma", "to": "lms_system_package_prisma_seed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_aws_sdk_client_s3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_aws_sdk_s3_request_presigner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_base_ui_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_dnd_kit_core", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_dnd_kit_sortable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_dnd_kit_utilities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_kinescope_react_kinescope_player", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_prisma_adapter_pg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_prisma_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_tiptap_extension_image", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_tiptap_extension_link", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_tiptap_extension_placeholder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_tiptap_extension_underline", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_tiptap_pm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_tiptap_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_tiptap_starter_kit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_bcryptjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_better_auth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_class_variance_authority", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_clsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_gray_matter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_iconv_lite", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_lucide_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_next", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_next_themes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_pg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_remark_parse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_resend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_sonner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_tailwind_merge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_unified", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies", "to": "lms_system_package_dependencies_zod", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies_prisma_client", "to": "prisma_client", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_dependencies_clsx", "to": "lib_utils_cn", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lms_system_package_dependencies_unified", "to": "lib_md_to_tiptap_mdtotiptap", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_tailwindcss_postcss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_types_bcryptjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_types_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_types_pg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_types_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_types_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_dotenv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_eslint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_eslint_config_next", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_tailwindcss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_ts_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_package_devdependencies", "to": "lms_system_package_devdependencies_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_json", "to": "lms_system_components_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_json", "to": "lms_system_components_style", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_json", "to": "lms_system_components_rsc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_json", "to": "lms_system_components_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_json", "to": "lms_system_components_tailwind", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_json", "to": "lms_system_components_iconlibrary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_json", "to": "lms_system_components_rtl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_json", "to": "lms_system_components_aliases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_json", "to": "lms_system_components_menucolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_json", "to": "lms_system_components_menuaccent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_json", "to": "lms_system_components_registries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_components_tailwind", "to": "lms_system_components_tailwind_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_components_tailwind", "to": "lms_system_components_tailwind_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_components_tailwind", "to": "lms_system_components_tailwind_basecolor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_components_tailwind", "to": "lms_system_components_tailwind_cssvariables", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_components_tailwind", "to": "lms_system_components_tailwind_prefix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_components_aliases", "to": "lms_system_components_aliases_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_components_aliases", "to": "lms_system_components_aliases_utils", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_components_aliases", "to": "lms_system_components_aliases_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_components_aliases", "to": "lms_system_components_aliases_lib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_components_aliases", "to": "lms_system_components_aliases_hooks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_json", "to": "lms_system_tsconfig_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_json", "to": "lms_system_tsconfig_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_json", "to": "lms_system_tsconfig_exclude", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_lib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_allowjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_strict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_noemit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_esmoduleinterop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_resolvejsonmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_isolatedmodules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_jsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_incremental", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_plugins", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions", "to": "lms_system_tsconfig_compileroptions_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lms_system_tsconfig_compileroptions_paths", "to": "lms_system_tsconfig_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "eslint_config_mjs", "to": "lms_system_eslint_config_eslintconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "next_config_ts", "to": "lms_system_next_config_nextconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prisma_seed_ts", "to": "prisma_seed_adapter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prisma_seed_ts", "to": "prisma_seed_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prisma_seed_ts", "to": "prisma_seed_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_backup_sh", "to": "scripts_backup_log", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_middleware_ts", "to": "src_middleware_public_routes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_middleware_ts", "to": "src_middleware_middleware", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_middleware_ts", "to": "src_middleware_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_layout_tsx", "to": "src_lib_settings_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_layout_tsx", "to": "lib_settings_getsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_layout_tsx", "to": "app_layout_firamono", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_layout_tsx", "to": "app_layout_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_layout_tsx", "to": "app_layout_rootlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_layout_generatemetadata", "to": "lib_settings_getsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_layout_rootlayout", "to": "lib_settings_getsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_page_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_page_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_page_tsx", "to": "app_page_homepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_layout_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_layout_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_layout_tsx", "to": "src_components_layout_logout_button_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_layout_tsx", "to": "layout_logout_button_logoutbutton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_layout_tsx", "to": "src_lib_settings_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_layout_tsx", "to": "lib_settings_getsetting", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_layout_tsx", "to": "src_components_admin_stop_impersonate_banner_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_layout_tsx", "to": "admin_stop_impersonate_banner_stopimpersonatebanner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_layout_tsx", "to": "student_layout_studentlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "student_layout_studentlayout", "to": "lib_settings_getsetting", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_dashboard_page_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_dashboard_page_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_dashboard_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_dashboard_page_tsx", "to": "dashboard_page_studentdashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_layout_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_layout_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_layout_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_layout_tsx", "to": "src_components_student_course_sidebar_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_layout_tsx", "to": "student_course_sidebar_coursesidebar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_layout_tsx", "to": "slug_layout_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_layout_tsx", "to": "slug_layout_courselayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_page_tsx", "to": "slug_page_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_page_tsx", "to": "slug_page_coursepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_actions_ts", "to": "lessonid_actions_togglelessonprogress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_homework_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_homework_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_homework_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_homework_actions_ts", "to": "src_lib_email_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_homework_actions_ts", "to": "lib_email_sendhomeworksubmittedemail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_homework_actions_ts", "to": "lib_email_sendhomeworkupdatedemail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_homework_actions_ts", "to": "lessonid_homework_actions_homeworkfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_homework_actions_ts", "to": "lessonid_homework_actions_submithomework", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_comment_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_comment_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_comment_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_comment_actions_ts", "to": "lessonid_comment_actions_addcomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_comment_actions_ts", "to": "lessonid_comment_actions_deletecomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "src_components_player_kinescope_player_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "player_kinescope_player_kinescopeplayer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "src_components_student_lesson_content_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "student_lesson_content_lessoncontent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "src_components_student_lesson_complete_button_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "student_lesson_complete_button_lessoncompletebutton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "src_components_student_homework_section_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "student_homework_section_homeworksection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "src_components_student_quiz_section_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "student_quiz_section_quizsection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "src_components_student_lesson_comments_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "student_lesson_comments_lessoncomments", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "src_components_shared_file_format_badge_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "shared_file_format_badge_fileformatbadge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "lessonid_page_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_courses_slug_lessons_lessonid_page_tsx", "to": "lessonid_page_lessonpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lessonid_page_props", "to": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_page_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_profile_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_profile_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_profile_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_profile_actions_ts", "to": "profile_actions_changepasswordaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_profile_page_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_profile_page_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_profile_page_tsx", "to": "profile_page_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_profile_page_tsx", "to": "profile_page_profilepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_page_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_page_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_page_tsx", "to": "questions_page_questionspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_new_page_tsx", "to": "new_page_fileattachment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_new_page_tsx", "to": "new_page_formatfilesize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_new_page_tsx", "to": "new_page_newquestionpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_id_page_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_id_page_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_id_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_id_page_tsx", "to": "src_components_questions_questionthread_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_id_page_tsx", "to": "questions_questionthread_questionthread", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_student_questions_id_page_tsx", "to": "id_page_questionthreadpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_layout_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_layout_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_layout_tsx", "to": "src_components_admin_admin_shell_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_layout_tsx", "to": "admin_admin_shell_adminshell", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_layout_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_layout_tsx", "to": "admin_layout_adminlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_layout_adminlayout", "to": "auth_lib", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_actions_ts", "to": "src_lib_settings_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_actions_ts", "to": "lib_settings_settings_defaults", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_actions_ts", "to": "lib_settings_settingskey", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_actions_ts", "to": "settings_actions_savesettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_actions_ts", "to": "src_components_admin_settings_form_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settings_actions_savesettings", "to": "src_components_admin_settings_form_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_page_tsx", "to": "src_lib_settings_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_page_tsx", "to": "lib_settings_getsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_page_tsx", "to": "src_components_admin_settings_form_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_page_tsx", "to": "admin_settings_form_settingsform", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_page_tsx", "to": "settings_page_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_settings_page_tsx", "to": "settings_page_settingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settings_page_settingspage", "to": "lib_settings_getsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_delete_action_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_delete_action_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_delete_action_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_delete_action_ts", "to": "comments_delete_action_deletecomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_actions_ts", "to": "comments_actions_admindeletecomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_actions_ts", "to": "src_components_admin_comments_table_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comments_actions_admindeletecomment", "to": "src_components_admin_comments_table_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_page_tsx", "to": "src_components_admin_comments_table_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_page_tsx", "to": "admin_comments_table_commentstable", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_page_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_page_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_page_tsx", "to": "comments_page_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_page_tsx", "to": "comments_page_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_comments_page_tsx", "to": "comments_page_admincommentspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_dashboard_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_dashboard_page_tsx", "to": "dashboard_page_admindashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_dashboard_page_tsx", "to": "dashboard_page_statcard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_page_statcard", "to": "src_app_curator_dashboard_page_tsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_actions_ts", "to": "courses_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_actions_ts", "to": "courses_actions_slugify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_actions_ts", "to": "courses_actions_createcourse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_actions_ts", "to": "courses_actions_updatecourse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_actions_ts", "to": "courses_actions_deletecourse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_actions_ts", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_actions_ts", "to": "src_components_admin_course_edit_form_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courses_actions_requireadmin", "to": "courses_actions_createcourse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courses_actions_requireadmin", "to": "courses_actions_updatecourse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courses_actions_requireadmin", "to": "courses_actions_deletecourse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courses_actions_slugify", "to": "courses_actions_createcourse", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courses_actions_createcourse", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courses_actions_updatecourse", "to": "src_components_admin_course_edit_form_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courses_actions_deletecourse", "to": "src_components_admin_course_edit_form_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_page_tsx", "to": "src_components_ui_badge_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_page_tsx", "to": "ui_badge_badge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_page_tsx", "to": "src_components_ui_button_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_page_tsx", "to": "ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_page_tsx", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_page_tsx", "to": "admin_create_course_dialog_createcoursedialog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_page_tsx", "to": "courses_page_coursespage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_actions_ts", "to": "src_lib_email_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_actions_ts", "to": "lib_email_sendcourseaccessemail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_actions_ts", "to": "courseid_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_actions_ts", "to": "courseid_actions_createmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_actions_ts", "to": "courseid_actions_updatemodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_actions_ts", "to": "courseid_actions_deletemodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_actions_ts", "to": "courseid_actions_reordermodules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_actions_ts", "to": "courseid_actions_grantaccess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_actions_ts", "to": "courseid_actions_revokeaccess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courseid_actions_requireadmin", "to": "courseid_actions_createmodule", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courseid_actions_requireadmin", "to": "courseid_actions_updatemodule", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courseid_actions_requireadmin", "to": "courseid_actions_deletemodule", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courseid_actions_requireadmin", "to": "courseid_actions_reordermodules", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courseid_actions_requireadmin", "to": "courseid_actions_grantaccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courseid_actions_requireadmin", "to": "courseid_actions_revokeaccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "courseid_actions_grantaccess", "to": "lib_email_sendcourseaccessemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_page_tsx", "to": "src_components_admin_course_edit_form_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_page_tsx", "to": "admin_course_edit_form_courseeditform", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_page_tsx", "to": "src_components_admin_sortable_modules_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_page_tsx", "to": "admin_sortable_modules_sortablemodules", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_page_tsx", "to": "src_components_admin_enrollment_manager_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_page_tsx", "to": "admin_enrollment_manager_enrollmentmanager", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_page_tsx", "to": "src_components_admin_course_tree_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_page_tsx", "to": "admin_course_tree_coursetree", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_page_tsx", "to": "courseid_page_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_page_tsx", "to": "courseid_page_coursedetailpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_actions_ts", "to": "moduleid_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_actions_ts", "to": "moduleid_actions_createlesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_actions_ts", "to": "moduleid_actions_updatelesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_actions_ts", "to": "moduleid_actions_deletelesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_actions_ts", "to": "moduleid_actions_reorderlessons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_actions_ts", "to": "moduleid_actions_togglelessonpublished", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_actions_ts", "to": "moduleid_actions_movelessontomodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moduleid_actions_requireadmin", "to": "moduleid_actions_createlesson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moduleid_actions_requireadmin", "to": "moduleid_actions_updatelesson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moduleid_actions_requireadmin", "to": "moduleid_actions_deletelesson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moduleid_actions_requireadmin", "to": "moduleid_actions_reorderlessons", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moduleid_actions_requireadmin", "to": "moduleid_actions_togglelessonpublished", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "moduleid_actions_requireadmin", "to": "moduleid_actions_movelessontomodule", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_page_tsx", "to": "src_components_admin_sortable_lessons_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_page_tsx", "to": "admin_sortable_lessons_sortablelessons", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_page_tsx", "to": "moduleid_page_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_page_tsx", "to": "moduleid_page_modulepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_actions_ts", "to": "lessonid_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_actions_ts", "to": "lessonid_actions_savelesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lessonid_actions_requireadmin", "to": "lessonid_actions_savelesson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_homework_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_homework_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_homework_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_homework_actions_ts", "to": "lessonid_homework_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_homework_actions_ts", "to": "lessonid_homework_actions_savehomework", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_homework_actions_ts", "to": "lessonid_homework_actions_deletehomework", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lessonid_homework_actions_requireadmin", "to": "lessonid_homework_actions_savehomework", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lessonid_homework_actions_requireadmin", "to": "lessonid_homework_actions_deletehomework", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_page_tsx", "to": "src_components_admin_lesson_editor_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_page_tsx", "to": "admin_lesson_editor_lessoneditor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_page_tsx", "to": "src_components_admin_lesson_files_manager_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_page_tsx", "to": "admin_lesson_files_manager_lessonfilesmanager", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_page_tsx", "to": "src_components_admin_homework_editor_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_page_tsx", "to": "admin_homework_editor_homeworkeditor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_page_tsx", "to": "src_components_admin_quiz_editor_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_page_tsx", "to": "admin_quiz_editor_quizeditor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_courses_courseid_modules_moduleid_lessons_lessonid_page_tsx", "to": "lessonid_page_lessoneditorpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "src_lib_email_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "lib_email_sendwelcomeemail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "import_export_import_actions_parsedrow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "import_export_import_actions_previewresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "import_export_import_actions_importoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "import_export_import_actions_applyresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "import_export_import_actions_parsecsvline", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "import_export_import_actions_normalizeheaders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "import_export_import_actions_assertadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "import_export_import_actions_parsecsv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "import_export_import_actions_applyimport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_import_actions_ts", "to": "src_components_admin_csv_importer_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "import_export_import_actions_previewresult", "to": "src_components_admin_csv_importer_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "import_export_import_actions_importoptions", "to": "src_components_admin_csv_importer_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "import_export_import_actions_applyresult", "to": "src_components_admin_csv_importer_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "import_export_import_actions_parsecsvline", "to": "import_export_import_actions_parsecsv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "import_export_import_actions_normalizeheaders", "to": "import_export_import_actions_parsecsv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "import_export_import_actions_assertadmin", "to": "import_export_import_actions_parsecsv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "import_export_import_actions_assertadmin", "to": "import_export_import_actions_applyimport", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "import_export_import_actions_parsecsv", "to": "src_components_admin_csv_importer_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "import_export_import_actions_applyimport", "to": "src_components_admin_csv_importer_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "import_export_import_actions_applyimport", "to": "lib_email_sendwelcomeemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_page_tsx", "to": "src_components_admin_csv_importer_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_page_tsx", "to": "admin_csv_importer_csvimporter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_page_tsx", "to": "src_components_admin_csv_exporter_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_page_tsx", "to": "admin_csv_exporter_csvexporter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_page_tsx", "to": "import_export_page_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_import_export_page_tsx", "to": "import_export_page_importexportpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_enroll_action_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_enroll_action_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_enroll_action_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_enroll_action_ts", "to": "src_lib_email_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_enroll_action_ts", "to": "lib_email_sendcourseaccessemail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_enroll_action_ts", "to": "users_enroll_action_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_enroll_action_ts", "to": "users_enroll_action_grantcourseaccess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_enroll_action_ts", "to": "users_enroll_action_getpublishedcourses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_enroll_action_ts", "to": "src_components_admin_quick_enroll_modal_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_enroll_action_requireadmin", "to": "users_enroll_action_grantcourseaccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_enroll_action_requireadmin", "to": "users_enroll_action_getpublishedcourses", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_enroll_action_grantcourseaccess", "to": "src_components_admin_quick_enroll_modal_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_enroll_action_grantcourseaccess", "to": "lib_email_sendcourseaccessemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_enroll_action_getpublishedcourses", "to": "src_components_admin_quick_enroll_modal_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_actions_ts", "to": "src_lib_email_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_actions_ts", "to": "lib_email_sendwelcomeemail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_actions_ts", "to": "users_actions_createuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_actions_ts", "to": "src_components_admin_create_user_form_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_actions_createuser", "to": "src_components_admin_create_user_form_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "users_actions_createuser", "to": "lib_email_sendwelcomeemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_page_tsx", "to": "src_components_admin_users_table_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_page_tsx", "to": "admin_users_table_userstable", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_page_tsx", "to": "src_components_admin_users_search_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_page_tsx", "to": "admin_users_search_userssearch", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_page_tsx", "to": "users_page_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_page_tsx", "to": "users_page_userspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_new_page_tsx", "to": "src_components_admin_create_user_form_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_new_page_tsx", "to": "admin_create_user_form_createuserform", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_new_page_tsx", "to": "new_page_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_new_page_tsx", "to": "new_page_newuserpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_actions_ts", "to": "userid_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_actions_ts", "to": "userid_actions_bulkgrantaccess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_actions_ts", "to": "userid_actions_updateusercontact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_actions_ts", "to": "userid_actions_addbalancetransaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_actions_ts", "to": "userid_actions_deletebalancetransaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_actions_ts", "to": "userid_actions_resetuserpassword", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_actions_ts", "to": "userid_actions_revokeuseraccess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_actions_ts", "to": "src_components_admin_user_contact_editor_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_actions_ts", "to": "src_components_admin_user_balance_block_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "userid_actions_requireadmin", "to": "userid_actions_bulkgrantaccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "userid_actions_requireadmin", "to": "userid_actions_updateusercontact", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "userid_actions_requireadmin", "to": "userid_actions_addbalancetransaction", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "userid_actions_requireadmin", "to": "userid_actions_deletebalancetransaction", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "userid_actions_requireadmin", "to": "userid_actions_resetuserpassword", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "userid_actions_requireadmin", "to": "userid_actions_revokeuseraccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "userid_actions_updateusercontact", "to": "src_components_admin_user_contact_editor_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "userid_actions_addbalancetransaction", "to": "src_components_admin_user_balance_block_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "userid_actions_deletebalancetransaction", "to": "src_components_admin_user_balance_block_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_page_tsx", "to": "src_components_admin_user_enrollment_manager_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_page_tsx", "to": "admin_user_enrollment_manager_userenrollmentmanager", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_page_tsx", "to": "src_components_admin_user_contact_editor_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_page_tsx", "to": "admin_user_contact_editor_usercontacteditor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_page_tsx", "to": "src_components_admin_user_balance_block_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_page_tsx", "to": "admin_user_balance_block_userbalanceblock", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_page_tsx", "to": "userid_page_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_users_userid_page_tsx", "to": "userid_page_userpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_actions_ts", "to": "categories_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_actions_ts", "to": "categories_actions_slugify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_actions_ts", "to": "categories_actions_createcategory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_actions_ts", "to": "categories_actions_updatecategory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_actions_ts", "to": "categories_actions_deletecategory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_actions_ts", "to": "src_app_admin_categories_page_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_actions_ts", "to": "src_components_admin_category_row_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "categories_actions_requireadmin", "to": "categories_actions_createcategory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "categories_actions_requireadmin", "to": "categories_actions_updatecategory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "categories_actions_requireadmin", "to": "categories_actions_deletecategory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "categories_actions_slugify", "to": "categories_actions_createcategory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "categories_actions_createcategory", "to": "src_app_admin_categories_page_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "categories_actions_updatecategory", "to": "src_components_admin_category_row_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "categories_actions_deletecategory", "to": "src_components_admin_category_row_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_page_tsx", "to": "src_components_admin_category_row_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_page_tsx", "to": "admin_category_row_categoryrow", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_page_tsx", "to": "src_components_ui_button_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_page_tsx", "to": "ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_page_tsx", "to": "src_components_ui_input_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_page_tsx", "to": "ui_input_input", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_categories_page_tsx", "to": "categories_page_categoriespage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_quizzes_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_quizzes_page_tsx", "to": "quizzes_page_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_quizzes_page_tsx", "to": "quizzes_page_adminquizzespage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_quizzes_quizid_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_quizzes_quizid_page_tsx", "to": "quizid_page_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_quizzes_quizid_page_tsx", "to": "quizid_page_adminquizattemptspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_questions_page_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_questions_page_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_questions_page_tsx", "to": "src_components_questions_questionsplitview_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_questions_page_tsx", "to": "questions_questionsplitview_questionsplitview", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_admin_questions_page_tsx", "to": "questions_page_adminquestionspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_layout_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_layout_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_layout_tsx", "to": "src_components_layout_logout_button_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_layout_tsx", "to": "layout_logout_button_logoutbutton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_layout_tsx", "to": "src_components_admin_admin_shell_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_layout_tsx", "to": "admin_admin_shell_adminshell", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_layout_tsx", "to": "src_lib_settings_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_layout_tsx", "to": "lib_settings_getsetting", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_layout_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_layout_tsx", "to": "curator_layout_curatorlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_layout_tsx", "to": "curator_layout_navlink", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "curator_layout_curatorlayout", "to": "lib_settings_getsetting", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_dashboard_page_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_dashboard_page_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_dashboard_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_dashboard_page_tsx", "to": "dashboard_page_curatordashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_page_tsx", "to": "homework_page_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_page_tsx", "to": "homework_page_homeworklistpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "src_lib_email_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "lib_email_sendfeedbackreceivedemail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "src_lib_settings_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "lib_settings_getsetting", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "lib_settings_asbool", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "submissionid_actions_requirecurator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "submissionid_actions_submitfeedback", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "submissionid_actions_setreviewing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "submissionid_actions_deletesubmission", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "src_app_curator_homework_submissionid_delete_button_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_actions_ts", "to": "src_app_curator_homework_submissionid_feedback_form_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "submissionid_actions_requirecurator", "to": "submissionid_actions_submitfeedback", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "submissionid_actions_requirecurator", "to": "submissionid_actions_setreviewing", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "submissionid_actions_requirecurator", "to": "submissionid_actions_deletesubmission", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "submissionid_actions_submitfeedback", "to": "src_app_curator_homework_submissionid_feedback_form_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "submissionid_actions_submitfeedback", "to": "lib_settings_getsetting", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "submissionid_actions_submitfeedback", "to": "lib_settings_asbool", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "submissionid_actions_submitfeedback", "to": "lib_email_sendfeedbackreceivedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "submissionid_actions_setreviewing", "to": "src_app_curator_homework_submissionid_feedback_form_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "submissionid_actions_deletesubmission", "to": "src_app_curator_homework_submissionid_delete_button_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_content_tabs_tsx", "to": "src_components_curator_content_viewer_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_content_tabs_tsx", "to": "curator_content_viewer_contentviewer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_content_tabs_tsx", "to": "submissionid_content_tabs_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_content_tabs_tsx", "to": "submissionid_content_tabs_contenttabs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_content_tabs_tsx", "to": "src_app_curator_homework_submissionid_page_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "submissionid_content_tabs_contenttabs", "to": "src_app_curator_homework_submissionid_page_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_delete_button_tsx", "to": "submissionid_delete_button_deletesubmissionbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_delete_button_tsx", "to": "src_app_curator_homework_submissionid_page_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "submissionid_delete_button_deletesubmissionbutton", "to": "src_app_curator_homework_submissionid_page_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_feedback_form_tsx", "to": "src_components_curator_audio_recorder_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_feedback_form_tsx", "to": "curator_audio_recorder_audiorecorder", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_feedback_form_tsx", "to": "submissionid_feedback_form_fileitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_feedback_form_tsx", "to": "submissionid_feedback_form_formatsize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_feedback_form_tsx", "to": "submissionid_feedback_form_feedbackform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_feedback_form_tsx", "to": "src_app_curator_homework_submissionid_page_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "submissionid_feedback_form_feedbackform", "to": "src_app_curator_homework_submissionid_page_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_page_tsx", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_page_tsx", "to": "submissionid_page_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_page_tsx", "to": "submissionid_page_formatsize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_page_tsx", "to": "submissionid_page_statusbadge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_homework_submissionid_page_tsx", "to": "submissionid_page_submissionpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_questions_page_tsx", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_questions_page_tsx", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_questions_page_tsx", "to": "src_components_questions_questionsplitview_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_questions_page_tsx", "to": "questions_questionsplitview_questionsplitview", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_curator_questions_page_tsx", "to": "questions_page_curatorquestionspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_auth_all_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_auth_all_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_auth_all_route_ts", "to": "all_route_get_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_audio_upload_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_audio_upload_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_audio_upload_route_ts", "to": "src_lib_s3_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_audio_upload_route_ts", "to": "lib_s3_uploadfile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_audio_upload_route_ts", "to": "audio_upload_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "audio_upload_route_post", "to": "src_app_api_curator_audio_upload_route_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "audio_upload_route_post", "to": "lib_s3_uploadfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_question_upload_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_question_upload_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_question_upload_route_ts", "to": "src_lib_s3_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_question_upload_route_ts", "to": "lib_s3_uploadfile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_question_upload_route_ts", "to": "question_upload_route_allowed_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_question_upload_route_ts", "to": "question_upload_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "question_upload_route_post", "to": "lib_s3_uploadfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_homework_upload_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_homework_upload_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_homework_upload_route_ts", "to": "src_lib_s3_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_homework_upload_route_ts", "to": "lib_s3_uploadfile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_student_homework_upload_route_ts", "to": "homework_upload_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "homework_upload_route_post", "to": "lib_s3_uploadfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_export_users_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_export_users_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_export_users_route_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_export_users_route_ts", "to": "export_users_route_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lessons_lessonid_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lessons_lessonid_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lessons_lessonid_route_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lessons_lessonid_route_ts", "to": "lessonid_route_patch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lesson_files_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lesson_files_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lesson_files_route_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lesson_files_route_ts", "to": "src_lib_s3_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lesson_files_route_ts", "to": "lib_s3_uploadfile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lesson_files_route_ts", "to": "lib_s3_deletefile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lesson_files_route_ts", "to": "lesson_files_route_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lesson_files_route_ts", "to": "lesson_files_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lesson_files_route_ts", "to": "lesson_files_route_patch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_lesson_files_route_ts", "to": "lesson_files_route_delete", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lesson_files_route_requireadmin", "to": "lesson_files_route_post", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lesson_files_route_requireadmin", "to": "lesson_files_route_patch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lesson_files_route_requireadmin", "to": "lesson_files_route_delete", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lesson_files_route_post", "to": "lib_s3_uploadfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lesson_files_route_post", "to": "lib_s3_deletefile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lesson_files_route_delete", "to": "lib_s3_deletefile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_import_md_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_import_md_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_import_md_route_ts", "to": "src_lib_md_to_tiptap_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_import_md_route_ts", "to": "lib_md_to_tiptap_mdtotiptap", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_import_md_route_ts", "to": "import_md_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "import_md_route_post", "to": "lib_md_to_tiptap_mdtotiptap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_upload_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_upload_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_upload_route_ts", "to": "src_lib_s3_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_upload_route_ts", "to": "lib_s3_uploadfile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_admin_upload_route_ts", "to": "upload_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "upload_route_post", "to": "src_app_api_curator_upload_route_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "upload_route_post", "to": "lib_s3_uploadfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_curator_audio_upload_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_curator_audio_upload_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_curator_audio_upload_route_ts", "to": "src_lib_s3_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_curator_audio_upload_route_ts", "to": "lib_s3_uploadfile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_curator_upload_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_curator_upload_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_curator_upload_route_ts", "to": "src_lib_s3_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_curator_upload_route_ts", "to": "lib_s3_uploadfile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_route_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_route_ts", "to": "src_lib_email_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_route_ts", "to": "lib_email_sendquestioncreatedemail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_route_ts", "to": "questions_route_fileattachment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_route_ts", "to": "questions_route_builds3prefix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_route_ts", "to": "questions_route_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_route_ts", "to": "questions_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "questions_route_builds3prefix", "to": "questions_route_post", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_route_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_route_ts", "to": "id_route_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_messages_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_messages_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_messages_route_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_messages_route_ts", "to": "src_lib_email_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_messages_route_ts", "to": "lib_email_sendquestionfollowupemail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_messages_route_ts", "to": "lib_email_sendquestionreplyemail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_messages_route_ts", "to": "messages_route_fileattachment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_messages_route_ts", "to": "messages_route_builds3prefix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_messages_route_ts", "to": "messages_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "messages_route_builds3prefix", "to": "messages_route_post", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "messages_route_post", "to": "lib_email_sendquestionreplyemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_close_route_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_close_route_ts", "to": "lib_auth_auth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_close_route_ts", "to": "src_lib_prisma_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_api_questions_id_close_route_ts", "to": "close_route_patch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_maintenance_page_tsx", "to": "maintenance_page_maintenancepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_verify_email_page_tsx", "to": "verify_email_page_verifyemailpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_register_register_form_tsx", "to": "src_lib_auth_client_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_register_register_form_tsx", "to": "register_register_form_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_register_register_form_tsx", "to": "register_register_form_registerform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_register_register_form_tsx", "to": "src_app_auth_register_page_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_register_form_registerform", "to": "src_app_auth_register_page_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_register_page_tsx", "to": "src_lib_settings_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_register_page_tsx", "to": "lib_settings_getsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_register_page_tsx", "to": "register_page_registerpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_page_registerpage", "to": "lib_settings_getsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_forgot_password_page_tsx", "to": "src_lib_settings_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_forgot_password_page_tsx", "to": "lib_settings_getsetting", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_forgot_password_page_tsx", "to": "forgot_password_page_forgotpasswordpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "forgot_password_page_forgotpasswordpage", "to": "lib_settings_getsetting", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_reset_password_page_tsx", "to": "src_lib_settings_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_reset_password_page_tsx", "to": "lib_settings_getsetting", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_reset_password_page_tsx", "to": "reset_password_page_resetpasswordpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "reset_password_page_resetpasswordpage", "to": "lib_settings_getsetting", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_login_login_form_tsx", "to": "src_lib_auth_client_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_login_login_form_tsx", "to": "lib_auth_client_authclient", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_login_login_form_tsx", "to": "login_login_form_loginform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_login_login_form_tsx", "to": "src_app_auth_login_page_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_login_form_loginform", "to": "src_app_auth_login_page_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_login_page_tsx", "to": "src_lib_settings_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_login_page_tsx", "to": "lib_settings_getsetting", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_app_auth_login_page_tsx", "to": "login_page_loginpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_page_loginpage", "to": "lib_settings_getsetting", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "src_lib_utils_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "src_components_ui_button_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_alert_dialog_alertdialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_alert_dialog_alertdialogtrigger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_alert_dialog_alertdialogportal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_alert_dialog_alertdialogoverlay", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_alert_dialog_alertdialogcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_alert_dialog_alertdialogheader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_alert_dialog_alertdialogfooter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_alert_dialog_alertdialogmedia", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_alert_dialog_alertdialogtitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_alert_dialog_alertdialogdescription", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_alert_dialog_alertdialogaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_alert_dialog_tsx", "to": "ui_alert_dialog_alertdialogcancel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_alert_dialog_alertdialogoverlay", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_alert_dialog_alertdialogcontent", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_alert_dialog_alertdialogheader", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_alert_dialog_alertdialogfooter", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_alert_dialog_alertdialogmedia", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_alert_dialog_alertdialogtitle", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_alert_dialog_alertdialogdescription", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_alert_dialog_alertdialogaction", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_alert_dialog_alertdialogcancel", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_label_tsx", "to": "src_lib_utils_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_label_tsx", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_label_tsx", "to": "ui_label_label", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_label_tsx", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_label_tsx", "to": "src_components_admin_course_edit_form_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_label_label", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_label_label", "to": "src_components_admin_course_edit_form_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_label_label", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_sonner_tsx", "to": "ui_sonner_toaster", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "src_lib_utils_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "src_components_ui_button_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "ui_dialog_dialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "ui_dialog_dialogtrigger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "ui_dialog_dialogportal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "ui_dialog_dialogclose", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "ui_dialog_dialogoverlay", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "ui_dialog_dialogcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "ui_dialog_dialogheader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "ui_dialog_dialogfooter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "ui_dialog_dialogtitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "ui_dialog_dialogdescription", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_dialog_tsx", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dialog_dialog", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dialog_dialogtrigger", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dialog_dialogoverlay", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dialog_dialogcontent", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dialog_dialogcontent", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dialog_dialogheader", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dialog_dialogheader", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dialog_dialogfooter", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dialog_dialogtitle", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dialog_dialogtitle", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_dialog_dialogdescription", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_badge_tsx", "to": "src_lib_utils_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_badge_tsx", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_badge_tsx", "to": "ui_badge_badgevariants", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_badge_tsx", "to": "ui_badge_badge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_badge_tsx", "to": "src_components_admin_users_table_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_badge_badgevariants", "to": "ui_badge_badge", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_badge_badge", "to": "src_components_admin_users_table_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_badge_badge", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_button_tsx", "to": "src_lib_utils_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_button_tsx", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_button_tsx", "to": "ui_button_buttonvariants", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_button_tsx", "to": "ui_button_button", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_button_tsx", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_button_tsx", "to": "src_components_admin_category_row_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_button_tsx", "to": "src_components_admin_course_edit_form_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_button_tsx", "to": "src_components_admin_enrollment_manager_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_button_buttonvariants", "to": "ui_button_button", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_button_button", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_button_button", "to": "src_components_admin_category_row_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_button_button", "to": "src_components_admin_course_edit_form_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_button_button", "to": "src_components_admin_enrollment_manager_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_button_button", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_select_tsx", "to": "src_lib_utils_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_select_tsx", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_select_tsx", "to": "ui_select_selectgroup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_select_tsx", "to": "ui_select_selectvalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_select_tsx", "to": "ui_select_selecttrigger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_select_tsx", "to": "ui_select_selectcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_select_tsx", "to": "ui_select_selectlabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_select_tsx", "to": "ui_select_selectitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_select_tsx", "to": "ui_select_selectseparator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_select_tsx", "to": "ui_select_selectscrollupbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_select_tsx", "to": "ui_select_selectscrolldownbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_select_selectgroup", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_select_selectvalue", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_select_selecttrigger", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_select_selectcontent", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_select_selectlabel", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_select_selectitem", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_select_selectseparator", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_select_selectscrollupbutton", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_select_selectscrolldownbutton", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_textarea_tsx", "to": "src_lib_utils_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_textarea_tsx", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_textarea_tsx", "to": "ui_textarea_textarea", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_textarea_tsx", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_textarea_tsx", "to": "src_components_admin_course_edit_form_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_textarea_textarea", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_textarea_textarea", "to": "src_components_admin_course_edit_form_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_textarea_textarea", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_input_tsx", "to": "src_lib_utils_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_input_tsx", "to": "lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_input_tsx", "to": "ui_input_input", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_input_tsx", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_input_tsx", "to": "src_components_admin_category_row_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_input_tsx", "to": "src_components_admin_course_edit_form_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_ui_input_tsx", "to": "src_components_admin_enrollment_manager_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_input_input", "to": "src_components_admin_create_course_dialog_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_input_input", "to": "src_components_admin_category_row_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_input_input", "to": "src_components_admin_course_edit_form_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_input_input", "to": "src_components_admin_enrollment_manager_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ui_input_input", "to": "lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_layout_logout_button_tsx", "to": "src_lib_auth_client_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_layout_logout_button_tsx", "to": "layout_logout_button_logoutbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_layout_logout_button_tsx", "to": "src_components_admin_admin_shell_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_logout_button_logoutbutton", "to": "src_components_admin_admin_shell_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_course_sidebar_tsx", "to": "student_course_sidebar_lesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_course_sidebar_tsx", "to": "student_course_sidebar_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_course_sidebar_tsx", "to": "student_course_sidebar_course", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_course_sidebar_tsx", "to": "student_course_sidebar_coursesidebar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_quiz_section_tsx", "to": "src_lib_actions_student_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_quiz_section_tsx", "to": "actions_student_actions_submitquizattempt", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_quiz_section_tsx", "to": "student_quiz_section_question", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_quiz_section_tsx", "to": "student_quiz_section_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_quiz_section_tsx", "to": "student_quiz_section_inputstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_quiz_section_tsx", "to": "student_quiz_section_quizsection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_homework_section_tsx", "to": "src_lib_actions_student_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_homework_section_tsx", "to": "actions_student_actions_submithomework", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_homework_section_tsx", "to": "src_components_curator_audio_recorder_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_homework_section_tsx", "to": "curator_audio_recorder_audiorecorder", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_homework_section_tsx", "to": "student_homework_section_hwfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_homework_section_tsx", "to": "student_homework_section_feedback", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_homework_section_tsx", "to": "student_homework_section_submission", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_homework_section_tsx", "to": "student_homework_section_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_homework_section_tsx", "to": "student_homework_section_formatsize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_homework_section_tsx", "to": "student_homework_section_homeworksection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_lesson_complete_button_tsx", "to": "src_lib_actions_student_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_lesson_complete_button_tsx", "to": "actions_student_actions_togglelessonprogress", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_lesson_complete_button_tsx", "to": "student_lesson_complete_button_lessoncompletebutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_lesson_content_tsx", "to": "student_lesson_content_lessoncontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_lesson_comments_tsx", "to": "src_lib_actions_student_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_lesson_comments_tsx", "to": "actions_student_actions_addcomment", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_lesson_comments_tsx", "to": "actions_student_actions_deletecomment", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_lesson_comments_tsx", "to": "student_lesson_comments_reply", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_lesson_comments_tsx", "to": "student_lesson_comments_comment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_lesson_comments_tsx", "to": "student_lesson_comments_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_lesson_comments_tsx", "to": "student_lesson_comments_formatdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_student_lesson_comments_tsx", "to": "student_lesson_comments_lessoncomments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_modules_tsx", "to": "src_lib_actions_course_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_modules_tsx", "to": "actions_course_actions_createmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_modules_tsx", "to": "actions_course_actions_deletemodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_modules_tsx", "to": "actions_course_actions_updatemodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_modules_tsx", "to": "actions_course_actions_reordermodules", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_modules_tsx", "to": "admin_sortable_modules_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_modules_tsx", "to": "admin_sortable_modules_sortablemodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_modules_tsx", "to": "admin_sortable_modules_sortablemodules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_stop_impersonate_banner_tsx", "to": "src_lib_auth_client_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_stop_impersonate_banner_tsx", "to": "lib_auth_client_authclient", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_stop_impersonate_banner_tsx", "to": "admin_stop_impersonate_banner_stopimpersonatebanner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_csv_exporter_tsx", "to": "admin_csv_exporter_course", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_csv_exporter_tsx", "to": "admin_csv_exporter_inputstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_csv_exporter_tsx", "to": "admin_csv_exporter_focushandlers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_csv_exporter_tsx", "to": "admin_csv_exporter_csvexporter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_users_search_tsx", "to": "admin_users_search_inputstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_users_search_tsx", "to": "admin_users_search_userssearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_quick_enroll_modal_tsx", "to": "admin_quick_enroll_modal_course", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_quick_enroll_modal_tsx", "to": "admin_quick_enroll_modal_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_quick_enroll_modal_tsx", "to": "admin_quick_enroll_modal_quickenrollbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_quick_enroll_modal_tsx", "to": "src_components_admin_users_table_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_quick_enroll_modal_quickenrollbutton", "to": "src_components_admin_users_table_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_settings_form_tsx", "to": "src_lib_settings_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_settings_form_tsx", "to": "lib_settings_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_settings_form_tsx", "to": "admin_settings_form_inputstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_settings_form_tsx", "to": "admin_settings_form_focushandlers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_settings_form_tsx", "to": "admin_settings_form_section", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_settings_form_tsx", "to": "admin_settings_form_field", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_settings_form_tsx", "to": "admin_settings_form_toggle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_settings_form_tsx", "to": "admin_settings_form_selectfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_settings_form_tsx", "to": "admin_settings_form_settingsform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_users_table_tsx", "to": "admin_users_table_enrollment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_users_table_tsx", "to": "admin_users_table_userrow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_users_table_tsx", "to": "admin_users_table_rolelabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_users_table_tsx", "to": "admin_users_table_rolevariant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_users_table_tsx", "to": "admin_users_table_userpopup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_users_table_tsx", "to": "admin_users_table_impersonatebutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_users_table_tsx", "to": "admin_users_table_userstable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_create_user_form_tsx", "to": "admin_create_user_form_roles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_create_user_form_tsx", "to": "admin_create_user_form_generatepassword", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_create_user_form_tsx", "to": "admin_create_user_form_inputstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_create_user_form_tsx", "to": "admin_create_user_form_focushandlers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_create_user_form_tsx", "to": "admin_create_user_form_field", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_create_user_form_tsx", "to": "admin_create_user_form_toggle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_create_user_form_tsx", "to": "admin_create_user_form_createuserform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_admin_nav_tsx", "to": "admin_admin_nav_links", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_admin_nav_tsx", "to": "admin_admin_nav_adminnav", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_admin_nav_tsx", "to": "src_components_admin_admin_shell_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_nav_adminnav", "to": "src_components_admin_admin_shell_tsx", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_create_course_dialog_tsx", "to": "admin_create_course_dialog_createcoursedialog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_lesson_files_manager_tsx", "to": "src_components_shared_file_format_badge_tsx", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_lesson_files_manager_tsx", "to": "shared_file_format_badge_fileformatbadge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_lesson_files_manager_tsx", "to": "admin_lesson_files_manager_lessonfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_lesson_files_manager_tsx", "to": "admin_lesson_files_manager_lessonfilesmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_lessons_tsx", "to": "src_lib_actions_module_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_lessons_tsx", "to": "actions_module_actions_createlesson", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_lessons_tsx", "to": "actions_module_actions_deletelesson", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_lessons_tsx", "to": "actions_module_actions_updatelesson", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_lessons_tsx", "to": "actions_module_actions_reorderlessons", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_lessons_tsx", "to": "actions_module_actions_togglelessonpublished", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_lessons_tsx", "to": "actions_module_actions_movelessontomodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_lessons_tsx", "to": "admin_sortable_lessons_lesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_lessons_tsx", "to": "admin_sortable_lessons_othermodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_lessons_tsx", "to": "admin_sortable_lessons_sortablelesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_sortable_lessons_tsx", "to": "admin_sortable_lessons_sortablelessons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_contact_editor_tsx", "to": "admin_user_contact_editor_inputstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_contact_editor_tsx", "to": "admin_user_contact_editor_focushandlers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_contact_editor_tsx", "to": "admin_user_contact_editor_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_contact_editor_tsx", "to": "admin_user_contact_editor_usercontacteditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_category_row_tsx", "to": "admin_category_row_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_category_row_tsx", "to": "admin_category_row_categoryrow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_enrollment_manager_tsx", "to": "src_lib_actions_user_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_enrollment_manager_tsx", "to": "actions_user_actions_bulkgrantaccess", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_enrollment_manager_tsx", "to": "actions_user_actions_revokeuseraccess", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_enrollment_manager_tsx", "to": "admin_user_enrollment_manager_course", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_enrollment_manager_tsx", "to": "admin_user_enrollment_manager_enrollment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_enrollment_manager_tsx", "to": "admin_user_enrollment_manager_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_enrollment_manager_tsx", "to": "admin_user_enrollment_manager_userenrollmentmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_homework_editor_tsx", "to": "src_lib_actions_homework_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_homework_editor_tsx", "to": "actions_homework_actions_savehomework", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_homework_editor_tsx", "to": "actions_homework_actions_deletehomework", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_homework_editor_tsx", "to": "admin_homework_editor_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_homework_editor_tsx", "to": "admin_homework_editor_homeworkeditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_course_tree_tsx", "to": "admin_course_tree_lesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_course_tree_tsx", "to": "admin_course_tree_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_course_tree_tsx", "to": "admin_course_tree_coursetree", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_csv_importer_tsx", "to": "admin_csv_importer_course", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_csv_importer_tsx", "to": "admin_csv_importer_inputstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_csv_importer_tsx", "to": "admin_csv_importer_focushandlers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_csv_importer_tsx", "to": "admin_csv_importer_toggle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_csv_importer_tsx", "to": "admin_csv_importer_stepindicator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_csv_importer_tsx", "to": "admin_csv_importer_csvimporter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_course_edit_form_tsx", "to": "admin_course_edit_form_course", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_course_edit_form_tsx", "to": "admin_course_edit_form_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_course_edit_form_tsx", "to": "admin_course_edit_form_courseeditform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_comments_table_tsx", "to": "admin_comments_table_comment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_comments_table_tsx", "to": "admin_comments_table_inputstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_comments_table_tsx", "to": "admin_comments_table_commentstable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_homework_filters_tsx", "to": "admin_homework_filters_inputstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_homework_filters_tsx", "to": "admin_homework_filters_course", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_homework_filters_tsx", "to": "admin_homework_filters_homeworkfilters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_quiz_editor_tsx", "to": "src_lib_actions_quiz_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_quiz_editor_tsx", "to": "actions_quiz_actions_savequiz", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_quiz_editor_tsx", "to": "actions_quiz_actions_deletequiz", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_quiz_editor_tsx", "to": "admin_quiz_editor_qtype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_quiz_editor_tsx", "to": "admin_quiz_editor_question", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_quiz_editor_tsx", "to": "admin_quiz_editor_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_quiz_editor_tsx", "to": "admin_quiz_editor_type_labels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_quiz_editor_tsx", "to": "admin_quiz_editor_quizeditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_balance_block_tsx", "to": "admin_user_balance_block_transaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_balance_block_tsx", "to": "admin_user_balance_block_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_balance_block_tsx", "to": "admin_user_balance_block_inputstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_balance_block_tsx", "to": "admin_user_balance_block_focushandlers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_balance_block_tsx", "to": "admin_user_balance_block_formatamount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_user_balance_block_tsx", "to": "admin_user_balance_block_userbalanceblock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_balance_block_formatamount", "to": "admin_user_balance_block_userbalanceblock", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_lesson_editor_tsx", "to": "admin_lesson_editor_lessondata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_lesson_editor_tsx", "to": "admin_lesson_editor_siblinglesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_lesson_editor_tsx", "to": "admin_lesson_editor_lessoneditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_lesson_editor_tsx", "to": "admin_lesson_editor_sep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_lesson_editor_tsx", "to": "admin_lesson_editor_toolbtn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_enrollment_manager_tsx", "to": "src_lib_actions_course_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_enrollment_manager_tsx", "to": "actions_course_actions_grantaccess", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_enrollment_manager_tsx", "to": "actions_course_actions_revokeaccess", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_enrollment_manager_tsx", "to": "admin_enrollment_manager_student", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_enrollment_manager_tsx", "to": "admin_enrollment_manager_enrollment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_enrollment_manager_tsx", "to": "admin_enrollment_manager_logentry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_enrollment_manager_tsx", "to": "admin_enrollment_manager_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_enrollment_manager_tsx", "to": "admin_enrollment_manager_enrollmentmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_admin_admin_shell_tsx", "to": "admin_admin_shell_adminshell", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_curator_content_viewer_tsx", "to": "curator_content_viewer_contentviewer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_curator_audio_recorder_tsx", "to": "curator_audio_recorder_audiorecorderprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_curator_audio_recorder_tsx", "to": "curator_audio_recorder_audiorecorder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_shared_file_format_badge_tsx", "to": "shared_file_format_badge_format_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_shared_file_format_badge_tsx", "to": "shared_file_format_badge_getfileformatinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_shared_file_format_badge_tsx", "to": "shared_file_format_badge_fileformatbadge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "shared_file_format_badge_getfileformatinfo", "to": "shared_file_format_badge_fileformatbadge", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionsplitview_tsx", "to": "questions_questionsplitview_fileattachment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionsplitview_tsx", "to": "questions_questionsplitview_message", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionsplitview_tsx", "to": "questions_questionsplitview_questionsummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionsplitview_tsx", "to": "questions_questionsplitview_questiondetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionsplitview_tsx", "to": "questions_questionsplitview_formatdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionsplitview_tsx", "to": "questions_questionsplitview_formatfilesize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionsplitview_tsx", "to": "questions_questionsplitview_questionsplitview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionthread_tsx", "to": "questions_questionthread_fileattachment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionthread_tsx", "to": "questions_questionthread_message", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionthread_tsx", "to": "questions_questionthread_questionthreadprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionthread_tsx", "to": "questions_questionthread_formatdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionthread_tsx", "to": "questions_questionthread_formatfilesize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_questions_questionthread_tsx", "to": "questions_questionthread_questionthread", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_player_kinescope_player_tsx", "to": "player_kinescope_player_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_components_player_kinescope_player_tsx", "to": "player_kinescope_player_kinescopeplayer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_prisma_ts", "to": "lib_prisma_globalforprisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_prisma_ts", "to": "lib_prisma_createprismaclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_prisma_ts", "to": "src_lib_settings_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_prisma_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_prisma_ts", "to": "src_lib_actions_course_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_prisma_ts", "to": "src_lib_actions_quiz_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_prisma_ts", "to": "src_lib_actions_student_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_prisma_ts", "to": "src_lib_actions_lesson_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_prisma_ts", "to": "src_lib_actions_user_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_prisma_ts", "to": "src_lib_actions_module_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_prisma_ts", "to": "src_lib_actions_homework_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_s3_ts", "to": "lib_s3_s3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_s3_ts", "to": "lib_s3_getpublicurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_s3_ts", "to": "lib_s3_uploadfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_s3_ts", "to": "lib_s3_deletefile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_s3_getpublicurl", "to": "lib_s3_uploadfile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_settings_ts", "to": "lib_settings_settings_defaults", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_settings_ts", "to": "lib_settings_settingskey", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_settings_ts", "to": "lib_settings_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_settings_ts", "to": "lib_settings_getsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_settings_ts", "to": "lib_settings_getsetting", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_settings_ts", "to": "lib_settings_asbool", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_settings_ts", "to": "lib_settings_parsenotificationemails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_settings_ts", "to": "src_lib_email_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_settings_ts", "to": "src_lib_actions_student_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_settings_getsettings", "to": "src_lib_actions_student_actions_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_settings_getsettings", "to": "actions_student_actions_submithomework", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_settings_getsetting", "to": "src_lib_email_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_settings_getsetting", "to": "lib_email_getschoolname", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_settings_asbool", "to": "src_lib_actions_student_actions_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_settings_asbool", "to": "actions_student_actions_submithomework", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_settings_parsenotificationemails", "to": "src_lib_actions_student_actions_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_settings_parsenotificationemails", "to": "actions_student_actions_submithomework", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_md_to_tiptap_ts", "to": "lib_md_to_tiptap_mark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_md_to_tiptap_ts", "to": "lib_md_to_tiptap_tiptapnode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_md_to_tiptap_ts", "to": "lib_md_to_tiptap_mdastnode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_md_to_tiptap_ts", "to": "lib_md_to_tiptap_convertinline", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_md_to_tiptap_ts", "to": "lib_md_to_tiptap_convertblock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_md_to_tiptap_ts", "to": "lib_md_to_tiptap_mdtotiptap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_md_to_tiptap_convertinline", "to": "lib_md_to_tiptap_convertblock", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_md_to_tiptap_convertblock", "to": "lib_md_to_tiptap_mdtotiptap", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_getresend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_getschoolname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_base", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_btn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_quote", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_sendcourseaccessemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_sendhomeworksubmittedemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_sendfeedbackreceivedemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_sendwelcomeemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_sendtestemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_sendaccessemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_sendpasswordresetemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_sendquestioncreatedemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_sendquestionreplyemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_sendquestionfollowupemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "lib_email_sendhomeworkupdatedemail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "src_lib_auth_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "src_lib_actions_course_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_email_ts", "to": "src_lib_actions_student_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getresend", "to": "lib_email_sendcourseaccessemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getresend", "to": "lib_email_sendhomeworksubmittedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getresend", "to": "lib_email_sendfeedbackreceivedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getresend", "to": "lib_email_sendwelcomeemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getresend", "to": "lib_email_sendtestemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getresend", "to": "lib_email_sendaccessemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getresend", "to": "lib_email_sendpasswordresetemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getresend", "to": "lib_email_sendquestioncreatedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getresend", "to": "lib_email_sendquestionreplyemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getresend", "to": "lib_email_sendquestionfollowupemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getresend", "to": "lib_email_sendhomeworkupdatedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getschoolname", "to": "lib_email_sendcourseaccessemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getschoolname", "to": "lib_email_sendhomeworksubmittedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getschoolname", "to": "lib_email_sendfeedbackreceivedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getschoolname", "to": "lib_email_sendwelcomeemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getschoolname", "to": "lib_email_sendtestemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getschoolname", "to": "lib_email_sendaccessemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getschoolname", "to": "lib_email_sendpasswordresetemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getschoolname", "to": "lib_email_sendquestioncreatedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getschoolname", "to": "lib_email_sendquestionreplyemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getschoolname", "to": "lib_email_sendquestionfollowupemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_getschoolname", "to": "lib_email_sendhomeworkupdatedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_base", "to": "lib_email_sendcourseaccessemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_base", "to": "lib_email_sendhomeworksubmittedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_base", "to": "lib_email_sendfeedbackreceivedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_base", "to": "lib_email_sendwelcomeemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_base", "to": "lib_email_sendtestemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_base", "to": "lib_email_sendaccessemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_base", "to": "lib_email_sendpasswordresetemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_base", "to": "lib_email_sendquestioncreatedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_base", "to": "lib_email_sendquestionreplyemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_base", "to": "lib_email_sendquestionfollowupemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_base", "to": "lib_email_sendhomeworkupdatedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_btn", "to": "lib_email_sendcourseaccessemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_btn", "to": "lib_email_sendhomeworksubmittedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_btn", "to": "lib_email_sendfeedbackreceivedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_btn", "to": "lib_email_sendwelcomeemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_btn", "to": "lib_email_sendtestemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_btn", "to": "lib_email_sendaccessemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_btn", "to": "lib_email_sendpasswordresetemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_btn", "to": "lib_email_sendquestioncreatedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_btn", "to": "lib_email_sendquestionreplyemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_btn", "to": "lib_email_sendquestionfollowupemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_btn", "to": "lib_email_sendhomeworkupdatedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_quote", "to": "lib_email_sendfeedbackreceivedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_quote", "to": "lib_email_sendaccessemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_quote", "to": "lib_email_sendquestioncreatedemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_quote", "to": "lib_email_sendquestionreplyemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_quote", "to": "lib_email_sendquestionfollowupemail", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_sendcourseaccessemail", "to": "src_lib_actions_course_actions_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_sendcourseaccessemail", "to": "actions_course_actions_grantaccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_sendhomeworksubmittedemail", "to": "src_lib_actions_student_actions_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_sendwelcomeemail", "to": "src_lib_auth_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_sendpasswordresetemail", "to": "src_lib_auth_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_utils_ts", "to": "lib_utils_cn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_auth_ts", "to": "lib_auth_auth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_auth_ts", "to": "lib_auth_session", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_auth_ts", "to": "lib_auth_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_auth_ts", "to": "src_lib_actions_course_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_auth_ts", "to": "src_lib_actions_quiz_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_auth_ts", "to": "src_lib_actions_student_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_auth_ts", "to": "src_lib_actions_lesson_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_auth_ts", "to": "src_lib_actions_user_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_auth_ts", "to": "src_lib_actions_module_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_auth_ts", "to": "src_lib_actions_homework_actions_ts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_auth_auth", "to": "src_lib_actions_course_actions_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_auth_auth", "to": "src_lib_actions_quiz_actions_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_auth_auth", "to": "src_lib_actions_student_actions_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_auth_auth", "to": "src_lib_actions_lesson_actions_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_auth_auth", "to": "src_lib_actions_user_actions_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_auth_auth", "to": "src_lib_actions_module_actions_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_auth_auth", "to": "src_lib_actions_homework_actions_ts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_auth_client_ts", "to": "lib_auth_client_authclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_course_actions_ts", "to": "actions_course_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_course_actions_ts", "to": "actions_course_actions_createmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_course_actions_ts", "to": "actions_course_actions_updatemodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_course_actions_ts", "to": "actions_course_actions_deletemodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_course_actions_ts", "to": "actions_course_actions_reordermodules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_course_actions_ts", "to": "actions_course_actions_grantaccess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_course_actions_ts", "to": "actions_course_actions_revokeaccess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_course_actions_requireadmin", "to": "actions_course_actions_createmodule", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_course_actions_requireadmin", "to": "actions_course_actions_updatemodule", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_course_actions_requireadmin", "to": "actions_course_actions_deletemodule", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_course_actions_requireadmin", "to": "actions_course_actions_reordermodules", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_course_actions_requireadmin", "to": "actions_course_actions_grantaccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_course_actions_requireadmin", "to": "actions_course_actions_revokeaccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_quiz_actions_ts", "to": "actions_quiz_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_quiz_actions_ts", "to": "actions_quiz_actions_savequiz", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_quiz_actions_ts", "to": "actions_quiz_actions_deletequiz", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_quiz_actions_requireadmin", "to": "actions_quiz_actions_savequiz", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_quiz_actions_requireadmin", "to": "actions_quiz_actions_deletequiz", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_student_actions_ts", "to": "actions_student_actions_togglelessonprogress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_student_actions_ts", "to": "actions_student_actions_homeworkfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_student_actions_ts", "to": "actions_student_actions_submithomework", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_student_actions_ts", "to": "actions_student_actions_submitquizattempt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_student_actions_ts", "to": "actions_student_actions_addcomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_student_actions_ts", "to": "actions_student_actions_deletecomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_lesson_actions_ts", "to": "actions_lesson_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_lesson_actions_ts", "to": "actions_lesson_actions_savelesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_lesson_actions_requireadmin", "to": "actions_lesson_actions_savelesson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_user_actions_ts", "to": "actions_user_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_user_actions_ts", "to": "actions_user_actions_bulkgrantaccess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_user_actions_ts", "to": "actions_user_actions_revokeuseraccess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_user_actions_requireadmin", "to": "actions_user_actions_bulkgrantaccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_user_actions_requireadmin", "to": "actions_user_actions_revokeuseraccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_module_actions_ts", "to": "actions_module_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_module_actions_ts", "to": "actions_module_actions_createlesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_module_actions_ts", "to": "actions_module_actions_updatelesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_module_actions_ts", "to": "actions_module_actions_deletelesson", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_module_actions_ts", "to": "actions_module_actions_reorderlessons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_module_actions_ts", "to": "actions_module_actions_togglelessonpublished", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_module_actions_ts", "to": "actions_module_actions_movelessontomodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_module_actions_requireadmin", "to": "actions_module_actions_createlesson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_module_actions_requireadmin", "to": "actions_module_actions_updatelesson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_module_actions_requireadmin", "to": "actions_module_actions_deletelesson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_module_actions_requireadmin", "to": "actions_module_actions_reorderlessons", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_module_actions_requireadmin", "to": "actions_module_actions_togglelessonpublished", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_module_actions_requireadmin", "to": "actions_module_actions_movelessontomodule", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_homework_actions_ts", "to": "actions_homework_actions_requireadmin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_homework_actions_ts", "to": "actions_homework_actions_savehomework", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_lib_actions_homework_actions_ts", "to": "actions_homework_actions_deletehomework", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_homework_actions_requireadmin", "to": "actions_homework_actions_savehomework", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "actions_homework_actions_requireadmin", "to": "actions_homework_actions_deletehomework", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "roadmap_md", "to": "claude_md", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "technical_md", "to": "prisma_schema", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "middleware_ts", "to": "lib_auth_ts", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_prisma_ts", "to": "student_lesson_actions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_prisma_ts", "to": "student_comment_actions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_ts", "to": "student_homework_actions", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_email_ts", "to": "api_questions_route", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lesson_page_lessonpage", "to": "prisma_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lesson_page_lessonpage", "to": "auth_lib", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "student_dashboard_studentdashboard", "to": "prisma_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_courses_actions_createcourse", "to": "prisma_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_course_detail_coursedetailpage", "to": "prisma_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_module_actions_createmodule", "to": "prisma_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_lesson_actions_createlesson", "to": "prisma_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_dashboard_admindashboard", "to": "prisma_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "import_actions_applyimport", "to": "prisma_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_users_actions_createuser", "to": "prisma_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_detail_userpage", "to": "prisma_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "api_questions_post", "to": "prisma_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "curator_homework_actions_submitfeedback", "to": "prisma_client", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lesson_files_manager_lessonfilesmanager", "to": "file_format_badge_fileformatbadge", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sortable_lessons_sortablelessons", "to": "module_actions_createlesson", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_enrollment_manager_userenrollmentmanager", "to": "user_actions_bulkgrantaccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "homework_editor_homeworkeditor", "to": "homework_actions_savehomework", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "quiz_editor_quizeditor", "to": "quiz_actions_savequiz", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lesson_editor_lessoneditor", "to": "md_to_tiptap_mdtotiptap", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "enrollment_manager_enrollmentmanager", "to": "course_actions_grantaccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "audio_recorder_audiorecorder", "to": "homework_section_homeworksection", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "homework_section_homeworksection", "to": "student_actions_submithomework", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prisma_prisma", "to": "course_actions_grantaccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settings_getsettings", "to": "email_senders", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_senders", "to": "course_actions_grantaccess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_senders", "to": "student_actions_submithomework", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "email_senders", "to": "auth_auth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Admin Categories & UI Library", "count": 72}, {"cid": 1, "color": "#F28E2B", "label": "Auth Flow & App Settings", "count": 52}, {"cid": 2, "color": "#E15759", "label": "Markdown\u2192TipTap Import", "count": 43}, {"cid": 3, "color": "#76B7B2", "label": "Email Notifications & Q&A API", "count": 37}, {"cid": 4, "color": "#59A14F", "label": "Student Lesson Player", "count": 35}, {"cid": 5, "color": "#EDC948", "label": "Auth/Session & Student Profile", "count": 34}, {"cid": 6, "color": "#B07AA1", "label": "Lesson Editor & Quiz Tools", "count": 33}, {"cid": 7, "color": "#FF9DA7", "label": "Admin User Detail (Balance/Contact)", "count": 32}, {"cid": 8, "color": "#9C755F", "label": "Next.js Config", "count": 28}, {"cid": 9, "color": "#BAB0AC", "label": "Course Tree & Module Sorting", "count": 26}, {"cid": 10, "color": "#4E79A7", "label": "CSV Import/Export", "count": 25}, {"cid": 11, "color": "#F28E2B", "label": "Curator Homework Review", "count": 25}, {"cid": 12, "color": "#E15759", "label": "Components Manifest", "count": 22}, {"cid": 13, "color": "#76B7B2", "label": "Prisma Client & Dashboards", "count": 22}, {"cid": 14, "color": "#59A14F", "label": "Admin Users List & Enroll", "count": 22}, {"cid": 15, "color": "#EDC948", "label": "TSConfig", "count": 20}, {"cid": 16, "color": "#B07AA1", "label": "S3 Upload Routes", "count": 18}, {"cid": 17, "color": "#FF9DA7", "label": "Module Page & Lesson Sorting", "count": 16}, {"cid": 18, "color": "#9C755F", "label": "Cross-cutting Course Actions", "count": 16}, {"cid": 19, "color": "#BAB0AC", "label": "Create-User Form", "count": 12}, {"cid": 20, "color": "#4E79A7", "label": "Load Testing", "count": 10}, {"cid": 21, "color": "#F28E2B", "label": "Admin Comments Moderation", "count": 10}, {"cid": 22, "color": "#E15759", "label": "Admin Questions Split View", "count": 10}, {"cid": 23, "color": "#76B7B2", "label": "Bridge: Shared Libs (auth/prisma/email)", "count": 9}, {"cid": 24, "color": "#59A14F", "label": "Module Actions Standalone", "count": 8}, {"cid": 25, "color": "#EDC948", "label": "Student Course Sidebar Layout", "count": 8}, {"cid": 26, "color": "#B07AA1", "label": "Question Thread UI", "count": 7}, {"cid": 27, "color": "#FF9DA7", "label": "Admin/Curator Dashboards", "count": 5}, {"cid": 28, "color": "#9C755F", "label": "Homework Filters", "count": 4}, {"cid": 29, "color": "#BAB0AC", "label": "Student New Question Page", "count": 4}, {"cid": 30, "color": "#4E79A7", "label": "Prisma Seed", "count": 4}, {"cid": 31, "color": "#F28E2B", "label": "Admin Homework Actions", "count": 4}, {"cid": 32, "color": "#E15759", "label": "Middleware", "count": 4}, {"cid": 33, "color": "#76B7B2", "label": "Email\u2192Homework\u2192Questions Bridge", "count": 3}, {"cid": 34, "color": "#59A14F", "label": "Tech Docs & Prisma Schema", "count": 3}, {"cid": 35, "color": "#EDC948", "label": "Lesson Actions Lib", "count": 3}, {"cid": 36, "color": "#B07AA1", "label": "Student Comment Actions", "count": 3}, {"cid": 37, "color": "#FF9DA7", "label": "Lesson Actions + Prisma Bridge", "count": 3}, {"cid": 38, "color": "#9C755F", "label": "Project Docs (CLAUDE/ROADMAP)", "count": 2}, {"cid": 39, "color": "#BAB0AC", "label": "Homework Editor\u2194Actions Pair", "count": 2}, {"cid": 40, "color": "#4E79A7", "label": "File-format Badge & Files Manager", "count": 2}, {"cid": 41, "color": "#F28E2B", "label": "Auth\u2194Middleware Pair", "count": 2}, {"cid": 42, "color": "#E15759", "label": "ESLint Config", "count": 2}, {"cid": 43, "color": "#76B7B2", "label": "PostCSS Config", "count": 2}, {"cid": 44, "color": "#59A14F", "label": "Lesson Editor\u2194md-to-tiptap", "count": 2}, {"cid": 45, "color": "#EDC948", "label": "Sortable Lessons\u2194Module Actions", "count": 2}, {"cid": 46, "color": "#B07AA1", "label": "Quiz Editor\u2194Quiz Actions", "count": 2}, {"cid": 47, "color": "#FF9DA7", "label": "Backup Script", "count": 2}, {"cid": 48, "color": "#9C755F", "label": "Verify Email Page", "count": 2}, {"cid": 49, "color": "#BAB0AC", "label": "Maintenance Page", "count": 2}, {"cid": 50, "color": "#4E79A7", "label": "Sonner Toast", "count": 2}, {"cid": 51, "color": "#F28E2B", "label": "User Enrollment Pair", "count": 2}, {"cid": 52, "color": "#E15759", "label": "Community 52", "count": 1}, {"cid": 53, "color": "#76B7B2", "label": "Community 53", "count": 1}, {"cid": 54, "color": "#59A14F", "label": "Community 54", "count": 1}, {"cid": 55, "color": "#EDC948", "label": "Community 55", "count": 1}, {"cid": 56, "color": "#B07AA1", "label": "Community 56", "count": 1}, {"cid": 57, "color": "#FF9DA7", "label": "Community 57", "count": 1}, {"cid": 58, "color": "#9C755F", "label": "Community 58", "count": 1}, {"cid": 59, "color": "#BAB0AC", "label": "Community 59", "count": 1}, {"cid": 60, "color": "#4E79A7", "label": "Community 60", "count": 1}, {"cid": 61, "color": "#F28E2B", "label": "Community 61", "count": 1}, {"cid": 62, "color": "#E15759", "label": "Community 62", "count": 1}, {"cid": 63, "color": "#76B7B2", "label": "Community 63", "count": 1}, {"cid": 64, "color": "#59A14F", "label": "Community 64", "count": 1}, {"cid": 65, "color": "#EDC948", "label": "Community 65", "count": 1}, {"cid": 66, "color": "#B07AA1", "label": "Community 66", "count": 1}, {"cid": 67, "color": "#FF9DA7", "label": "Community 67", "count": 1}, {"cid": 68, "color": "#9C755F", "label": "Community 68", "count": 1}, {"cid": 69, "color": "#BAB0AC", "label": "Community 69", "count": 1}, {"cid": 70, "color": "#4E79A7", "label": "Community 70", "count": 1}, {"cid": 71, "color": "#F28E2B", "label": "Community 71", "count": 1}, {"cid": 72, "color": "#E15759", "label": "Community 72", "count": 1}, {"cid": 73, "color": "#76B7B2", "label": "Community 73", "count": 1}, {"cid": 74, "color": "#59A14F", "label": "Community 74", "count": 1}, {"cid": 75, "color": "#EDC948", "label": "Community 75", "count": 1}, {"cid": 76, "color": "#B07AA1", "label": "Community 76", "count": 1}, {"cid": 77, "color": "#FF9DA7", "label": "Community 77", "count": 1}, {"cid": 78, "color": "#9C755F", "label": "Community 78", "count": 1}];
|
|
|
|
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
|
|
function esc(s) {
|
|
return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,''');
|
|
}
|
|
|
|
// Build vis datasets
|
|
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
|
|
id: n.id, label: n.label, color: n.color, size: n.size,
|
|
font: n.font, title: n.title,
|
|
_community: n.community, _community_name: n.community_name,
|
|
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
|
|
})));
|
|
|
|
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
|
|
id: i, from: e.from, to: e.to,
|
|
label: '',
|
|
title: e.title,
|
|
dashes: e.dashes,
|
|
width: e.width,
|
|
color: e.color,
|
|
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
|
|
})));
|
|
|
|
const container = document.getElementById('graph');
|
|
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
|
|
physics: {
|
|
enabled: true,
|
|
solver: 'forceAtlas2Based',
|
|
forceAtlas2Based: {
|
|
gravitationalConstant: -60,
|
|
centralGravity: 0.005,
|
|
springLength: 120,
|
|
springConstant: 0.08,
|
|
damping: 0.4,
|
|
avoidOverlap: 0.8,
|
|
},
|
|
stabilization: { iterations: 200, fit: true },
|
|
},
|
|
interaction: {
|
|
hover: true,
|
|
tooltipDelay: 100,
|
|
hideEdgesOnDrag: true,
|
|
navigationButtons: false,
|
|
keyboard: false,
|
|
},
|
|
nodes: { shape: 'dot', borderWidth: 1.5 },
|
|
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
|
|
});
|
|
|
|
network.once('stabilizationIterationsDone', () => {
|
|
network.setOptions({ physics: { enabled: false } });
|
|
});
|
|
|
|
function showInfo(nodeId) {
|
|
const n = nodesDS.get(nodeId);
|
|
if (!n) return;
|
|
const neighborIds = network.getConnectedNodes(nodeId);
|
|
const neighborItems = neighborIds.map(nid => {
|
|
const nb = nodesDS.get(nid);
|
|
const color = nb ? nb.color.background : '#555';
|
|
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" onclick="focusNode(${JSON.stringify(nid)})">${esc(nb ? nb.label : nid)}</span>`;
|
|
}).join('');
|
|
document.getElementById('info-content').innerHTML = `
|
|
<div class="field"><b>${esc(n.label)}</b></div>
|
|
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
|
|
<div class="field">Community: ${esc(n._community_name)}</div>
|
|
<div class="field">Source: ${esc(n._source_file || '-')}</div>
|
|
<div class="field">Degree: ${n._degree}</div>
|
|
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
|
|
`;
|
|
}
|
|
|
|
function focusNode(nodeId) {
|
|
network.focus(nodeId, { scale: 1.4, animation: true });
|
|
network.selectNodes([nodeId]);
|
|
showInfo(nodeId);
|
|
}
|
|
|
|
// Track hovered node — hover detection is more reliable than click params
|
|
let hoveredNodeId = null;
|
|
network.on('hoverNode', params => {
|
|
hoveredNodeId = params.node;
|
|
container.style.cursor = 'pointer';
|
|
});
|
|
network.on('blurNode', () => {
|
|
hoveredNodeId = null;
|
|
container.style.cursor = 'default';
|
|
});
|
|
container.addEventListener('click', () => {
|
|
if (hoveredNodeId !== null) {
|
|
showInfo(hoveredNodeId);
|
|
network.selectNodes([hoveredNodeId]);
|
|
}
|
|
});
|
|
network.on('click', params => {
|
|
if (params.nodes.length > 0) {
|
|
showInfo(params.nodes[0]);
|
|
} else if (hoveredNodeId === null) {
|
|
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
|
|
}
|
|
});
|
|
|
|
const searchInput = document.getElementById('search');
|
|
const searchResults = document.getElementById('search-results');
|
|
searchInput.addEventListener('input', () => {
|
|
const q = searchInput.value.toLowerCase().trim();
|
|
searchResults.innerHTML = '';
|
|
if (!q) { searchResults.style.display = 'none'; return; }
|
|
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
|
|
if (!matches.length) { searchResults.style.display = 'none'; return; }
|
|
searchResults.style.display = 'block';
|
|
matches.forEach(n => {
|
|
const el = document.createElement('div');
|
|
el.className = 'search-item';
|
|
el.textContent = n.label;
|
|
el.style.borderLeft = `3px solid ${n.color.background}`;
|
|
el.style.paddingLeft = '8px';
|
|
el.onclick = () => {
|
|
network.focus(n.id, { scale: 1.5, animation: true });
|
|
network.selectNodes([n.id]);
|
|
showInfo(n.id);
|
|
searchResults.style.display = 'none';
|
|
searchInput.value = '';
|
|
};
|
|
searchResults.appendChild(el);
|
|
});
|
|
});
|
|
document.addEventListener('click', e => {
|
|
if (!searchResults.contains(e.target) && e.target !== searchInput)
|
|
searchResults.style.display = 'none';
|
|
});
|
|
|
|
const hiddenCommunities = new Set();
|
|
|
|
const selectAllCb = document.getElementById('select-all-cb');
|
|
|
|
function updateSelectAllState() {
|
|
const total = LEGEND.length;
|
|
const hidden = hiddenCommunities.size;
|
|
selectAllCb.checked = hidden === 0;
|
|
selectAllCb.indeterminate = hidden > 0 && hidden < total;
|
|
}
|
|
|
|
function toggleAllCommunities(hide) {
|
|
document.querySelectorAll('.legend-item').forEach(item => {
|
|
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
|
|
});
|
|
document.querySelectorAll('.legend-cb').forEach(cb => {
|
|
cb.checked = !hide;
|
|
});
|
|
LEGEND.forEach(c => {
|
|
if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
|
|
});
|
|
const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
}
|
|
|
|
const legendEl = document.getElementById('legend');
|
|
LEGEND.forEach(c => {
|
|
const item = document.createElement('div');
|
|
item.className = 'legend-item';
|
|
const cb = document.createElement('input');
|
|
cb.type = 'checkbox';
|
|
cb.className = 'legend-cb';
|
|
cb.checked = true;
|
|
cb.addEventListener('change', (e) => {
|
|
e.stopPropagation();
|
|
if (cb.checked) {
|
|
hiddenCommunities.delete(c.cid);
|
|
item.classList.remove('dimmed');
|
|
} else {
|
|
hiddenCommunities.add(c.cid);
|
|
item.classList.add('dimmed');
|
|
}
|
|
const updates = RAW_NODES
|
|
.filter(n => n.community === c.cid)
|
|
.map(n => ({ id: n.id, hidden: !cb.checked }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
});
|
|
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
|
|
<span class="legend-label">${c.label}</span>
|
|
<span class="legend-count">${c.count}</span>`;
|
|
item.prepend(cb);
|
|
item.onclick = (e) => {
|
|
if (e.target === cb) return;
|
|
cb.checked = !cb.checked;
|
|
cb.dispatchEvent(new Event('change'));
|
|
};
|
|
legendEl.appendChild(item);
|
|
});
|
|
</script>
|
|
<script>
|
|
// Render hyperedges as shaded regions
|
|
const hyperedges = [];
|
|
// 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> |