320 lines
983 KiB
HTML
320 lines
983 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>graphify - graphify-out\graph.html</title>
|
|
<script src="https://unpkg.com/vis-network@9.1.6/standalone/umd/vis-network.min.js"
|
|
integrity="sha384-Ux6phic9PEHJ38YtrijhkzyJ8yQlH8i/+buBR8s3mAZOJrP1gwyvAcIYl3GWtpX1"
|
|
crossorigin="anonymous"></script>
|
|
<style>
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
|
|
#graph { flex: 1; }
|
|
#sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4e; display: flex; flex-direction: column; overflow: hidden; }
|
|
#search-wrap { padding: 12px; border-bottom: 1px solid #2a2a4e; }
|
|
#search { width: 100%; background: #0f0f1a; border: 1px solid #3a3a5e; color: #e0e0e0; padding: 7px 10px; border-radius: 6px; font-size: 13px; outline: none; }
|
|
#search:focus { border-color: #4E79A7; }
|
|
#search-results { max-height: 140px; overflow-y: auto; padding: 4px 12px; border-bottom: 1px solid #2a2a4e; display: none; }
|
|
.search-item { padding: 4px 6px; cursor: pointer; border-radius: 4px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
.search-item:hover { background: #2a2a4e; }
|
|
#info-panel { padding: 14px; border-bottom: 1px solid #2a2a4e; min-height: 140px; }
|
|
#info-panel h3 { font-size: 13px; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
#info-content { font-size: 13px; color: #ccc; line-height: 1.6; }
|
|
#info-content .field { margin-bottom: 5px; }
|
|
#info-content .field b { color: #e0e0e0; }
|
|
#info-content .empty { color: #555; font-style: italic; }
|
|
.neighbor-link { display: block; padding: 2px 6px; margin: 2px 0; border-radius: 3px; cursor: pointer; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-left: 3px solid #333; }
|
|
.neighbor-link:hover { background: #2a2a4e; }
|
|
#neighbors-list { max-height: 160px; overflow-y: auto; margin-top: 4px; }
|
|
#legend-wrap { flex: 1; overflow-y: auto; padding: 12px; }
|
|
#legend-wrap h3 { font-size: 13px; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
.legend-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; border-radius: 4px; font-size: 12px; }
|
|
.legend-item:hover { background: #2a2a4e; padding-left: 4px; }
|
|
.legend-item.dimmed { opacity: 0.35; }
|
|
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
|
|
.legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.legend-count { color: #666; font-size: 11px; }
|
|
#stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
|
|
#legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
|
|
#legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
|
|
#legend-controls label:hover { color: #e0e0e0; }
|
|
.legend-cb, #select-all-cb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1.5px solid #3a3a5e; border-radius: 3px; background: #0f0f1a; cursor: pointer; position: relative; flex-shrink: 0; }
|
|
.legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
|
|
.legend-cb:checked::after, #select-all-cb:checked::after { content: ''; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
|
|
#select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
|
|
#select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="graph"></div>
|
|
<div id="sidebar">
|
|
<div id="search-wrap">
|
|
<input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
|
|
<div id="search-results"></div>
|
|
</div>
|
|
<div id="info-panel">
|
|
<h3>Node Info</h3>
|
|
<div id="info-content"><span class="empty">Click a node to inspect it</span></div>
|
|
</div>
|
|
<div id="legend-wrap">
|
|
<h3>Communities</h3>
|
|
<div id="legend-controls">
|
|
<label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
|
|
</div>
|
|
<div id="legend"></div>
|
|
</div>
|
|
<div id="stats">1170 nodes · 996 edges · 189 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "architecture_implementation_status", "label": "implementation_status.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "implementation_status.md", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/implementation_status.md", "file_type": "document", "degree": 2}, {"id": "architecture_implementation_status_\ud604\uc7ac_\uad6c\ud604_\ud604\ud669_\uc18c\uc2a4_\uc77d\uae30_\uac10\uc0ac", "label": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/implementation_status.md", "file_type": "document", "degree": 6}, {"id": "architecture_implementation_status_\ub2e8\uacc4\ubcc4_\ud310\uc815", "label": "\ub2e8\uacc4\ubcc4 \ud310\uc815", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub2e8\uacc4\ubcc4 \ud310\uc815", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/implementation_status.md", "file_type": "document", "degree": 1}, {"id": "architecture_implementation_status_\ube44\uc6cc\ud06c\ud50c\ub85c_\uc601\uc5ed_\ud310\uc815", "label": "\ube44\uc6cc\ud06c\ud50c\ub85c \uc601\uc5ed \ud310\uc815", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ube44\uc6cc\ud06c\ud50c\ub85c \uc601\uc5ed \ud310\uc815", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/implementation_status.md", "file_type": "document", "degree": 1}, {"id": "architecture_implementation_status_\uad6c\ud604_\uc0c1\ud0dc_\uc6a9\uc5b4", "label": "\uad6c\ud604 \uc0c1\ud0dc \uc6a9\uc5b4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604 \uc0c1\ud0dc \uc6a9\uc5b4", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/implementation_status.md", "file_type": "document", "degree": 1}, {"id": "architecture_implementation_status_\ubc18\ub4dc\uc2dc_\uc720\uc9c0\ud560_\uad6c\ubd84", "label": "\ubc18\ub4dc\uc2dc \uc720\uc9c0\ud560 \uad6c\ubd84", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc18\ub4dc\uc2dc \uc720\uc9c0\ud560 \uad6c\ubd84", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/implementation_status.md", "file_type": "document", "degree": 1}, {"id": "architecture_implementation_status_\ubbf8\uacb0_\uc124\uacc4", "label": "\ubbf8\uacb0 \uc124\uacc4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubbf8\uacb0 \uc124\uacc4", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/implementation_status.md", "file_type": "document", "degree": 1}, {"id": "architecture_project_map", "label": "project_map.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "project_map.md", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/project_map.md", "file_type": "document", "degree": 3}, {"id": "architecture_project_map_aislo_\ud504\ub85c\uc81d\ud2b8_\uc9c0\ub3c4", "label": "Aislo \ud504\ub85c\uc81d\ud2b8 \uc9c0\ub3c4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Aislo \ud504\ub85c\uc81d\ud2b8 \uc9c0\ub3c4", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/project_map.md", "file_type": "document", "degree": 4}, {"id": "architecture_project_map_\ud604\uc7ac_\uba85\uce6d\uacfc_\ucc45\uc784", "label": "\ud604\uc7ac \uba85\uce6d\uacfc \ucc45\uc784", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud604\uc7ac \uba85\uce6d\uacfc \ucc45\uc784", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/project_map.md", "file_type": "document", "degree": 1}, {"id": "architecture_project_map_\ud0d0\uc0c9_\uc21c\uc11c", "label": "\ud0d0\uc0c9 \uc21c\uc11c", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud0d0\uc0c9 \uc21c\uc11c", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/project_map.md", "file_type": "document", "degree": 1}, {"id": "architecture_project_map_\uba85\uce6d_\ud310\uc815", "label": "\uba85\uce6d \ud310\uc815", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uba85\uce6d \ud310\uc815", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/project_map.md", "file_type": "document", "degree": 1}, {"id": "architecture_public_admin_map", "label": "public_admin_map.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "public_admin_map.md", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/public_admin_map.md", "file_type": "document", "degree": 2}, {"id": "architecture_public_admin_map_\uacf5\uac1c_\uc778\uc99d_\uad00\ub9ac_\uc601\uc5ed_\uc9c0\ub3c4", "label": "\uacf5\uac1c\u00b7\uc778\uc99d\u00b7\uad00\ub9ac \uc601\uc5ed \uc9c0\ub3c4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "\uacf5\uac1c\u00b7\uc778\uc99d\u00b7\uad00\ub9ac \uc601\uc5ed \uc9c0\ub3c4", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/public_admin_map.md", "file_type": "document", "degree": 3}, {"id": "architecture_public_admin_map_\uacf5\ud1b5_\uc758\uc874", "label": "\uacf5\ud1b5 \uc758\uc874", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \uc758\uc874", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/public_admin_map.md", "file_type": "document", "degree": 1}, {"id": "architecture_public_admin_map_\uc9c1\uc811_\uad6c\ud604_\uad00\uacc4", "label": "\uc9c1\uc811 \uad6c\ud604 \uad00\uacc4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc9c1\uc811 \uad6c\ud604 \uad00\uacc4", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/public_admin_map.md", "file_type": "document", "degree": 1}, {"id": "architecture_shared_resources", "label": "shared_resources.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "shared_resources.md", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/shared_resources.md", "file_type": "document", "degree": 2}, {"id": "architecture_shared_resources_\uacf5\uc720_\uc790\uc6d0_\uc601\ud5a5_\uc9c0\ub3c4", "label": "\uacf5\uc720 \uc790\uc6d0 \uc601\ud5a5 \uc9c0\ub3c4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "\uacf5\uc720 \uc790\uc6d0 \uc601\ud5a5 \uc9c0\ub3c4", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/shared_resources.md", "file_type": "document", "degree": 3}, {"id": "architecture_shared_resources_\ub2e8\uacc4\ubcc4_\uc9c1\uc811_\uc5f0\uacb0", "label": "\ub2e8\uacc4\ubcc4 \uc9c1\uc811 \uc5f0\uacb0", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub2e8\uacc4\ubcc4 \uc9c1\uc811 \uc5f0\uacb0", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/shared_resources.md", "file_type": "document", "degree": 1}, {"id": "architecture_shared_resources_\uc601\ud5a5_\ubd84\uc11d_\uaddc\uce59", "label": "\uc601\ud5a5 \ubd84\uc11d \uaddc\uce59", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc601\ud5a5 \ubd84\uc11d \uaddc\uce59", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/shared_resources.md", "file_type": "document", "degree": 1}, {"id": "architecture_workflow_data_flow", "label": "workflow_data_flow.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "workflow_data_flow.md", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/workflow_data_flow.md", "file_type": "document", "degree": 5}, {"id": "architecture_workflow_data_flow_b01_b09_workflow_\ub370\uc774\ud130_\ud750\ub984", "label": "B01~B09 Workflow \ub370\uc774\ud130 \ud750\ub984", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B01~B09 Workflow \ub370\uc774\ud130 \ud750\ub984", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/workflow_data_flow.md", "file_type": "document", "degree": 5}, {"id": "architecture_workflow_data_flow_\ub2e8\uacc4_\uad00\uacc4", "label": "\ub2e8\uacc4 \uad00\uacc4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub2e8\uacc4 \uad00\uacc4", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/workflow_data_flow.md", "file_type": "document", "degree": 1}, {"id": "architecture_workflow_data_flow_b04_b06_\uc790\ub3d9_\uacc4\uc0b0\uacfc_\uc7ac\uc124\uacc4", "label": "B04\u2192B06 \uc790\ub3d9 \uacc4\uc0b0\uacfc \uc7ac\uc124\uacc4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B04\u2192B06 \uc790\ub3d9 \uacc4\uc0b0\uacfc \uc7ac\uc124\uacc4", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/workflow_data_flow.md", "file_type": "document", "degree": 1}, {"id": "architecture_workflow_data_flow_\uc0c1\ud0dc\uc640_\uc0b0\ucd9c\ubb3c_\ubb34\ud6a8\ud654", "label": "\uc0c1\ud0dc\uc640 \uc0b0\ucd9c\ubb3c \ubb34\ud6a8\ud654", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0c1\ud0dc\uc640 \uc0b0\ucd9c\ubb3c \ubb34\ud6a8\ud654", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/workflow_data_flow.md", "file_type": "document", "degree": 1}, {"id": "architecture_workflow_data_flow_\uc815\ubcf8_\uc704\uce58", "label": "\uc815\ubcf8 \uc704\uce58", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc815\ubcf8 \uc704\uce58", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "architecture/workflow_data_flow.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework", "label": "a00_app_shell_framework.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "a00_app_shell_framework.md", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 3}, {"id": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "label": "A00_Common \u2014 App Shell Framework", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "A00_Common \u2014 App Shell Framework", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 6}, {"id": "concepts_a00_app_shell_framework_\ud30c\uc77c_\uad6c\uc131", "label": "\ud30c\uc77c \uad6c\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc131", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_app_shell_\uad6c\uc131\uc694\uc18c", "label": "app_shell \uad6c\uc131\uc694\uc18c", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "app_shell \uad6c\uc131\uc694\uc18c", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 3}, {"id": "concepts_a00_app_shell_framework_\ud14c\ub9c8_\uc5b8\uc5b4_\uad00\ub9ac", "label": "\ud14c\ub9c8 & \uc5b8\uc5b4 \uad00\ub9ac", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud14c\ub9c8 & \uc5b8\uc5b4 \uad00\ub9ac", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_\ud5e4\ub354_\uad6c\uc131_64px_\ub192\uc774_sticky", "label": "\ud5e4\ub354 \uad6c\uc131 (64px \ub192\uc774, sticky)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud5e4\ub354 \uad6c\uc131 (64px \ub192\uc774, sticky)", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_router_\ub77c\uc6b0\ud305_\ud14c\uc774\ube14", "label": "router \ub77c\uc6b0\ud305 \ud14c\uc774\ube14", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "router \ub77c\uc6b0\ud305 \ud14c\uc774\ube14", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_\uc778\uc99d_\uac00\ub4dc", "label": "\uc778\uc99d \uac00\ub4dc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc778\uc99d \uac00\ub4dc", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_\uc138\ubd80_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "label": "\uc138\ubd80 \uc2a4\uce90\ud3f4\ub4dc\u00b7CSS\u00b7\uc885\uc18d\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\ubd80 \uc2a4\uce90\ud3f4\ub4dc\u00b7CSS\u00b7\uc885\uc18d\uc131", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_scaffold", "label": "a00_app_shell_framework_scaffold.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "a00_app_shell_framework_scaffold.md", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework_scaffold.md", "file_type": "document", "degree": 2}, {"id": "concepts_a00_app_shell_framework_scaffold_a00_common_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "label": "A00_Common \u2014 \uc2a4\uce90\ud3f4\ub4dc\u00b7CSS\u00b7\uc885\uc18d\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A00_Common \u2014 \uc2a4\uce90\ud3f4\ub4dc\u00b7CSS\u00b7\uc885\uc18d\uc131", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework_scaffold.md", "file_type": "document", "degree": 5}, {"id": "concepts_a00_app_shell_framework_scaffold_b_page_scaffold", "label": "b_page_scaffold", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "b_page_scaffold", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework_scaffold.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_scaffold_css_\uc778\uc81d\uc158", "label": "CSS \uc778\uc81d\uc158", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CSS \uc778\uc81d\uc158", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework_scaffold.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_scaffold_\uc885\uc18d\uc131", "label": "\uc885\uc18d\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc885\uc18d\uc131", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework_scaffold.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_scaffold_\uc0ac\uc6a9\ucc98", "label": "\uc0ac\uc6a9\ucc98", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\ucc98", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework_scaffold.md", "file_type": "document", "degree": 1}, {"id": "concepts_api_common", "label": "api_common.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "api_common.md", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/api_common.md", "file_type": "document", "degree": 3}, {"id": "concepts_api_common_api_\uacf5\ud1b5_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uacf5\ud1b5 (\uc5ec\ub7ec \ud398\uc774\uc9c0\uac00 \uacf5\uc720\ud558\ub294 \uc5d4\ub4dc\ud3ec\uc778\ud2b8)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "API \uacf5\ud1b5 (\uc5ec\ub7ec \ud398\uc774\uc9c0\uac00 \uacf5\uc720\ud558\ub294 \uc5d4\ub4dc\ud3ec\uc778\ud2b8)", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/api_common.md", "file_type": "document", "degree": 4}, {"id": "concepts_api_common_\uacf5\ud1b5_\uc624\ub958_\uc751\ub2f5_\ud3ec\ub9f7_\uc804_\ub77c\uc6b0\ud130", "label": "\uacf5\ud1b5 \uc624\ub958 \uc751\ub2f5 \ud3ec\ub9f7 (\uc804 \ub77c\uc6b0\ud130)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \uc624\ub958 \uc751\ub2f5 \ud3ec\ub9f7 (\uc804 \ub77c\uc6b0\ud130)", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/api_common.md", "file_type": "document", "degree": 1}, {"id": "concepts_api_common_\uc6cc\ud06c\ud50c\ub85c\uc6b0_\uc0c1\ud0dc_\uc870\ud68c", "label": "\uc6cc\ud06c\ud50c\ub85c\uc6b0 \uc0c1\ud0dc \uc870\ud68c", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6cc\ud06c\ud50c\ub85c\uc6b0 \uc0c1\ud0dc \uc870\ud68c", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/api_common.md", "file_type": "document", "degree": 1}, {"id": "concepts_api_common_\ud3f4\ub9c1_\ud328\ud134_legacy_workflow_json_\uc124\uacc4_\ud604\uc7ac_\uad6c\ud604\uc740_workflow_state_api_\uc0ac\uc6a9", "label": "\ud3f4\ub9c1 \ud328\ud134 (legacy workflow.json \uc124\uacc4; \ud604\uc7ac \uad6c\ud604\uc740 workflow-state API \uc0ac\uc6a9)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud3f4\ub9c1 \ud328\ud134 (legacy workflow.json \uc124\uacc4; \ud604\uc7ac \uad6c\ud604\uc740 workflow-state API \uc0ac\uc6a9)", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/api_common.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac", "label": "auth_rbac.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "auth_rbac.md", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 3}, {"id": "concepts_auth_rbac_\uc778\uc99d_rbac", "label": "\uc778\uc99d / RBAC", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 32.5, "font": {"size": 12, "color": "#ffffff"}, "title": "\uc778\uc99d / RBAC", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 9}, {"id": "concepts_auth_rbac_\uc138\uc158_\uc778\uc99d_backend_md_6_3", "label": "\uc138\uc158 \uc778\uc99d (backend.md 6.3)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\uc158 \uc778\uc99d (backend.md 6.3)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_otp_\ube44\ubc00\ubc88\ud638_\ubc0f_\ub514\ubc14\uc774\uc2a4_\uc2e0\ub8b0", "label": "OTP / \ube44\ubc00\ubc88\ud638 \ubc0f \ub514\ubc14\uc774\uc2a4 \uc2e0\ub8b0", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "OTP / \ube44\ubc00\ubc88\ud638 \ubc0f \ub514\ubc14\uc774\uc2a4 \uc2e0\ub8b0", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\uc0ac\uc6a9\uc790_\uc0c1\ud0dc_\uc0dd\uba85\uc8fc\uae30", "label": "\uc0ac\uc6a9\uc790 \uc0c1\ud0dc \uc0dd\uba85\uc8fc\uae30", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\uc790 \uc0c1\ud0dc \uc0dd\uba85\uc8fc\uae30", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\uc5ed\ud560_users_role", "label": "\uc5ed\ud560 (users.role)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc5ed\ud560 (users.role)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\uad8c\ud55c_\uac80\uc99d_\ud5ec\ud37c_b01_dashboard", "label": "\uad8c\ud55c \uac80\uc99d \ud5ec\ud37c (B01_Dashboard)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad8c\ud55c \uac80\uc99d \ud5ec\ud37c (B01_Dashboard)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\uc778\uc99d_\uac31\uc2e0_\ubc0f_\ub9cc\ub8cc_\uc77c\uc6d0\ud654", "label": "\uc778\uc99d \uac31\uc2e0 \ubc0f \ub9cc\ub8cc \uc77c\uc6d0\ud654", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc778\uc99d \uac31\uc2e0 \ubc0f \ub9cc\ub8cc \uc77c\uc6d0\ud654", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\ub77c\uc6b0\ud305_\uac00\ub4dc_frontend_md_5_2", "label": "\ub77c\uc6b0\ud305 \uac00\ub4dc (frontend.md 5.2)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub77c\uc6b0\ud305 \uac00\ub4dc (frontend.md 5.2)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\uc0ac\uc6a9\ucc98_\uc5ed\ucc38\uc870", "label": "\uc0ac\uc6a9\ucc98 (\uc5ed\ucc38\uc870)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\ucc98 (\uc5ed\ucc38\uc870)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_b07_external_webcad_demos", "label": "b07_external_webcad_demos.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "b07_external_webcad_demos.md", "community": 58, "community_name": "B07 \uc678\ubd80 WebCAD \ube44\uad50 \uc2e4\ud589\ud658\uacbd", "source_file": "concepts/b07_external_webcad_demos.md", "file_type": "document", "degree": 1}, {"id": "concepts_b07_external_webcad_demos_b07_\uc678\ubd80_webcad_\ube44\uad50_\uc2e4\ud589\ud658\uacbd", "label": "B07 \uc678\ubd80 WebCAD \ube44\uad50 \uc2e4\ud589\ud658\uacbd", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B07 \uc678\ubd80 WebCAD \ube44\uad50 \uc2e4\ud589\ud658\uacbd", "community": 58, "community_name": "B07 \uc678\ubd80 WebCAD \ube44\uad50 \uc2e4\ud589\ud658\uacbd", "source_file": "concepts/b07_external_webcad_demos.md", "file_type": "document", "degree": 4}, {"id": "concepts_b07_external_webcad_demos_\uc2e4\ud589\uacfc_\uc885\ub8cc", "label": "\uc2e4\ud589\uacfc \uc885\ub8cc", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2e4\ud589\uacfc \uc885\ub8cc", "community": 58, "community_name": "B07 \uc678\ubd80 WebCAD \ube44\uad50 \uc2e4\ud589\ud658\uacbd", "source_file": "concepts/b07_external_webcad_demos.md", "file_type": "document", "degree": 1}, {"id": "concepts_b07_external_webcad_demos_\uac80\uc99d_\uc0c1\ud0dc", "label": "\uac80\uc99d \uc0c1\ud0dc", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d \uc0c1\ud0dc", "community": 58, "community_name": "B07 \uc678\ubd80 WebCAD \ube44\uad50 \uc2e4\ud589\ud658\uacbd", "source_file": "concepts/b07_external_webcad_demos.md", "file_type": "document", "degree": 1}, {"id": "concepts_b07_external_webcad_demos_\ub77c\uc774\uc120\uc2a4_\uc8fc\uc758", "label": "\ub77c\uc774\uc120\uc2a4 \uc8fc\uc758", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub77c\uc774\uc120\uc2a4 \uc8fc\uc758", "community": 58, "community_name": "B07 \uc678\ubd80 WebCAD \ube44\uad50 \uc2e4\ud589\ud658\uacbd", "source_file": "concepts/b07_external_webcad_demos.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util", "label": "common_util.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "common_util.md", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/common_util.md", "file_type": "document", "degree": 5}, {"id": "concepts_common_util_\uacf5\ud1b5_\uc720\ud2f8_common_util", "label": "\uacf5\ud1b5 \uc720\ud2f8 (common_util/)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \uc720\ud2f8 (common_util/)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/common_util.md", "file_type": "document", "degree": 3}, {"id": "concepts_common_util_\uc774\uba54\uc77c_\ubc1c\uc1a1_common_util_email_py", "label": "\uc774\uba54\uc77c \ubc1c\uc1a1 (common_util_email.py)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\uba54\uc77c \ubc1c\uc1a1 (common_util_email.py)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/common_util.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util_\ub9ac\uc18c\uc2a4_\ubaa8\ub2c8\ud130\ub9c1_common_util_resource_monitor_py", "label": "\ub9ac\uc18c\uc2a4 \ubaa8\ub2c8\ud130\ub9c1 (common_util_resource_monitor.py)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub9ac\uc18c\uc2a4 \ubaa8\ub2c8\ud130\ub9c1 (common_util_resource_monitor.py)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/common_util.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util_common_util_project_delete", "label": "common_util_project_delete.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "common_util_project_delete.md", "community": 112, "community_name": "common_util_project_delete.md", "source_file": "concepts/common_util/common_util_project_delete.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util_common_util_project_delete_common_util_project_delete_py", "label": "common_util_project_delete.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "common_util_project_delete.py", "community": 112, "community_name": "common_util_project_delete.md", "source_file": "concepts/common_util/common_util_project_delete.md", "file_type": "document", "degree": 3}, {"id": "concepts_common_util_common_util_project_delete_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 112, "community_name": "common_util_project_delete.md", "source_file": "concepts/common_util/common_util_project_delete.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util_common_util_project_delete_\uc5ed\ucc38\uc870_\uc0ac\uc6a9\ucc98", "label": "\ud83d\udd17 \uc5ed\ucc38\uc870 (\uc0ac\uc6a9\ucc98)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5ed\ucc38\uc870 (\uc0ac\uc6a9\ucc98)", "community": 112, "community_name": "common_util_project_delete.md", "source_file": "concepts/common_util/common_util_project_delete.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util_common_util_storage", "label": "common_util_storage.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "common_util_storage.md", "community": 113, "community_name": "common_util_storage.md", "source_file": "concepts/common_util/common_util_storage.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util_common_util_storage_common_util_storage_py", "label": "common_util_storage.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "common_util_storage.py", "community": 113, "community_name": "common_util_storage.md", "source_file": "concepts/common_util/common_util_storage.md", "file_type": "document", "degree": 3}, {"id": "concepts_common_util_common_util_storage_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 113, "community_name": "common_util_storage.md", "source_file": "concepts/common_util/common_util_storage.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util_common_util_storage_\uc5ed\ucc38\uc870_\uc0ac\uc6a9\ucc98", "label": "\ud83d\udd17 \uc5ed\ucc38\uc870 (\uc0ac\uc6a9\ucc98)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5ed\ucc38\uc870 (\uc0ac\uc6a9\ucc98)", "community": 113, "community_name": "common_util_storage.md", "source_file": "concepts/common_util/common_util_storage.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util_common_util_workflow_state", "label": "common_util_workflow_state.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "common_util_workflow_state.md", "community": 114, "community_name": "common_util_workflow_state.md", "source_file": "concepts/common_util/common_util_workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util_common_util_workflow_state_common_util_workflow_state_py", "label": "common_util_workflow_state.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "common_util_workflow_state.py", "community": 114, "community_name": "common_util_workflow_state.md", "source_file": "concepts/common_util/common_util_workflow_state.md", "file_type": "document", "degree": 3}, {"id": "concepts_common_util_common_util_workflow_state_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 114, "community_name": "common_util_workflow_state.md", "source_file": "concepts/common_util/common_util_workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util_common_util_workflow_state_\uc5ed\ucc38\uc870_\uc0ac\uc6a9\ucc98", "label": "\ud83d\udd17 \uc5ed\ucc38\uc870 (\uc0ac\uc6a9\ucc98)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5ed\ucc38\uc870 (\uc0ac\uc6a9\ucc98)", "community": 114, "community_name": "common_util_workflow_state.md", "source_file": "concepts/common_util/common_util_workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_08_29", "label": "completed_2026-08-29.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "completed_2026-08-29.md", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-08-29.md", "file_type": "document", "degree": 2}, {"id": "concepts_completed_2026_08_29_2026_08_29_\uc644\ub8cc_\ubc18\uc601", "label": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 35.0, "font": {"size": 12, "color": "#ffffff"}, "title": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-08-29.md", "file_type": "document", "degree": 10}, {"id": "concepts_completed_2026_08_29_b03_\uc7ac\uc5c5\ub85c\ub4dc_b05_\ucd5c\uc2e0_\uc870\ud68c", "label": "B03 \uc7ac\uc5c5\ub85c\ub4dc\u00b7B05 \ucd5c\uc2e0 \uc870\ud68c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B03 \uc7ac\uc5c5\ub85c\ub4dc\u00b7B05 \ucd5c\uc2e0 \uc870\ud68c", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-08-29.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_08_29_b05_b06_\uad6c\uc870\ubb3c_ui_\ud1b5\ud569", "label": "B05/B06 \uad6c\uc870\ubb3c UI \ud1b5\ud569", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05/B06 \uad6c\uc870\ubb3c UI \ud1b5\ud569", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-08-29.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_08_29_b07_cad_\uace0\uc815_\ucc99\ub3c4_\ud6a1\ub2e8_\uc7a5_\ubc30\uce58", "label": "B07 CAD \uace0\uc815 \ucc99\ub3c4\u00b7\ud6a1\ub2e8 \uc7a5 \ubc30\uce58", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B07 CAD \uace0\uc815 \ucc99\ub3c4\u00b7\ud6a1\ub2e8 \uc7a5 \ubc30\uce58", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-08-29.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_08_29_b07_cad_\ud14c\ub9c8", "label": "B07 CAD \ud14c\ub9c8", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B07 CAD \ud14c\ub9c8", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-08-29.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_08_29_b07_cad_\ud655\ub300_\ud32c", "label": "B07 CAD \ud655\ub300\u00b7\ud32c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B07 CAD \ud655\ub300\u00b7\ud32c", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-08-29.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_08_29_b07_b08_\uc21c\uc11c", "label": "B07\u2194B08 \uc21c\uc11c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B07\u2194B08 \uc21c\uc11c", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-08-29.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_08_29_\ucd08\uae30\uac12_\ubcf4\uc804", "label": "\ucd08\uae30\uac12 \ubcf4\uc804", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucd08\uae30\uac12 \ubcf4\uc804", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-08-29.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_08_29_\ucd08\uae30\ud654_\ubcf5\uc6d0_\uc2e4\uce21", "label": "\ucd08\uae30\ud654 \ubcf5\uc6d0 \uc2e4\uce21", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucd08\uae30\ud654 \ubcf5\uc6d0 \uc2e4\uce21", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-08-29.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_08_29_\ubc30\uc218\uc2dc\uc124_\ucd94\ucc9c_\uae30\uc900", "label": "\ubc30\uc218\uc2dc\uc124 \ucd94\ucc9c \uae30\uc900", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc30\uc218\uc2dc\uc124 \ucd94\ucc9c \uae30\uc900", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-08-29.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_01", "label": "completed_2026-09-01.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "completed_2026-09-01.md", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-09-01.md", "file_type": "document", "degree": 2}, {"id": "concepts_completed_2026_09_01_2026_09_01_\uc644\ub8cc_b04_\uc9c0\uba74_\ucc98\ub9ac_b05_b06_\ubc30\uc218_\uc81c\uc5b4", "label": "2026-09-01 \uc644\ub8cc \u2014 B04 \uc9c0\uba74 \ucc98\ub9ac\u00b7B05/B06 \ubc30\uc218 \uc81c\uc5b4", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "2026-09-01 \uc644\ub8cc \u2014 B04 \uc9c0\uba74 \ucc98\ub9ac\u00b7B05/B06 \ubc30\uc218 \uc81c\uc5b4", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-09-01.md", "file_type": "document", "degree": 4}, {"id": "concepts_completed_2026_09_01_\uc644\ub8cc_\ubc94\uc704", "label": "\uc644\ub8cc \ubc94\uc704", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc644\ub8cc \ubc94\uc704", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-09-01.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_01_\uc800\uc7a5_\ud638\ud658_\uaddc\uce59", "label": "\uc800\uc7a5\u00b7\ud638\ud658 \uaddc\uce59", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5\u00b7\ud638\ud658 \uaddc\uce59", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-09-01.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_01_\uac80\uc99d", "label": "\uac80\uc99d", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-09-01.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_01_followups", "label": "completed_2026-09-01_followups.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "completed_2026-09-01_followups.md", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-09-01_followups.md", "file_type": "document", "degree": 5}, {"id": "concepts_completed_2026_09_01_followups_2026_09_01_\uc794\uc5ec_\uc644\ub8cc_\uccb4\ud06c_\uc815\ub9ac", "label": "2026-09-01 \uc794\uc5ec \uc644\ub8cc \uccb4\ud06c \uc815\ub9ac", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "2026-09-01 \uc794\uc5ec \uc644\ub8cc \uccb4\ud06c \uc815\ub9ac", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-09-01_followups.md", "file_type": "document", "degree": 3}, {"id": "concepts_completed_2026_09_01_followups_\ubc94\uc704", "label": "\ubc94\uc704", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc94\uc704", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-09-01_followups.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_01_followups_\ubcf4\ub958_\uad6c\ubd84", "label": "\ubcf4\ub958 \uad6c\ubd84", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubcf4\ub958 \uad6c\ubd84", "community": 7, "community_name": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "source_file": "concepts/completed_2026-09-01_followups.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_02", "label": "completed_2026-09-02.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "completed_2026-09-02.md", "community": 182, "community_name": "2026-09-02 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/completed_2026-09-02.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_02_2026_09_02_\uc644\ub8cc_\ud56d\ubaa9", "label": "2026-09-02 \uc644\ub8cc \ud56d\ubaa9", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 27.5, "font": {"size": 12, "color": "#ffffff"}, "title": "2026-09-02 \uc644\ub8cc \ud56d\ubaa9", "community": 182, "community_name": "2026-09-02 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/completed_2026-09-02.md", "file_type": "document", "degree": 7}, {"id": "concepts_completed_2026_09_02_\ub178\uc120_\uc9c0\ud45c\uba74", "label": "\ub178\uc120\u00b7\uc9c0\ud45c\uba74", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub178\uc120\u00b7\uc9c0\ud45c\uba74", "community": 182, "community_name": "2026-09-02 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/completed_2026-09-02.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_02_\uc791\uc5c5_\ud658\uacbd", "label": "\uc791\uc5c5 \ud658\uacbd", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc791\uc5c5 \ud658\uacbd", "community": 182, "community_name": "2026-09-02 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/completed_2026-09-02.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_02_cad", "label": "CAD", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CAD", "community": 182, "community_name": "2026-09-02 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/completed_2026-09-02.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_02_b05_\uad6c\uc870\ubb3c_3d", "label": "B05 \uad6c\uc870\ubb3c 3D", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05 \uad6c\uc870\ubb3c 3D", "community": 182, "community_name": "2026-09-02 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/completed_2026-09-02.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_02_b05_\uc885\ub2e8_\ud3b8\uc9d1_\ud6c4\uc18d", "label": "B05 \uc885\ub2e8 \ud3b8\uc9d1 \ud6c4\uc18d", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05 \uc885\ub2e8 \ud3b8\uc9d1 \ud6c4\uc18d", "community": 182, "community_name": "2026-09-02 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/completed_2026-09-02.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_02_\ud68c\uadc0_\uc0c1\ud0dc", "label": "\ud68c\uadc0 \uc0c1\ud0dc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud68c\uadc0 \uc0c1\ud0dc", "community": 182, "community_name": "2026-09-02 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/completed_2026-09-02.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_03", "label": "completed_2026-09-03.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "completed_2026-09-03.md", "community": 183, "community_name": "2026-09-03 \uc644\ub8cc \u2014 \uc785\ub825\u00b7\ubc30\uc218\u00b7\uc885\ud6a1\ub2e8\u00b7CAD", "source_file": "concepts/completed_2026-09-03.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_03_2026_09_03_\uc644\ub8cc_\uc785\ub825_\ubc30\uc218_\uc885\ud6a1\ub2e8_cad", "label": "2026-09-03 \uc644\ub8cc \u2014 \uc785\ub825\u00b7\ubc30\uc218\u00b7\uc885\ud6a1\ub2e8\u00b7CAD", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "2026-09-03 \uc644\ub8cc \u2014 \uc785\ub825\u00b7\ubc30\uc218\u00b7\uc885\ud6a1\ub2e8\u00b7CAD", "community": 183, "community_name": "2026-09-03 \uc644\ub8cc \u2014 \uc785\ub825\u00b7\ubc30\uc218\u00b7\uc885\ud6a1\ub2e8\u00b7CAD", "source_file": "concepts/completed_2026-09-03.md", "file_type": "document", "degree": 3}, {"id": "concepts_completed_2026_09_03_\uc644\ub8cc_\ubc94\uc704", "label": "\uc644\ub8cc \ubc94\uc704", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc644\ub8cc \ubc94\uc704", "community": 183, "community_name": "2026-09-03 \uc644\ub8cc \u2014 \uc785\ub825\u00b7\ubc30\uc218\u00b7\uc885\ud6a1\ub2e8\u00b7CAD", "source_file": "concepts/completed_2026-09-03.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_03_\uacf5\ud1b5_\uacb0\uc815", "label": "\uacf5\ud1b5 \uacb0\uc815", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \uacb0\uc815", "community": 183, "community_name": "2026-09-03 \uc644\ub8cc \u2014 \uc785\ub825\u00b7\ubc30\uc218\u00b7\uc885\ud6a1\ub2e8\u00b7CAD", "source_file": "concepts/completed_2026-09-03.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_03_additional", "label": "completed_2026-09-03_additional.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "completed_2026-09-03_additional.md", "community": 184, "community_name": "2026-09-03 \ucd94\uac00 \uc644\ub8cc \u2014 \ud654\uba74\u00b7\uc885\ub2e8\u00b7\ud6a1\ub2e8", "source_file": "concepts/completed_2026-09-03_additional.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_03_additional_2026_09_03_\ucd94\uac00_\uc644\ub8cc_\ud654\uba74_\uc885\ub2e8_\ud6a1\ub2e8", "label": "2026-09-03 \ucd94\uac00 \uc644\ub8cc \u2014 \ud654\uba74\u00b7\uc885\ub2e8\u00b7\ud6a1\ub2e8", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "2026-09-03 \ucd94\uac00 \uc644\ub8cc \u2014 \ud654\uba74\u00b7\uc885\ub2e8\u00b7\ud6a1\ub2e8", "community": 184, "community_name": "2026-09-03 \ucd94\uac00 \uc644\ub8cc \u2014 \ud654\uba74\u00b7\uc885\ub2e8\u00b7\ud6a1\ub2e8", "source_file": "concepts/completed_2026-09-03_additional.md", "file_type": "document", "degree": 3}, {"id": "concepts_completed_2026_09_03_additional_\uc644\ub8cc_\ubc94\uc704", "label": "\uc644\ub8cc \ubc94\uc704", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc644\ub8cc \ubc94\uc704", "community": 184, "community_name": "2026-09-03 \ucd94\uac00 \uc644\ub8cc \u2014 \ud654\uba74\u00b7\uc885\ub2e8\u00b7\ud6a1\ub2e8", "source_file": "concepts/completed_2026-09-03_additional.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_03_additional_\ucd5c\uc2e0_\uacb0\uc815", "label": "\ucd5c\uc2e0 \uacb0\uc815", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucd5c\uc2e0 \uacb0\uc815", "community": 184, "community_name": "2026-09-03 \ucd94\uac00 \uc644\ub8cc \u2014 \ud654\uba74\u00b7\uc885\ub2e8\u00b7\ud6a1\ub2e8", "source_file": "concepts/completed_2026-09-03_additional.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_04", "label": "completed_2026-09-04.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "completed_2026-09-04.md", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/completed_2026-09-04.md", "file_type": "document", "degree": 4}, {"id": "concepts_completed_2026_09_04_2026_09_04_\uc644\ub8cc_\ud56d\ubaa9", "label": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/completed_2026-09-04.md", "file_type": "document", "degree": 6}, {"id": "concepts_completed_2026_09_04_\uc644\ub8cc_\ubc94\uc704", "label": "\uc644\ub8cc \ubc94\uc704", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc644\ub8cc \ubc94\uc704", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/completed_2026-09-04.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_04_\ucd94\uac00_\uc644\ub8cc_\ubc94\uc704", "label": "\ucd94\uac00 \uc644\ub8cc \ubc94\uc704", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucd94\uac00 \uc644\ub8cc \ubc94\uc704", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/completed_2026-09-04.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_04_700\uc904_\uc81c\ud55c_\ubd84\ub9ac", "label": "700\uc904 \uc81c\ud55c \ubd84\ub9ac", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "700\uc904 \uc81c\ud55c \ubd84\ub9ac", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/completed_2026-09-04.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_04_\uc0c1\uc2dc\uacc4\ud68d\uc11c_\ucd94\uac00_\uc644\ub8cc_\ubc94\uc704", "label": "\uc0c1\uc2dc\uacc4\ud68d\uc11c \ucd94\uac00 \uc644\ub8cc \ubc94\uc704", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0c1\uc2dc\uacc4\ud68d\uc11c \ucd94\uac00 \uc644\ub8cc \ubc94\uc704", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/completed_2026-09-04.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_04_\ubcf4\uc874\ub41c_\ubbf8\uc644\ub8cc_\ubc94\uc704", "label": "\ubcf4\uc874\ub41c \ubbf8\uc644\ub8cc \ubc94\uc704", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubcf4\uc874\ub41c \ubbf8\uc644\ub8cc \ubc94\uc704", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/completed_2026-09-04.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_07", "label": "completed_2026-09-07.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "completed_2026-09-07.md", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "concepts/completed_2026-09-07.md", "file_type": "document", "degree": 5}, {"id": "concepts_completed_2026_09_07_2026_09_07_\uc644\ub8cc_\ubcf4\ub958_\uc694\uc57d", "label": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "concepts/completed_2026-09-07.md", "file_type": "document", "degree": 4}, {"id": "concepts_completed_2026_09_07_\uc644\ub8cc_\ubc94\uc704", "label": "\uc644\ub8cc \ubc94\uc704", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc644\ub8cc \ubc94\uc704", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "concepts/completed_2026-09-07.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_07_\uc131\ub2a5_\uc6b4\uc601_\uacb0\uc815", "label": "\uc131\ub2a5\u00b7\uc6b4\uc601 \uacb0\uc815", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc131\ub2a5\u00b7\uc6b4\uc601 \uacb0\uc815", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "concepts/completed_2026-09-07.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_07_\uc8fc\uc758", "label": "\uc8fc\uc758", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc8fc\uc758", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "concepts/completed_2026-09-07.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_09", "label": "completed_2026-09-09.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "completed_2026-09-09.md", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/completed_2026-09-09.md", "file_type": "document", "degree": 3}, {"id": "concepts_completed_2026_09_09_2026_09_09_\uc644\ub8cc_\uad6c\ud604_\uac80\uc99d", "label": "2026-09-09 \uc644\ub8cc \uad6c\ud604\u00b7\uac80\uc99d", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "2026-09-09 \uc644\ub8cc \uad6c\ud604\u00b7\uac80\uc99d", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/completed_2026-09-09.md", "file_type": "document", "degree": 6}, {"id": "concepts_completed_2026_09_09_b05_b06_\uc885\ud6a1\ub2e8", "label": "B05\u00b7B06 \uc885\ud6a1\ub2e8", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05\u00b7B06 \uc885\ud6a1\ub2e8", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/completed_2026-09-09.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_09_b07_\ud45c\uc900\ub3c4", "label": "B07 \ud45c\uc900\ub3c4", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B07 \ud45c\uc900\ub3c4", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/completed_2026-09-09.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_09_b08_\uc218\ub7c9\uc0b0\ucd9c", "label": "B08 \uc218\ub7c9\uc0b0\ucd9c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08 \uc218\ub7c9\uc0b0\ucd9c", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/completed_2026-09-09.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_09_b09_\uc6d0\uac00\uacc4\uc0b0", "label": "B09 \uc6d0\uac00\uacc4\uc0b0", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B09 \uc6d0\uac00\uacc4\uc0b0", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/completed_2026-09-09.md", "file_type": "document", "degree": 1}, {"id": "concepts_completed_2026_09_09_\uac80\uc99d_\uacbd\uacc4", "label": "\uac80\uc99d \uacbd\uacc4", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d \uacbd\uacc4", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/completed_2026-09-09.md", "file_type": "document", "degree": 1}, {"id": "concepts_crs_metadata", "label": "crs_metadata.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "crs_metadata.md", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/crs_metadata.md", "file_type": "document", "degree": 3}, {"id": "concepts_crs_metadata_crs_\uba54\ud0c0\ub370\uc774\ud130_\uc815\uc0c1\ud654", "label": "CRS \uba54\ud0c0\ub370\uc774\ud130 \uc815\uc0c1\ud654", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "CRS \uba54\ud0c0\ub370\uc774\ud130 \uc815\uc0c1\ud654", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/crs_metadata.md", "file_type": "document", "degree": 5}, {"id": "concepts_crs_metadata_\uac80\uc99d\ub41c_\ud310\uc815", "label": "\uac80\uc99d\ub41c \ud310\uc815", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d\ub41c \ud310\uc815", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/crs_metadata.md", "file_type": "document", "degree": 1}, {"id": "concepts_crs_metadata_\ub370\uc774\ud130_\ud750\ub984", "label": "\ub370\uc774\ud130 \ud750\ub984", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub370\uc774\ud130 \ud750\ub984", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/crs_metadata.md", "file_type": "document", "degree": 1}, {"id": "concepts_crs_metadata_\uac80\uc99d_\ubc94\uc704\uc640_\ubaa8\uc21c_\uc774\ub825", "label": "\uac80\uc99d \ubc94\uc704\uc640 \ubaa8\uc21c \uc774\ub825", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d \ubc94\uc704\uc640 \ubaa8\uc21c \uc774\ub825", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/crs_metadata.md", "file_type": "document", "degree": 1}, {"id": "concepts_crs_metadata_\uc0ac\uc6a9\ucc98", "label": "\uc0ac\uc6a9\ucc98", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\ucc98", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/crs_metadata.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface", "label": "files_surface.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "files_surface.md", "community": 8, "community_name": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "label": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 35.0, "font": {"size": 12, "color": "#ffffff"}, "title": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "community": 8, "community_name": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 10}, {"id": "concepts_db_schema_files_surface_upload_sessions_\uc5c5\ub85c\ub4dc_\uc138\uc158", "label": "upload_sessions (\uc5c5\ub85c\ub4dc \uc138\uc158)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "upload_sessions (\uc5c5\ub85c\ub4dc \uc138\uc158)", "community": 8, "community_name": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_upload_chunks_\uc5c5\ub85c\ub4dc_\uccad\ud06c_\ub370\uc774\ud130", "label": "upload_chunks (\uc5c5\ub85c\ub4dc \uccad\ud06c \ub370\uc774\ud130)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "upload_chunks (\uc5c5\ub85c\ub4dc \uccad\ud06c \ub370\uc774\ud130)", "community": 8, "community_name": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_input_files_\uc785\ub825_\uc6d0\ubcf8_\ud30c\uc77c", "label": "input_files (\uc785\ub825 \uc6d0\ubcf8 \ud30c\uc77c)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "input_files (\uc785\ub825 \uc6d0\ubcf8 \ud30c\uc77c)", "community": 8, "community_name": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_processed_point_cloud_\ud544\ud130_\ubcc0\ud658_\ud3ec\uc778\ud2b8\ud074\ub77c\uc6b0\ub4dc", "label": "processed_point_cloud (\ud544\ud130/\ubcc0\ud658 \ud3ec\uc778\ud2b8\ud074\ub77c\uc6b0\ub4dc)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "processed_point_cloud (\ud544\ud130/\ubcc0\ud658 \ud3ec\uc778\ud2b8\ud074\ub77c\uc6b0\ub4dc)", "community": 8, "community_name": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_surface_models_\uc9c0\ud45c\uba74_\ubaa8\ub378_\ubc0f_\ub4f1\uace0\uc120", "label": "surface_models (\uc9c0\ud45c\uba74 \ubaa8\ub378 \ubc0f \ub4f1\uace0\uc120)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "surface_models (\uc9c0\ud45c\uba74 \ubaa8\ub378 \ubc0f \ub4f1\uace0\uc120)", "community": 8, "community_name": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_terrain_layers_\uc9c0\ud615_\ub808\uc774\uc5b4", "label": "terrain_layers (\uc9c0\ud615 \ub808\uc774\uc5b4)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "terrain_layers (\uc9c0\ud615 \ub808\uc774\uc5b4)", "community": 8, "community_name": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_input_files_status_\uac12", "label": "input_files.status \uac12", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "input_files.status \uac12", "community": 8, "community_name": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_surface_models_status_\uac12", "label": "surface_models.status \uac12", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "surface_models.status \uac12", "community": 8, "community_name": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_processed_point_cloud_status_\uac12", "label": "processed_point_cloud.status \uac12", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "processed_point_cloud.status \uac12", "community": 8, "community_name": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring", "label": "logs_monitoring.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "logs_monitoring.md", "community": 5, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "label": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 37.5, "font": {"size": 12, "color": "#ffffff"}, "title": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "community": 5, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 11}, {"id": "concepts_db_schema_logs_monitoring_login_logs_\ub85c\uadf8\uc778_\uc2dc\ub3c4_\ub85c\uadf8", "label": "login_logs (\ub85c\uadf8\uc778 \uc2dc\ub3c4 \ub85c\uadf8)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "login_logs (\ub85c\uadf8\uc778 \uc2dc\ub3c4 \ub85c\uadf8)", "community": 5, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_activity_logs_\uc0ac\uc6a9\uc790_\ud65c\ub3d9_\ub85c\uadf8", "label": "activity_logs (\uc0ac\uc6a9\uc790 \ud65c\ub3d9 \ub85c\uadf8)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "activity_logs (\uc0ac\uc6a9\uc790 \ud65c\ub3d9 \ub85c\uadf8)", "community": 5, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_audit_logs_\uac10\uc0ac_\ub85c\uadf8", "label": "audit_logs (\uac10\uc0ac \ub85c\uadf8)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "audit_logs (\uac10\uc0ac \ub85c\uadf8)", "community": 5, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_system_audit_logs_\ud504\ub85c\uc81d\ud2b8_\uc870\uc9c1_\ubcc0\uacbd_\uac10\uc0ac_\ub85c\uadf8", "label": "system_audit_logs (\ud504\ub85c\uc81d\ud2b8/\uc870\uc9c1 \ubcc0\uacbd \uac10\uc0ac \ub85c\uadf8)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "system_audit_logs (\ud504\ub85c\uc81d\ud2b8/\uc870\uc9c1 \ubcc0\uacbd \uac10\uc0ac \ub85c\uadf8)", "community": 5, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_system_admin_logs_\uc2dc\uc2a4\ud15c_\uad00\ub9ac\uc790_\ud589\uc704_\ub85c\uadf8", "label": "system_admin_logs (\uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790 \ud589\uc704 \ub85c\uadf8)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "system_admin_logs (\uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790 \ud589\uc704 \ub85c\uadf8)", "community": 5, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_system_resources_\uc2dc\uc2a4\ud15c_\uc790\uc6d0_\uacc4\uce21", "label": "system_resources (\uc2dc\uc2a4\ud15c \uc790\uc6d0 \uacc4\uce21)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "system_resources (\uc2dc\uc2a4\ud15c \uc790\uc6d0 \uacc4\uce21)", "community": 5, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_support_requests_\uae30\uc220_\uc9c0\uc6d0_\uc694\uccad", "label": "support_requests (\uae30\uc220 \uc9c0\uc6d0 \uc694\uccad)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "support_requests (\uae30\uc220 \uc9c0\uc6d0 \uc694\uccad)", "community": 5, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_change_logs_\uc124\uacc4_\ubcc0\uacbd_\uc774\ub825", "label": "change_logs (\uc124\uacc4 \ubcc0\uacbd \uc774\ub825)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "change_logs (\uc124\uacc4 \ubcc0\uacbd \uc774\ub825)", "community": 5, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_system_audit_logs_\uc0ac\uc6a9\ucc98_b01_b02", "label": "system_audit_logs \u2014 \uc0ac\uc6a9\ucc98 (B01, B02)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "system_audit_logs \u2014 \uc0ac\uc6a9\ucc98 (B01, B02)", "community": 5, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_\ub9ac\uc18c\uc2a4_api_system_admin_\uc804\uc6a9", "label": "\ub9ac\uc18c\uc2a4 API (SYSTEM_ADMIN \uc804\uc6a9)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub9ac\uc18c\uc2a4 API (SYSTEM_ADMIN \uc804\uc6a9)", "community": 5, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_overview", "label": "overview.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "overview.md", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/overview.md", "file_type": "document", "degree": 2}, {"id": "concepts_db_schema_overview_db_\uc2a4\ud0a4\ub9c8_\uac1c\uc694", "label": "DB \uc2a4\ud0a4\ub9c8 \uac1c\uc694", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "DB \uc2a4\ud0a4\ub9c8 \uac1c\uc694", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/overview.md", "file_type": "document", "degree": 5}, {"id": "concepts_db_schema_overview_\ud14c\uc774\ube14_\uadf8\ub8f9_9\uac1c", "label": "\ud14c\uc774\ube14 \uadf8\ub8f9 (9\uac1c)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud14c\uc774\ube14 \uadf8\ub8f9 (9\uac1c)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/overview.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_overview_\ud30c\uc77c_\uacbd\ub85c_\ucd94\uc801_\uceec\ub7fc_db\uc5d0_\uacbd\ub85c\ub9cc_\uae30\ub85d_\uc2e4_\ud30c\uc77c\uc740_\ud30c\uc77c\uc2dc\uc2a4\ud15c", "label": "\ud30c\uc77c \uacbd\ub85c \ucd94\uc801 \uceec\ub7fc (DB\uc5d0 \uacbd\ub85c\ub9cc \uae30\ub85d, \uc2e4 \ud30c\uc77c\uc740 \ud30c\uc77c\uc2dc\uc2a4\ud15c)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uacbd\ub85c \ucd94\uc801 \uceec\ub7fc (DB\uc5d0 \uacbd\ub85c\ub9cc \uae30\ub85d, \uc2e4 \ud30c\uc77c\uc740 \ud30c\uc77c\uc2dc\uc2a4\ud15c)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/overview.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_overview_\uc124\uacc4_\uc6d0\uce59", "label": "\uc124\uacc4 \uc6d0\uce59", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc124\uacc4 \uc6d0\uce59", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/overview.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_overview_\ud14c\uc774\ube14_\uad00\uacc4_\ud575\uc2ec_\ud750\ub984", "label": "\ud14c\uc774\ube14 \uad00\uacc4 (\ud575\uc2ec \ud750\ub984)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud14c\uc774\ube14 \uad00\uacc4 (\ud575\uc2ec \ud750\ub984)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/overview.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_projects", "label": "projects.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "projects.md", "community": 45, "community_name": "DB: \ud504\ub85c\uc81d\ud2b8 \uad00\ub9ac \ud14c\uc774\ube14", "source_file": "concepts/db_schema/projects.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_projects_db_\ud504\ub85c\uc81d\ud2b8_\uad00\ub9ac_\ud14c\uc774\ube14", "label": "DB: \ud504\ub85c\uc81d\ud2b8 \uad00\ub9ac \ud14c\uc774\ube14", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "DB: \ud504\ub85c\uc81d\ud2b8 \uad00\ub9ac \ud14c\uc774\ube14", "community": 45, "community_name": "DB: \ud504\ub85c\uc81d\ud2b8 \uad00\ub9ac \ud14c\uc774\ube14", "source_file": "concepts/db_schema/projects.md", "file_type": "document", "degree": 5}, {"id": "concepts_db_schema_projects_projects_\ud504\ub85c\uc81d\ud2b8", "label": "projects (\ud504\ub85c\uc81d\ud2b8)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "projects (\ud504\ub85c\uc81d\ud2b8)", "community": 45, "community_name": "DB: \ud504\ub85c\uc81d\ud2b8 \uad00\ub9ac \ud14c\uc774\ube14", "source_file": "concepts/db_schema/projects.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_projects_project_versions_\ud504\ub85c\uc81d\ud2b8_\ubc84\uc804_\uc2a4\ub0c5\uc0f7", "label": "project_versions (\ud504\ub85c\uc81d\ud2b8 \ubc84\uc804 \uc2a4\ub0c5\uc0f7)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "project_versions (\ud504\ub85c\uc81d\ud2b8 \ubc84\uc804 \uc2a4\ub0c5\uc0f7)", "community": 45, "community_name": "DB: \ud504\ub85c\uc81d\ud2b8 \uad00\ub9ac \ud14c\uc774\ube14", "source_file": "concepts/db_schema/projects.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_projects_project_automations_\ud504\ub85c\uc81d\ud2b8_\uc790\ub3d9\ud654_\uc815\ucc45", "label": "project_automations (\ud504\ub85c\uc81d\ud2b8 \uc790\ub3d9\ud654 \uc815\ucc45)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "project_automations (\ud504\ub85c\uc81d\ud2b8 \uc790\ub3d9\ud654 \uc815\ucc45)", "community": 45, "community_name": "DB: \ud504\ub85c\uc81d\ud2b8 \uad00\ub9ac \ud14c\uc774\ube14", "source_file": "concepts/db_schema/projects.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_projects_project_workflow_stages_\ub2e8\uacc4\ubcc4_\uc0c1\uc138_\uc0c1\ud0dc", "label": "project_workflow_stages (\ub2e8\uacc4\ubcc4 \uc0c1\uc138 \uc0c1\ud0dc)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "project_workflow_stages (\ub2e8\uacc4\ubcc4 \uc0c1\uc138 \uc0c1\ud0dc)", "community": 45, "community_name": "DB: \ud504\ub85c\uc81d\ud2b8 \uad00\ub9ac \ud14c\uc774\ube14", "source_file": "concepts/db_schema/projects.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile", "label": "route_profile.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "route_profile.md", "community": 9, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "label": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 30.0, "font": {"size": 12, "color": "#ffffff"}, "title": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "community": 9, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 8}, {"id": "concepts_db_schema_route_profile_routes_\ub178\uc120_\uacbd\ub85c", "label": "routes (\ub178\uc120 \uacbd\ub85c)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "routes (\ub178\uc120 \uacbd\ub85c)", "community": 9, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_route_points_\uacbd\ub85c_\uc88c\ud45c\uc810", "label": "route_points (\uacbd\ub85c \uc88c\ud45c\uc810)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "route_points (\uacbd\ub85c \uc88c\ud45c\uc810)", "community": 9, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_route_statistics_\ub178\uc120_\ud1b5\uacc4", "label": "route_statistics (\ub178\uc120 \ud1b5\uacc4)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "route_statistics (\ub178\uc120 \ud1b5\uacc4)", "community": 9, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_longitudinal_sections_\uc885\ub2e8\uba74_\uc124\uacc4", "label": "longitudinal_sections (\uc885\ub2e8\uba74 \uc124\uacc4)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "longitudinal_sections (\uc885\ub2e8\uba74 \uc124\uacc4)", "community": 9, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 3}, {"id": "concepts_db_schema_route_profile_data_\uceec\ub7fc_\ub0b4_options_\uc2a4\ub0c5\uc0f7_\uad6c\uc870_2026_07_19_\ub3c4\uc785", "label": "`data` \uceec\ub7fc \ub0b4 `options` \uc2a4\ub0c5\uc0f7 \uad6c\uc870 (2026-07-19 \ub3c4\uc785)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "`data` \uceec\ub7fc \ub0b4 `options` \uc2a4\ub0c5\uc0f7 \uad6c\uc870 (2026-07-19 \ub3c4\uc785)", "community": 9, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_data_\uceec\ub7fc_\ub0b4_profile_alignment_\uad6c\uc870_2026_07_23_\ub3c4\uc785", "label": "`data` \uceec\ub7fc \ub0b4 `profile_alignment` \uad6c\uc870 (2026-07-23 \ub3c4\uc785)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "`data` \uceec\ub7fc \ub0b4 `profile_alignment` \uad6c\uc870 (2026-07-23 \ub3c4\uc785)", "community": 9, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_cross_sections_\ud6a1\ub2e8\uba74_\uc124\uacc4", "label": "cross_sections (\ud6a1\ub2e8\uba74 \uc124\uacc4)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "cross_sections (\ud6a1\ub2e8\uba74 \uc124\uacc4)", "community": 9, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_routes_status_\ud750\ub984", "label": "routes.status \ud750\ub984", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "routes.status \ud750\ub984", "community": 9, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_cross_sections_data_structures", "label": "cross_sections.data.structures", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "cross_sections.data.structures", "community": 9, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_longitudinal_alignment", "label": "longitudinal_alignment.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "longitudinal_alignment.md", "community": 148, "community_name": "longitudinal_alignment.md", "source_file": "concepts/db_schema/route_profile/longitudinal_alignment.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_longitudinal_alignment_db_longitudinal_sections_data_profile_alignment_\uad6c\uc870", "label": "DB: longitudinal_sections.data.profile_alignment \uad6c\uc870", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DB: longitudinal_sections.data.profile_alignment \uad6c\uc870", "community": 148, "community_name": "longitudinal_alignment.md", "source_file": "concepts/db_schema/route_profile/longitudinal_alignment.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_structure_output", "label": "structure_output.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "structure_output.md", "community": 34, "community_name": "DB: \uad6c\uc870\ubb3c/\uc218\ub7c9/\uc0b0\ucd9c\ubb3c \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "label": "DB: \uad6c\uc870\ubb3c/\uc218\ub7c9/\uc0b0\ucd9c\ubb3c \ud14c\uc774\ube14", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "DB: \uad6c\uc870\ubb3c/\uc218\ub7c9/\uc0b0\ucd9c\ubb3c \ud14c\uc774\ube14", "community": 34, "community_name": "DB: \uad6c\uc870\ubb3c/\uc218\ub7c9/\uc0b0\ucd9c\ubb3c \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 6}, {"id": "concepts_db_schema_structure_output_structures_\ubc30\uce58_\uad6c\uc870\ubb3c", "label": "structures (\ubc30\uce58 \uad6c\uc870\ubb3c)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "structures (\ubc30\uce58 \uad6c\uc870\ubb3c)", "community": 34, "community_name": "DB: \uad6c\uc870\ubb3c/\uc218\ub7c9/\uc0b0\ucd9c\ubb3c \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_structure_output_quantity_items_\uc218\ub7c9_\uc0b0\ucd9c_\ud56d\ubaa9", "label": "quantity_items (\uc218\ub7c9 \uc0b0\ucd9c \ud56d\ubaa9)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "quantity_items (\uc218\ub7c9 \uc0b0\ucd9c \ud56d\ubaa9)", "community": 34, "community_name": "DB: \uad6c\uc870\ubb3c/\uc218\ub7c9/\uc0b0\ucd9c\ubb3c \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_structure_output_outputs_\ucd5c\uc885_\uacac\uc801_\ub3c4\uba74_\uc0b0\ucd9c_\uc138\uc158", "label": "outputs (\ucd5c\uc885 \uacac\uc801/\ub3c4\uba74 \uc0b0\ucd9c \uc138\uc158)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "outputs (\ucd5c\uc885 \uacac\uc801/\ub3c4\uba74 \uc0b0\ucd9c \uc138\uc158)", "community": 34, "community_name": "DB: \uad6c\uc870\ubb3c/\uc218\ub7c9/\uc0b0\ucd9c\ubb3c \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_structure_output_output_files_\uac1c\ubcc4_\uc0b0\ucd9c_\ud30c\uc77c_\ub9ac\uc2a4\ud2b8", "label": "output_files (\uac1c\ubcc4 \uc0b0\ucd9c \ud30c\uc77c \ub9ac\uc2a4\ud2b8)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "output_files (\uac1c\ubcc4 \uc0b0\ucd9c \ud30c\uc77c \ub9ac\uc2a4\ud2b8)", "community": 34, "community_name": "DB: \uad6c\uc870\ubb3c/\uc218\ub7c9/\uc0b0\ucd9c\ubb3c \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_structure_output_quantity_items_\ucd1d\ube44\uc6a9_\uacc4\uc0b0_\uc608", "label": "quantity_items \ucd1d\ube44\uc6a9 \uacc4\uc0b0 \uc608", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "quantity_items \ucd1d\ube44\uc6a9 \uacc4\uc0b0 \uc608", "community": 34, "community_name": "DB: \uad6c\uc870\ubb3c/\uc218\ub7c9/\uc0b0\ucd9c\ubb3c \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_unconfirmed_readme", "label": "README.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "README.md", "community": 115, "community_name": "\ubbf8\ud655\uc815 \ud14c\uc774\ube14 \ubcf4\uad00\uc18c (Unconfirmed DB Schemas)", "source_file": "concepts/db_schema/unconfirmed/README.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_unconfirmed_readme_\ubbf8\ud655\uc815_\ud14c\uc774\ube14_\ubcf4\uad00\uc18c_unconfirmed_db_schemas", "label": "\ubbf8\ud655\uc815 \ud14c\uc774\ube14 \ubcf4\uad00\uc18c (Unconfirmed DB Schemas)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\ubbf8\ud655\uc815 \ud14c\uc774\ube14 \ubcf4\uad00\uc18c (Unconfirmed DB Schemas)", "community": 115, "community_name": "\ubbf8\ud655\uc815 \ud14c\uc774\ube14 \ubcf4\uad00\uc18c (Unconfirmed DB Schemas)", "source_file": "concepts/db_schema/unconfirmed/README.md", "file_type": "document", "degree": 2}, {"id": "concepts_db_schema_unconfirmed_readme_\uc6b4\uc601_\uaddc\uce59", "label": "\uc6b4\uc601 \uaddc\uce59", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6b4\uc601 \uaddc\uce59", "community": 115, "community_name": "\ubbf8\ud655\uc815 \ud14c\uc774\ube14 \ubcf4\uad00\uc18c (Unconfirmed DB Schemas)", "source_file": "concepts/db_schema/unconfirmed/README.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth", "label": "users_auth.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "users_auth.md", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 2}, {"id": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "label": "DB: \uc0ac\uc6a9\uc790/\uc778\uc99d/\uc870\uc9c1 \ud14c\uc774\ube14", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 30.0, "font": {"size": 12, "color": "#ffffff"}, "title": "DB: \uc0ac\uc6a9\uc790/\uc778\uc99d/\uc870\uc9c1 \ud14c\uc774\ube14", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 8}, {"id": "concepts_db_schema_users_auth_users_\uc0ac\uc6a9\uc790", "label": "users (\uc0ac\uc6a9\uc790)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "users (\uc0ac\uc6a9\uc790)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth_companies_\ud68c\uc0ac", "label": "companies (\ud68c\uc0ac)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "companies (\ud68c\uc0ac)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth_sessions_\uc138\uc158", "label": "sessions (\uc138\uc158)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "sessions (\uc138\uc158)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth_email_otps_\uc774\uba54\uc77c_otp", "label": "email_otps (\uc774\uba54\uc77c OTP)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "email_otps (\uc774\uba54\uc77c OTP)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth_trusted_devices_\uc2e0\ub8b0_\uae30\uae30", "label": "trusted_devices (\uc2e0\ub8b0 \uae30\uae30)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "trusted_devices (\uc2e0\ub8b0 \uae30\uae30)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth_join_requests_\ud68c\uc0ac_\uac00\uc785_\uc2e0\uccad", "label": "join_requests (\ud68c\uc0ac \uac00\uc785 \uc2e0\uccad)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "join_requests (\ud68c\uc0ac \uac00\uc785 \uc2e0\uccad)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth_user_consents_\uc57d\uad00_\ub3d9\uc758", "label": "user_consents (\uc57d\uad00 \ub3d9\uc758)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "user_consents (\uc57d\uad00 \ub3d9\uc758)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_dependencies", "label": "dependencies.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies.md", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/dependencies.md", "file_type": "document", "degree": 4}, {"id": "concepts_dependencies_\uc678\ubd80_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc758\uc874\uc131", "label": "\uc678\ubd80 \ub77c\uc774\ube0c\ub7ec\ub9ac \uc758\uc874\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\uc678\ubd80 \ub77c\uc774\ube0c\ub7ec\ub9ac \uc758\uc874\uc131", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/dependencies.md", "file_type": "document", "degree": 4}, {"id": "concepts_dependencies_\ubc31\uc5d4\ub4dc_python_3_12_7", "label": "\ubc31\uc5d4\ub4dc (Python 3.12.7)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc31\uc5d4\ub4dc (Python 3.12.7)", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/dependencies.md", "file_type": "document", "degree": 1}, {"id": "concepts_dependencies_\ud504\ub860\ud2b8\uc5d4\ub4dc_typescript_node_js", "label": "\ud504\ub860\ud2b8\uc5d4\ub4dc (TypeScript/Node.js)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud504\ub860\ud2b8\uc5d4\ub4dc (TypeScript/Node.js)", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/dependencies.md", "file_type": "document", "degree": 1}, {"id": "concepts_dependencies_\uc120\uc815_\uc6d0\uce59_agent_md_3\uc808", "label": "\uc120\uc815 \uc6d0\uce59 (agent.md 3\uc808)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc120\uc815 \uc6d0\uce59 (agent.md 3\uc808)", "community": 2, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/dependencies.md", "file_type": "document", "degree": 1}, {"id": "concepts_design", "label": "design.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "design.md", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/design.md", "file_type": "document", "degree": 2}, {"id": "concepts_design_\ub514\uc790\uc778_\uc2dc\uc2a4\ud15c_design_system", "label": "\ub514\uc790\uc778 \uc2dc\uc2a4\ud15c (Design System)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\ub514\uc790\uc778 \uc2dc\uc2a4\ud15c (Design System)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/design.md", "file_type": "document", "degree": 6}, {"id": "concepts_design_\ube44\uc8fc\uc5bc_\ud14c\ub9c8", "label": "\ube44\uc8fc\uc5bc \ud14c\ub9c8", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ube44\uc8fc\uc5bc \ud14c\ub9c8", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/design.md", "file_type": "document", "degree": 1}, {"id": "concepts_design_\ud575\uc2ec_\uc0c9\uc0c1_\ud1a0\ud070_colors", "label": "\ud575\uc2ec \uc0c9\uc0c1 \ud1a0\ud070 (Colors)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud575\uc2ec \uc0c9\uc0c1 \ud1a0\ud070 (Colors)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/design.md", "file_type": "document", "degree": 1}, {"id": "concepts_design_\ud0c0\uc774\ud3ec\uadf8\ub798\ud53c_typography", "label": "\ud0c0\uc774\ud3ec\uadf8\ub798\ud53c (Typography)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud0c0\uc774\ud3ec\uadf8\ub798\ud53c (Typography)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/design.md", "file_type": "document", "degree": 1}, {"id": "concepts_design_\ub808\uc774\uc544\uc6c3_\ubc0f_\ub465\uadfc_\ud14c\ub450\ub9ac_radius_spacing", "label": "\ub808\uc774\uc544\uc6c3 \ubc0f \ub465\uadfc \ud14c\ub450\ub9ac (Radius & Spacing)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub808\uc774\uc544\uc6c3 \ubc0f \ub465\uadfc \ud14c\ub450\ub9ac (Radius & Spacing)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/design.md", "file_type": "document", "degree": 1}, {"id": "concepts_design_\uc804\uc5ed_\uc2a4\ud06c\ub864\ubc14_\ub514\uc790\uc778_scrollbars", "label": "\uc804\uc5ed \uc2a4\ud06c\ub864\ubc14 \ub514\uc790\uc778 (Scrollbars)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc804\uc5ed \uc2a4\ud06c\ub864\ubc14 \ub514\uc790\uc778 (Scrollbars)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/design.md", "file_type": "document", "degree": 1}, {"id": "concepts_design_data_lifecycle", "label": "design_data_lifecycle.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "design_data_lifecycle.md", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/design_data_lifecycle.md", "file_type": "document", "degree": 3}, {"id": "concepts_design_data_lifecycle_\uc124\uacc4_\ub370\uc774\ud130_\uc0dd\uba85\uc8fc\uae30", "label": "\uc124\uacc4 \ub370\uc774\ud130 \uc0dd\uba85\uc8fc\uae30", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\uc124\uacc4 \ub370\uc774\ud130 \uc0dd\uba85\uc8fc\uae30", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/design_data_lifecycle.md", "file_type": "document", "degree": 4}, {"id": "concepts_design_data_lifecycle_\uc815\ubcf8_\uc138_\ubc8c", "label": "\uc815\ubcf8 \uc138 \ubc8c", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc815\ubcf8 \uc138 \ubc8c", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/design_data_lifecycle.md", "file_type": "document", "degree": 1}, {"id": "concepts_design_data_lifecycle_\uacc4\ud68d\ub178\uc120_\uaddc\uce59", "label": "\uacc4\ud68d\ub178\uc120 \uaddc\uce59", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacc4\ud68d\ub178\uc120 \uaddc\uce59", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/design_data_lifecycle.md", "file_type": "document", "degree": 1}, {"id": "concepts_design_data_lifecycle_\uacc4\uc0b0_\uad6c\ud604_\uc6d0\uce59", "label": "\uacc4\uc0b0 \uad6c\ud604 \uc6d0\uce59", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacc4\uc0b0 \uad6c\ud604 \uc6d0\uce59", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/design_data_lifecycle.md", "file_type": "document", "degree": 1}, {"id": "concepts_drainage_watershed", "label": "drainage_watershed.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "drainage_watershed.md", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/drainage_watershed.md", "file_type": "document", "degree": 4}, {"id": "concepts_drainage_watershed_\ubc30\uc218\uc720\uc5ed_\ud574\uc11d_\ubc0f_\uc138\ubd80\uc124\uacc4_drainage_watershed", "label": "\ubc30\uc218\uc720\uc5ed \ud574\uc11d \ubc0f \uc138\ubd80\uc124\uacc4 (Drainage Watershed)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 32.5, "font": {"size": 12, "color": "#ffffff"}, "title": "\ubc30\uc218\uc720\uc5ed \ud574\uc11d \ubc0f \uc138\ubd80\uc124\uacc4 (Drainage Watershed)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/drainage_watershed.md", "file_type": "document", "degree": 9}, {"id": "concepts_drainage_watershed_1_b04_vs_b05_\uc5ed\ud560_\ubd84\ub2f4_\ubc0f_\uc77c\uc6d0\ud654", "label": "1. B04 vs B05 \uc5ed\ud560 \ubd84\ub2f4 \ubc0f \uc77c\uc6d0\ud654", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. B04 vs B05 \uc5ed\ud560 \ubd84\ub2f4 \ubc0f \uc77c\uc6d0\ud654", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/drainage_watershed.md", "file_type": "document", "degree": 1}, {"id": "concepts_drainage_watershed_2_\uacf5\uc6a9_\ubc30\uc218_\uc5d4\uc9c4_\ubc0f_wamis_\uac15\uc6b0\ub7c9_\uc5f0\ub3d9_phase_1_2_2026_08_13_\uad00\uce21\uc18c_\uc804\ud658", "label": "2. \uacf5\uc6a9 \ubc30\uc218 \uc5d4\uc9c4 \ubc0f WAMIS \uac15\uc6b0\ub7c9 \uc5f0\ub3d9 (Phase 1~2, 2026-08-13 \uad00\uce21\uc18c \uc804\ud658)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uacf5\uc6a9 \ubc30\uc218 \uc5d4\uc9c4 \ubc0f WAMIS \uac15\uc6b0\ub7c9 \uc5f0\ub3d9 (Phase 1~2, 2026-08-13 \uad00\uce21\uc18c \uc804\ud658)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/drainage_watershed.md", "file_type": "document", "degree": 1}, {"id": "concepts_drainage_watershed_3_\uad6c\uc870\ubb3c_3\ub2e8_\uc635\uc158_\uccb4\uacc4_ui_phase_3_5", "label": "3. \uad6c\uc870\ubb3c 3\ub2e8 \uc635\uc158 \uccb4\uacc4 & UI (Phase 3~5)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uad6c\uc870\ubb3c 3\ub2e8 \uc635\uc158 \uccb4\uacc4 & UI (Phase 3~5)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/drainage_watershed.md", "file_type": "document", "degree": 1}, {"id": "concepts_drainage_watershed_4_\ud574\uc11d_\uc54c\uace0\ub9ac\uc998_\ub4f1\uace0\uc120_\ud558\uac15_contour_descent", "label": "4. \ud574\uc11d \uc54c\uace0\ub9ac\uc998 \u2014 \ub4f1\uace0\uc120 \ud558\uac15 (Contour Descent)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \ud574\uc11d \uc54c\uace0\ub9ac\uc998 \u2014 \ub4f1\uace0\uc120 \ud558\uac15 (Contour Descent)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/drainage_watershed.md", "file_type": "document", "degree": 1}, {"id": "concepts_drainage_watershed_5_\uc801\uc0c9_\uccad\uc0c9_\ud310\uc815_\ubc0f_\uc720\uc5ed_\ud655\uc7a5", "label": "5. \uc801\uc0c9/\uccad\uc0c9 \ud310\uc815 \ubc0f \uc720\uc5ed \ud655\uc7a5", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \uc801\uc0c9/\uccad\uc0c9 \ud310\uc815 \ubc0f \uc720\uc5ed \ud655\uc7a5", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/drainage_watershed.md", "file_type": "document", "degree": 1}, {"id": "concepts_drainage_watershed_6_\ud3c9\uade0_\ud750\ub984_\ud654\uc0b4\ud45c_flow_arrows_\ubc0f_\ud750\ub984\uac15\ub3c4_\ub7a8\ud504", "label": "6. \ud3c9\uade0 \ud750\ub984 \ud654\uc0b4\ud45c (Flow Arrows) \ubc0f \ud750\ub984\uac15\ub3c4 \ub7a8\ud504", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \ud3c9\uade0 \ud750\ub984 \ud654\uc0b4\ud45c (Flow Arrows) \ubc0f \ud750\ub984\uac15\ub3c4 \ub7a8\ud504", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/drainage_watershed.md", "file_type": "document", "degree": 1}, {"id": "concepts_drainage_watershed_7_\uc601\uad6c\uc800\uc7a5\uc18c_\uc0b0\ucd9c\ubb3c_\uad6c\uc870", "label": "7. \uc601\uad6c\uc800\uc7a5\uc18c \uc0b0\ucd9c\ubb3c \uad6c\uc870", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "7. \uc601\uad6c\uc800\uc7a5\uc18c \uc0b0\ucd9c\ubb3c \uad6c\uc870", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/drainage_watershed.md", "file_type": "document", "degree": 1}, {"id": "concepts_drainage_watershed_8_b08_\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "label": "8. B08 \uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "8. B08 \uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/drainage_watershed.md", "file_type": "document", "degree": 1}, {"id": "concepts_las_free_sheet_surface", "label": "las_free_sheet_surface.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "las_free_sheet_surface.md", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/las_free_sheet_surface.md", "file_type": "document", "degree": 2}, {"id": "concepts_las_free_sheet_surface_las_\uc5c6\ub294_\ub3c4\uc5fd\ub4f1\uace0\uc120_\uc11c\ud53c\uc2a4", "label": "LAS \uc5c6\ub294 \ub3c4\uc5fd\ub4f1\uace0\uc120 \uc11c\ud53c\uc2a4", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "LAS \uc5c6\ub294 \ub3c4\uc5fd\ub4f1\uace0\uc120 \uc11c\ud53c\uc2a4", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/las_free_sheet_surface.md", "file_type": "document", "degree": 5}, {"id": "concepts_las_free_sheet_surface_\uacc4\uc57d\uacfc_\ud655\uc815\uac12", "label": "\uacc4\uc57d\uacfc \ud655\uc815\uac12", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacc4\uc57d\uacfc \ud655\uc815\uac12", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/las_free_sheet_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_las_free_sheet_surface_\ud750\ub984", "label": "\ud750\ub984", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud750\ub984", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/las_free_sheet_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_las_free_sheet_surface_e2e_\uacb0\uacfc", "label": "E2E \uacb0\uacfc", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "E2E \uacb0\uacfc", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/las_free_sheet_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_las_free_sheet_surface_\ubbf8\uacb0", "label": "\ubbf8\uacb0", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubbf8\uacb0", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/las_free_sheet_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_law_source_quality", "label": "law_source_quality.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "law_source_quality.md", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/law_source_quality.md", "file_type": "document", "degree": 2}, {"id": "concepts_law_source_quality_\uc784\ub3c4\uae30\uc220\uad50\ubcf8_\uc6d0\ubb38_md_\ucd94\ucd9c_\ud488\uc9c8_\uacb0\ud568", "label": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/law_source_quality.md", "file_type": "document", "degree": 5}, {"id": "concepts_law_source_quality_\ud655\uc778_\ubc94\uc704", "label": "\ud655\uc778 \ubc94\uc704", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud655\uc778 \ubc94\uc704", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/law_source_quality.md", "file_type": "document", "degree": 1}, {"id": "concepts_law_source_quality_\uacb0\ud568_\uc720\ud615_\uc608\uc2dc_\uc704_\ud30c\uc77c_\uae30\uc900_\uc904\ubc88\ud638", "label": "\uacb0\ud568 \uc720\ud615 (\uc608\uc2dc = \uc704 \ud30c\uc77c \uae30\uc900 \uc904\ubc88\ud638)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacb0\ud568 \uc720\ud615 (\uc608\uc2dc = \uc704 \ud30c\uc77c \uae30\uc900 \uc904\ubc88\ud638)", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/law_source_quality.md", "file_type": "document", "degree": 1}, {"id": "concepts_law_source_quality_\uc6d0\uc778_\ucd94\uc815", "label": "\uc6d0\uc778 \ucd94\uc815", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6d0\uc778 \ucd94\uc815", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/law_source_quality.md", "file_type": "document", "degree": 1}, {"id": "concepts_law_source_quality_\uc870\uce58_\uc0c1\ud0dc", "label": "\uc870\uce58 \uc0c1\ud0dc", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc870\uce58 \uc0c1\ud0dc", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/law_source_quality.md", "file_type": "document", "degree": 1}, {"id": "concepts_mass_haul_diagram", "label": "mass_haul_diagram.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "mass_haul_diagram.md", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "concepts/mass_haul_diagram.md", "file_type": "document", "degree": 2}, {"id": "concepts_mass_haul_diagram_\uc720\ud1a0\uace1\uc120_mass_haul_diagram_\uacc4\uc0b0_\uba85\uc138", "label": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 27.5, "font": {"size": 12, "color": "#ffffff"}, "title": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "concepts/mass_haul_diagram.md", "file_type": "document", "degree": 7}, {"id": "concepts_mass_haul_diagram_1_\uac1c\uc694_\ubc0f_\ubd84\uc11d_\ubaa9\uc801", "label": "1. \uac1c\uc694 \ubc0f \ubd84\uc11d \ubaa9\uc801", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \ubd84\uc11d \ubaa9\uc801", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "concepts/mass_haul_diagram.md", "file_type": "document", "degree": 1}, {"id": "concepts_mass_haul_diagram_2_\uc8fc\uc694_\uacc4\uc0b0_\uc218\uc2dd_\ubc0f_\uc6d0\ub9ac_\uc2e4\ubb34_\uad00\ub840_\ubc18\uc601", "label": "2. \uc8fc\uc694 \uacc4\uc0b0 \uc218\uc2dd \ubc0f \uc6d0\ub9ac (\uc2e4\ubb34 \uad00\ub840 \ubc18\uc601)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uacc4\uc0b0 \uc218\uc2dd \ubc0f \uc6d0\ub9ac (\uc2e4\ubb34 \uad00\ub840 \ubc18\uc601)", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "concepts/mass_haul_diagram.md", "file_type": "document", "degree": 1}, {"id": "concepts_mass_haul_diagram_3_\uc9c0\ubc18\uc720\ud615\ubcc4_\ud1a0\ub7c9\ud658\uc0b0\uacc4\uc218_\uae30\ubcf8\uac12_config_system_py", "label": "3. \uc9c0\ubc18\uc720\ud615\ubcc4 \ud1a0\ub7c9\ud658\uc0b0\uacc4\uc218 \uae30\ubcf8\uac12 (`config_system.py`)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc9c0\ubc18\uc720\ud615\ubcc4 \ud1a0\ub7c9\ud658\uc0b0\uacc4\uc218 \uae30\ubcf8\uac12 (`config_system.py`)", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "concepts/mass_haul_diagram.md", "file_type": "document", "degree": 1}, {"id": "concepts_mass_haul_diagram_4_\ud1a0\uacf5_\uc6b4\ubc18\uc7a5\ube44_\uc120\uc815\uac70\ub9ac_\ubc0f_\ubd84\ubc30_\uae30\uc900_config_system_py", "label": "4. \ud1a0\uacf5 \uc6b4\ubc18\uc7a5\ube44 \uc120\uc815\uac70\ub9ac \ubc0f \ubd84\ubc30 \uae30\uc900 (`config_system.py`)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \ud1a0\uacf5 \uc6b4\ubc18\uc7a5\ube44 \uc120\uc815\uac70\ub9ac \ubc0f \ubd84\ubc30 \uae30\uc900 (`config_system.py`)", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "concepts/mass_haul_diagram.md", "file_type": "document", "degree": 1}, {"id": "concepts_mass_haul_diagram_5_\uc720\ud1a0\uace1\uc120_\uace1\uc120_\uc0ac\uc591_b06_\uad6c\ud604_v2", "label": "5. \uc720\ud1a0\uace1\uc120 \uace1\uc120 \uc0ac\uc591 (B06 \uad6c\ud604 v2)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \uc720\ud1a0\uace1\uc120 \uace1\uc120 \uc0ac\uc591 (B06 \uad6c\ud604 v2)", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "concepts/mass_haul_diagram.md", "file_type": "document", "degree": 1}, {"id": "concepts_mass_haul_diagram_6_\uc6f9\uc571_\uc5f0\ub3d9_\ubc0f_\uc2dc\uac01\ud654_\uba85\uc138_2026_08_02_\ud655\uc815", "label": "6. \uc6f9\uc571 \uc5f0\ub3d9 \ubc0f \uc2dc\uac01\ud654 \uba85\uc138 (2026-08-02 \ud655\uc815)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "6. \uc6f9\uc571 \uc5f0\ub3d9 \ubc0f \uc2dc\uac01\ud654 \uba85\uc138 (2026-08-02 \ud655\uc815)", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "concepts/mass_haul_diagram.md", "file_type": "document", "degree": 1}, {"id": "concepts_multi_environment_safety", "label": "multi_environment_safety.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "multi_environment_safety.md", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/multi_environment_safety.md", "file_type": "document", "degree": 4}, {"id": "concepts_multi_environment_safety_\ub2e4\uc911_\ud658\uacbd_\uc800\uc7a5\uc18c_\uacf5\uc6a9_db_\uc548\uc804", "label": "\ub2e4\uc911 \ud658\uacbd \uc800\uc7a5\uc18c\u00b7\uacf5\uc6a9 DB \uc548\uc804", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\ub2e4\uc911 \ud658\uacbd \uc800\uc7a5\uc18c\u00b7\uacf5\uc6a9 DB \uc548\uc804", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/multi_environment_safety.md", "file_type": "document", "degree": 6}, {"id": "concepts_multi_environment_safety_\ud655\uc778\ub41c_\uc704\ud5d8", "label": "\ud655\uc778\ub41c \uc704\ud5d8", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud655\uc778\ub41c \uc704\ud5d8", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/multi_environment_safety.md", "file_type": "document", "degree": 1}, {"id": "concepts_multi_environment_safety_\uc6b4\uc601_\uaddc\uce59", "label": "\uc6b4\uc601 \uaddc\uce59", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6b4\uc601 \uaddc\uce59", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/multi_environment_safety.md", "file_type": "document", "degree": 1}, {"id": "concepts_multi_environment_safety_\uc5ec\uc12f_\uc6cc\ud06c\ud2b8\ub9ac_\uc6b4\uc601_\ud655\uc815\ud310", "label": "\uc5ec\uc12f \uc6cc\ud06c\ud2b8\ub9ac \uc6b4\uc601 \ud655\uc815\ud310", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc5ec\uc12f \uc6cc\ud06c\ud2b8\ub9ac \uc6b4\uc601 \ud655\uc815\ud310", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/multi_environment_safety.md", "file_type": "document", "degree": 1}, {"id": "concepts_multi_environment_safety_\uc644\ub8cc_\ud310\uc815", "label": "\uc644\ub8cc \ud310\uc815", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc644\ub8cc \ud310\uc815", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/multi_environment_safety.md", "file_type": "document", "degree": 1}, {"id": "concepts_multi_environment_safety_\uc7ac\uacc4\uc0b0_\uc601\ud5a5", "label": "\uc7ac\uacc4\uc0b0 \uc601\ud5a5", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc7ac\uacc4\uc0b0 \uc601\ud5a5", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/multi_environment_safety.md", "file_type": "document", "degree": 1}, {"id": "concepts_quantity_cost_contract", "label": "quantity_cost_contract.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "quantity_cost_contract.md", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/quantity_cost_contract.md", "file_type": "document", "degree": 6}, {"id": "concepts_quantity_cost_contract_b08_\uc218\ub7c9_b09_\uc6d0\uac00_\uacc4\uc57d", "label": "B08 \uc218\ub7c9 \u2194 B09 \uc6d0\uac00 \uacc4\uc57d", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B08 \uc218\ub7c9 \u2194 B09 \uc6d0\uac00 \uacc4\uc57d", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/quantity_cost_contract.md", "file_type": "document", "degree": 4}, {"id": "concepts_quantity_cost_contract_\ucc45\uc784_\uacbd\uacc4", "label": "\ucc45\uc784 \uacbd\uacc4", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc45\uc784 \uacbd\uacc4", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/quantity_cost_contract.md", "file_type": "document", "degree": 1}, {"id": "concepts_quantity_cost_contract_\uc800\uc7a5_\uc778\uacc4_\uaddc\uce59", "label": "\uc800\uc7a5\u00b7\uc778\uacc4 \uaddc\uce59", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5\u00b7\uc778\uacc4 \uaddc\uce59", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/quantity_cost_contract.md", "file_type": "document", "degree": 1}, {"id": "concepts_quantity_cost_contract_\uae08\uc9c0_\uaddc\uce59", "label": "\uae08\uc9c0 \uaddc\uce59", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae08\uc9c0 \uaddc\uce59", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/quantity_cost_contract.md", "file_type": "document", "degree": 1}, {"id": "concepts_schema_common", "label": "schema_common.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "schema_common.md", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/schema_common.md", "file_type": "document", "degree": 2}, {"id": "concepts_schema_common_\uacf5\ud1b5_\uc2a4\ud0a4\ub9c8_pydantic_\uc694\uccad_\uc751\ub2f5_\uaddc\uce59", "label": "\uacf5\ud1b5 \uc2a4\ud0a4\ub9c8 (Pydantic \uc694\uccad/\uc751\ub2f5 \uaddc\uce59)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \uc2a4\ud0a4\ub9c8 (Pydantic \uc694\uccad/\uc751\ub2f5 \uaddc\uce59)", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/schema_common.md", "file_type": "document", "degree": 3}, {"id": "concepts_schema_common_\uac80\uc99d_\uc6d0\uce59_backend_md_4\uc808", "label": "\uac80\uc99d \uc6d0\uce59 (backend.md 4\uc808)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d \uc6d0\uce59 (backend.md 4\uc808)", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/schema_common.md", "file_type": "document", "degree": 1}, {"id": "concepts_schema_common_\uba85\uba85_\uaddc\uce59", "label": "\uba85\uba85 \uaddc\uce59", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uba85\uba85 \uaddc\uce59", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/schema_common.md", "file_type": "document", "degree": 1}, {"id": "concepts_standard_drawing_cost_inputs", "label": "standard_drawing_cost_inputs.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "standard_drawing_cost_inputs.md", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/standard_drawing_cost_inputs.md", "file_type": "document", "degree": 5}, {"id": "concepts_standard_drawing_cost_inputs_\ud45c\uc900\ub3c4_\uc218\ub7c9_\uc6d0\uac00_\uc785\ub825\uc758_\ubbf8\uacb0_\uacbd\uacc4", "label": "\ud45c\uc900\ub3c4\u00b7\uc218\ub7c9\u00b7\uc6d0\uac00 \uc785\ub825\uc758 \ubbf8\uacb0 \uacbd\uacc4", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\ud45c\uc900\ub3c4\u00b7\uc218\ub7c9\u00b7\uc6d0\uac00 \uc785\ub825\uc758 \ubbf8\uacb0 \uacbd\uacc4", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/standard_drawing_cost_inputs.md", "file_type": "document", "degree": 4}, {"id": "concepts_standard_drawing_cost_inputs_\ud655\uc778\ub41c_\ubd84\ub958", "label": "\ud655\uc778\ub41c \ubd84\ub958", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud655\uc778\ub41c \ubd84\ub958", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/standard_drawing_cost_inputs.md", "file_type": "document", "degree": 1}, {"id": "concepts_standard_drawing_cost_inputs_\uc7ac\uc870\uc0ac\ub85c_\ubc14\ub010_\ud310\uc815", "label": "\uc7ac\uc870\uc0ac\ub85c \ubc14\ub010 \ud310\uc815", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc7ac\uc870\uc0ac\ub85c \ubc14\ub010 \ud310\uc815", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/standard_drawing_cost_inputs.md", "file_type": "document", "degree": 1}, {"id": "concepts_standard_drawing_cost_inputs_\uc0ac\uc6a9\uc790_\uc790\ub8cc_\ub300\uae30", "label": "\uc0ac\uc6a9\uc790\u00b7\uc790\ub8cc \ub300\uae30", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\uc790\u00b7\uc790\ub8cc \ub300\uae30", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/standard_drawing_cost_inputs.md", "file_type": "document", "degree": 1}, {"id": "concepts_standard_quantity_open_2026_09_09", "label": "standard_quantity_open_2026-09-09.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "standard_quantity_open_2026-09-09.md", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/standard_quantity_open_2026-09-09.md", "file_type": "document", "degree": 3}, {"id": "concepts_standard_quantity_open_2026_09_09_2026_09_09_\ud45c\uc900\ub3c4_\uc218\ub7c9_\ubbf8\uacb0_\uadfc\uac70", "label": "2026-09-09 \ud45c\uc900\ub3c4\u00b7\uc218\ub7c9 \ubbf8\uacb0 \uadfc\uac70", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "2026-09-09 \ud45c\uc900\ub3c4\u00b7\uc218\ub7c9 \ubbf8\uacb0 \uadfc\uac70", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/standard_quantity_open_2026-09-09.md", "file_type": "document", "degree": 4}, {"id": "concepts_standard_quantity_open_2026_09_09_\uc801\uc6a9_\uc6d0\uce59", "label": "\uc801\uc6a9 \uc6d0\uce59", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc801\uc6a9 \uc6d0\uce59", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/standard_quantity_open_2026-09-09.md", "file_type": "document", "degree": 1}, {"id": "concepts_standard_quantity_open_2026_09_09_\uc8fc\uc694_\ubbf8\uacb0", "label": "\uc8fc\uc694 \ubbf8\uacb0", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc8fc\uc694 \ubbf8\uacb0", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/standard_quantity_open_2026-09-09.md", "file_type": "document", "degree": 1}, {"id": "concepts_standard_quantity_open_2026_09_09_\uc5f0\uacb0", "label": "\uc5f0\uacb0", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc5f0\uacb0", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "concepts/standard_quantity_open_2026-09-09.md", "file_type": "document", "degree": 1}, {"id": "concepts_storage_paths", "label": "storage_paths.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "storage_paths.md", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 4}, {"id": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "label": "\uc800\uc7a5 \uacbd\ub85c \uaddc\uce59 (Workflow-based Folder Structure)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\uc800\uc7a5 \uacbd\ub85c \uaddc\uce59 (Workflow-based Folder Structure)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 6}, {"id": "concepts_storage_paths_\uacbd\ub85c_\ud328\ud134", "label": "\uacbd\ub85c \ud328\ud134", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacbd\ub85c \ud328\ud134", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 1}, {"id": "concepts_storage_paths_\uc6d0\uce59_backend_md_3\uc808", "label": "\uc6d0\uce59 (backend.md 3\uc808)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6d0\uce59 (backend.md 3\uc808)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 1}, {"id": "concepts_storage_paths_db_\uceec\ub7fc_\uc2e4\uc81c_\uacbd\ub85c_\ub9e4\ud551", "label": "DB \uceec\ub7fc \u2194 \uc2e4\uc81c \uacbd\ub85c \ub9e4\ud551", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DB \uceec\ub7fc \u2194 \uc2e4\uc81c \uacbd\ub85c \ub9e4\ud551", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 1}, {"id": "concepts_storage_paths_\ud30c\uc77c\uba85_\uaddc\uce59_structure_md_1\uc808", "label": "\ud30c\uc77c\uba85 \uaddc\uce59 (structure.md 1\uc808)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c\uba85 \uaddc\uce59 (structure.md 1\uc808)", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 1}, {"id": "concepts_storage_paths_\ucf54\ub4dc_\uac10\uc0ac_\uc8fc\uc758\uc0ac\ud56d", "label": "\ucf54\ub4dc \uac10\uc0ac \uc8fc\uc758\uc0ac\ud56d", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucf54\ub4dc \uac10\uc0ac \uc8fc\uc758\uc0ac\ud56d", "community": 1, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 1}, {"id": "concepts_temp_upload", "label": "temp_upload.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "temp_upload.md", "community": 59, "community_name": "Temp Upload (\ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131 \uc804 \uc784\uc2dc \ubcf4\uad00\ud568)", "source_file": "concepts/temp_upload.md", "file_type": "document", "degree": 1}, {"id": "concepts_temp_upload_temp_upload_\ud504\ub85c\uc81d\ud2b8_\uc0dd\uc131_\uc804_\uc784\uc2dc_\ubcf4\uad00\ud568", "label": "Temp Upload (\ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131 \uc804 \uc784\uc2dc \ubcf4\uad00\ud568)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Temp Upload (\ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131 \uc804 \uc784\uc2dc \ubcf4\uad00\ud568)", "community": 59, "community_name": "Temp Upload (\ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131 \uc804 \uc784\uc2dc \ubcf4\uad00\ud568)", "source_file": "concepts/temp_upload.md", "file_type": "document", "degree": 4}, {"id": "concepts_temp_upload_\uc8fc\uc694_\uac1c\ub150_\ubc0f_\uc2a4\ud399", "label": "\uc8fc\uc694 \uac1c\ub150 \ubc0f \uc2a4\ud399", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc8fc\uc694 \uac1c\ub150 \ubc0f \uc2a4\ud399", "community": 59, "community_name": "Temp Upload (\ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131 \uc804 \uc784\uc2dc \ubcf4\uad00\ud568)", "source_file": "concepts/temp_upload.md", "file_type": "document", "degree": 1}, {"id": "concepts_temp_upload_\uc8fc\uc694_\uad6c\uc131_\uc694\uc18c", "label": "\uc8fc\uc694 \uad6c\uc131 \uc694\uc18c", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc8fc\uc694 \uad6c\uc131 \uc694\uc18c", "community": 59, "community_name": "Temp Upload (\ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131 \uc804 \uc784\uc2dc \ubcf4\uad00\ud568)", "source_file": "concepts/temp_upload.md", "file_type": "document", "degree": 1}, {"id": "concepts_temp_upload_\uc0ac\uc6a9\ucc98", "label": "\uc0ac\uc6a9\ucc98", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\ucc98", "community": 59, "community_name": "Temp Upload (\ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131 \uc804 \uc784\uc2dc \ubcf4\uad00\ud568)", "source_file": "concepts/temp_upload.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates", "label": "ui_templates.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "ui_templates.md", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 4}, {"id": "concepts_ui_templates_ui_templates_localization_components", "label": "UI Templates \u2014 Localization & Components", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "UI Templates \u2014 Localization & Components", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 12}, {"id": "concepts_ui_templates_ui_template_locale_ts_\ub2e4\uad6d\uc5b4_\uad00\ub9ac", "label": "ui_template_locale.ts (\ub2e4\uad6d\uc5b4 \uad00\ub9ac)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ui_template_locale.ts (\ub2e4\uad6d\uc5b4 \uad00\ub9ac)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_ui_template_resizer_ts_\ud328\ub110_\ub9ac\uc0ac\uc774\uc800_\ud15c\ud50c\ub9bf", "label": "ui_template_resizer.ts (\ud328\ub110 \ub9ac\uc0ac\uc774\uc800 \ud15c\ud50c\ub9bf)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ui_template_resizer.ts (\ud328\ub110 \ub9ac\uc0ac\uc774\uc800 \ud15c\ud50c\ub9bf)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_ui_template_palette_ts_\uc9c0\ub3c4_\ud314\ub808\ud2b8_\uce90\uc2f1_\uc720\ud2f8", "label": "ui_template_palette.ts (\uc9c0\ub3c4 \ud314\ub808\ud2b8 \uce90\uc2f1 \uc720\ud2f8)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ui_template_palette.ts (\uc9c0\ub3c4 \ud314\ub808\ud2b8 \uce90\uc2f1 \uc720\ud2f8)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_ui_template_general_blocks_ts_\uc77c\ubc18\uc5c5\ubb34_\uacf5\uc6a9_\ube14\ub85d", "label": "ui_template_general_blocks.ts (\uc77c\ubc18\uc5c5\ubb34 \uacf5\uc6a9 \ube14\ub85d)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ui_template_general_blocks.ts (\uc77c\ubc18\uc5c5\ubb34 \uacf5\uc6a9 \ube14\ub85d)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_ui_template_general_layout_ts_\uc77c\ubc18\uc5c5\ubb34_\ub808\uc774\uc544\uc6c3", "label": "ui_template_general_layout.ts (\uc77c\ubc18\uc5c5\ubb34 \ub808\uc774\uc544\uc6c3)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ui_template_general_layout.ts (\uc77c\ubc18\uc5c5\ubb34 \ub808\uc774\uc544\uc6c3)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_ui_template_elements_ts_\uacf5\ud1b5_\uc5d8\ub9ac\uba3c\ud2b8_\ud15c\ud50c\ub9bf", "label": "ui_template_elements.ts (\uacf5\ud1b5 \uc5d8\ub9ac\uba3c\ud2b8 \ud15c\ud50c\ub9bf)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ui_template_elements.ts (\uacf5\ud1b5 \uc5d8\ub9ac\uba3c\ud2b8 \ud15c\ud50c\ub9bf)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_ui_template_overlay_ts_\uc624\ubc84\ub808\uc774_\ucef4\ud3ec\ub10c\ud2b8", "label": "ui_template_overlay.ts (\uc624\ubc84\ub808\uc774 \ucef4\ud3ec\ub10c\ud2b8)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ui_template_overlay.ts (\uc624\ubc84\ub808\uc774 \ucef4\ud3ec\ub10c\ud2b8)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_ui_template_workflow_layout_ts_\uc5d4\uc9c0\ub2c8\uc5b4\ub9c1_\ub808\uc774\uc544\uc6c3", "label": "ui_template_workflow_layout.ts (\uc5d4\uc9c0\ub2c8\uc5b4\ub9c1 \ub808\uc774\uc544\uc6c3)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ui_template_workflow_layout.ts (\uc5d4\uc9c0\ub2c8\uc5b4\ub9c1 \ub808\uc774\uc544\uc6c3)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_theme_css_\uc2a4\ud0c0\uc77c_\ubcc0\uc218", "label": "theme.css (\uc2a4\ud0c0\uc77c \ubcc0\uc218)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "theme.css (\uc2a4\ud0c0\uc77c \ubcc0\uc218)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_\uc81c\uc57d_backend_md_1", "label": "\uc81c\uc57d (backend.md \u00a71)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\uc57d (backend.md \u00a71)", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_\ub0a8\uc740_\ud30c\uc77c_\ud55c\uacc4", "label": "\ub0a8\uc740 \ud30c\uc77c \ud55c\uacc4", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub0a8\uc740 \ud30c\uc77c \ud55c\uacc4", "community": 0, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state", "label": "workflow_state.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "workflow_state.md", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 5}, {"id": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac", "label": "Workflow \uc0c1\ud0dc \uad00\ub9ac", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 30.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Workflow \uc0c1\ud0dc \uad00\ub9ac", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 8}, {"id": "concepts_workflow_state_ssot_project_workflow_stages_\ud14c\uc774\ube14_\uc2e4_db_\ud655\uc778", "label": "SSOT: `project_workflow_stages` \ud14c\uc774\ube14 (\uc2e4 DB \ud655\uc778)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SSOT: `project_workflow_stages` \ud14c\uc774\ube14 (\uc2e4 DB \ud655\uc778)", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_r1_\uc6cc\ud06c\ud50c\ub85c\uc6b0_\ub2e8\uacc4_\uc7ac\ud3b8_2026_08_08_\ubc18\uc601", "label": "R1 \uc6cc\ud06c\ud50c\ub85c\uc6b0 \ub2e8\uacc4 \uc7ac\ud3b8 (2026-08-08 \ubc18\uc601)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "R1 \uc6cc\ud06c\ud50c\ub85c\uc6b0 \ub2e8\uacc4 \uc7ac\ud3b8 (2026-08-08 \ubc18\uc601)", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_\ubc31\uadf8\ub77c\uc6b4\ub4dc_\uc790\ub3d9_\uacc4\uc0b0_\uccb4\uc778_\ubc0f_\uc0ac\uc6a9\uc790_\uc124\uc815_\uc774\uc6d4", "label": "\ubc31\uadf8\ub77c\uc6b4\ub4dc \uc790\ub3d9 \uacc4\uc0b0 \uccb4\uc778 \ubc0f \uc0ac\uc6a9\uc790 \uc124\uc815 \uc774\uc6d4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc31\uadf8\ub77c\uc6b4\ub4dc \uc790\ub3d9 \uacc4\uc0b0 \uccb4\uc778 \ubc0f \uc0ac\uc6a9\uc790 \uc124\uc815 \uc774\uc6d4", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_\uacf5\ud1b5_\uc720\ud2f8_common_util_common_util_workflow_state_py", "label": "\uacf5\ud1b5 \uc720\ud2f8 `common_util/common_util_workflow_state.py`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \uc720\ud2f8 `common_util/common_util_workflow_state.py`", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_\ubb34\ud6a8\ud654\uc758_\uc2e4\uc81c_\ubc94\uc704", "label": "\ubb34\ud6a8\ud654\uc758 \uc2e4\uc81c \ubc94\uc704", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubb34\ud6a8\ud654\uc758 \uc2e4\uc81c \ubc94\uc704", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_\uc870\ud68c_api", "label": "\uc870\ud68c API", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc870\ud68c API", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_\ud504\ub860\ud2b8\uc5d4\ub4dc_\uac8c\uc774\ud305_\ubc0f_\uc2a4\ud15d\ubc14_\uc5f0\ub3d9", "label": "\ud504\ub860\ud2b8\uc5d4\ub4dc \uac8c\uc774\ud305 \ubc0f \uc2a4\ud15d\ubc14 \uc5f0\ub3d9", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud504\ub860\ud2b8\uc5d4\ub4dc \uac8c\uc774\ud305 \ubc0f \uc2a4\ud15d\ubc14 \uc5f0\ub3d9", "community": 3, "community_name": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c", "label": "query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918__\uc784\ub3c4\uc5d0\uc11c.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918__\uc784\ub3c4\uc5d0\uc11c.md", "community": 60, "community_name": "Q: \ubc30\uc218\uad00 \ub9e4\uc124\uc2dc \uac01\ub3c4\uc758 \uc81c\uc57d\uc870\uac74\uc774 \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918. \uc784\ub3c4\uc5d0\uc11c", "source_file": "graphify-out/memory/query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918__\uc784\ub3c4\uc5d0\uc11c.md", "file_type": "document", "degree": 1}, {"id": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c_q_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c", "label": "Q: \ubc30\uc218\uad00 \ub9e4\uc124\uc2dc \uac01\ub3c4\uc758 \uc81c\uc57d\uc870\uac74\uc774 \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918. \uc784\ub3c4\uc5d0\uc11c", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Q: \ubc30\uc218\uad00 \ub9e4\uc124\uc2dc \uac01\ub3c4\uc758 \uc81c\uc57d\uc870\uac74\uc774 \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918. \uc784\ub3c4\uc5d0\uc11c", "community": 60, "community_name": "Q: \ubc30\uc218\uad00 \ub9e4\uc124\uc2dc \uac01\ub3c4\uc758 \uc81c\uc57d\uc870\uac74\uc774 \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918. \uc784\ub3c4\uc5d0\uc11c", "source_file": "graphify-out/memory/query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918__\uc784\ub3c4\uc5d0\uc11c.md", "file_type": "document", "degree": 4}, {"id": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c_answer", "label": "Answer", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Answer", "community": 60, "community_name": "Q: \ubc30\uc218\uad00 \ub9e4\uc124\uc2dc \uac01\ub3c4\uc758 \uc81c\uc57d\uc870\uac74\uc774 \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918. \uc784\ub3c4\uc5d0\uc11c", "source_file": "graphify-out/memory/query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918__\uc784\ub3c4\uc5d0\uc11c.md", "file_type": "document", "degree": 1}, {"id": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c_outcome", "label": "Outcome", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Outcome", "community": 60, "community_name": "Q: \ubc30\uc218\uad00 \ub9e4\uc124\uc2dc \uac01\ub3c4\uc758 \uc81c\uc57d\uc870\uac74\uc774 \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918. \uc784\ub3c4\uc5d0\uc11c", "source_file": "graphify-out/memory/query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918__\uc784\ub3c4\uc5d0\uc11c.md", "file_type": "document", "degree": 1}, {"id": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c_source_nodes", "label": "Source Nodes", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Source Nodes", "community": 60, "community_name": "Q: \ubc30\uc218\uad00 \ub9e4\uc124\uc2dc \uac01\ub3c4\uc758 \uc81c\uc57d\uc870\uac74\uc774 \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918. \uc784\ub3c4\uc5d0\uc11c", "source_file": "graphify-out/memory/query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918__\uc784\ub3c4\uc5d0\uc11c.md", "file_type": "document", "degree": 1}, {"id": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918", "label": "query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918.md", "community": 61, "community_name": "Q: \uc784\ub3c4 \uae30\uc220\uc815\ubcf4DB\uc5d0\uc11c \uc9d1\uc218\uc815\uc758 \ud615\ud0dc\uc815\ubcf4\ub294 \uc5b4\ub5a4\uac8c \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918.", "source_file": "graphify-out/memory/query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918.md", "file_type": "document", "degree": 1}, {"id": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_q_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918", "label": "Q: \uc784\ub3c4 \uae30\uc220\uc815\ubcf4DB\uc5d0\uc11c \uc9d1\uc218\uc815\uc758 \ud615\ud0dc\uc815\ubcf4\ub294 \uc5b4\ub5a4\uac8c \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918.", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Q: \uc784\ub3c4 \uae30\uc220\uc815\ubcf4DB\uc5d0\uc11c \uc9d1\uc218\uc815\uc758 \ud615\ud0dc\uc815\ubcf4\ub294 \uc5b4\ub5a4\uac8c \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918.", "community": 61, "community_name": "Q: \uc784\ub3c4 \uae30\uc220\uc815\ubcf4DB\uc5d0\uc11c \uc9d1\uc218\uc815\uc758 \ud615\ud0dc\uc815\ubcf4\ub294 \uc5b4\ub5a4\uac8c \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918.", "source_file": "graphify-out/memory/query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918.md", "file_type": "document", "degree": 4}, {"id": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_answer", "label": "Answer", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Answer", "community": 61, "community_name": "Q: \uc784\ub3c4 \uae30\uc220\uc815\ubcf4DB\uc5d0\uc11c \uc9d1\uc218\uc815\uc758 \ud615\ud0dc\uc815\ubcf4\ub294 \uc5b4\ub5a4\uac8c \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918.", "source_file": "graphify-out/memory/query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918.md", "file_type": "document", "degree": 1}, {"id": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_outcome", "label": "Outcome", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Outcome", "community": 61, "community_name": "Q: \uc784\ub3c4 \uae30\uc220\uc815\ubcf4DB\uc5d0\uc11c \uc9d1\uc218\uc815\uc758 \ud615\ud0dc\uc815\ubcf4\ub294 \uc5b4\ub5a4\uac8c \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918.", "source_file": "graphify-out/memory/query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918.md", "file_type": "document", "degree": 1}, {"id": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_source_nodes", "label": "Source Nodes", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Source Nodes", "community": 61, "community_name": "Q: \uc784\ub3c4 \uae30\uc220\uc815\ubcf4DB\uc5d0\uc11c \uc9d1\uc218\uc815\uc758 \ud615\ud0dc\uc815\ubcf4\ub294 \uc5b4\ub5a4\uac8c \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918.", "source_file": "graphify-out/memory/query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918.md", "file_type": "document", "degree": 1}, {"id": "index", "label": "index.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "index.md", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "index.md", "file_type": "document", "degree": 6}, {"id": "index_wiki_index", "label": "Wiki Index", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Wiki Index", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "index.md", "file_type": "document", "degree": 6}, {"id": "index_\uc6b0\uc120_\uc9c4\uc785\uc810", "label": "\uc6b0\uc120 \uc9c4\uc785\uc810", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6b0\uc120 \uc9c4\uc785\uc810", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_\ub85c\uadf8\uc778_\ud6c4_\uae30\ub2a5", "label": "\ub85c\uadf8\uc778 \ud6c4 \uae30\ub2a5", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uadf8\uc778 \ud6c4 \uae30\ub2a5", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_\ub85c\uadf8\uc778_\uc804_\uad00\ub9ac", "label": "\ub85c\uadf8\uc778 \uc804\u00b7\uad00\ub9ac", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uadf8\uc778 \uc804\u00b7\uad00\ub9ac", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_\uacf5\ud1b5_\uac1c\ub150", "label": "\uacf5\ud1b5 \uac1c\ub150", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \uac1c\ub150", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_\ud604\uc7ac_\uc8fc\uc758\uc0ac\ud56d", "label": "\ud604\uc7ac \uc8fc\uc758\uc0ac\ud56d", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud604\uc7ac \uc8fc\uc758\uc0ac\ud56d", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "pages_a00_common_a00_common", "label": "A00_Common.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A00_Common.md", "community": 94, "community_name": "A00_Common \u2014 \uacf5\ud1b5 \ud504\ub808\uc784\uc6cc\ud06c & \uc720\ud2f8", "source_file": "pages/A00_Common/A00_Common.md", "file_type": "document", "degree": 1}, {"id": "pages_a00_common_a00_common_a00_common_\uacf5\ud1b5_\ud504\ub808\uc784\uc6cc\ud06c_\uc720\ud2f8", "label": "A00_Common \u2014 \uacf5\ud1b5 \ud504\ub808\uc784\uc6cc\ud06c & \uc720\ud2f8", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A00_Common \u2014 \uacf5\ud1b5 \ud504\ub808\uc784\uc6cc\ud06c & \uc720\ud2f8", "community": 94, "community_name": "A00_Common \u2014 \uacf5\ud1b5 \ud504\ub808\uc784\uc6cc\ud06c & \uc720\ud2f8", "source_file": "pages/A00_Common/A00_Common.md", "file_type": "document", "degree": 3}, {"id": "pages_a00_common_a00_common_\uc138\ubd84\ud654_\ub9c8\ud06c\ub2e4\uc6b4_\ubb38\uc11c_\ubaa9\ub85d", "label": "\ud83d\udcc2 \uc138\ubd84\ud654 \ub9c8\ud06c\ub2e4\uc6b4 \ubb38\uc11c \ubaa9\ub85d", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udcc2 \uc138\ubd84\ud654 \ub9c8\ud06c\ub2e4\uc6b4 \ubb38\uc11c \ubaa9\ub85d", "community": 94, "community_name": "A00_Common \u2014 \uacf5\ud1b5 \ud504\ub808\uc784\uc6cc\ud06c & \uc720\ud2f8", "source_file": "pages/A00_Common/A00_Common.md", "file_type": "document", "degree": 1}, {"id": "pages_a00_common_a00_common_\uac1c\uc694", "label": "\ud83d\udccb \uac1c\uc694", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udccb \uac1c\uc694", "community": 94, "community_name": "A00_Common \u2014 \uacf5\ud1b5 \ud504\ub808\uc784\uc6cc\ud06c & \uc720\ud2f8", "source_file": "pages/A00_Common/A00_Common.md", "file_type": "document", "degree": 1}, {"id": "pages_a00_common_frontend_a00_common_appshell", "label": "A00_Common_AppShell.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A00_Common_AppShell.md", "community": 95, "community_name": "app_shell.ts", "source_file": "pages/A00_Common/frontend/A00_Common_AppShell.md", "file_type": "document", "degree": 1}, {"id": "pages_a00_common_frontend_a00_common_appshell_app_shell_ts", "label": "app_shell.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "app_shell.ts", "community": 95, "community_name": "app_shell.ts", "source_file": "pages/A00_Common/frontend/A00_Common_AppShell.md", "file_type": "document", "degree": 3}, {"id": "pages_a00_common_frontend_a00_common_appshell_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 95, "community_name": "app_shell.ts", "source_file": "pages/A00_Common/frontend/A00_Common_AppShell.md", "file_type": "document", "degree": 1}, {"id": "pages_a00_common_frontend_a00_common_appshell_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 95, "community_name": "app_shell.ts", "source_file": "pages/A00_Common/frontend/A00_Common_AppShell.md", "file_type": "document", "degree": 1}, {"id": "pages_a00_common_frontend_a00_common_router", "label": "A00_Common_Router.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A00_Common_Router.md", "community": 96, "community_name": "router.ts", "source_file": "pages/A00_Common/frontend/A00_Common_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a00_common_frontend_a00_common_router_router_ts", "label": "router.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "router.ts", "community": 96, "community_name": "router.ts", "source_file": "pages/A00_Common/frontend/A00_Common_Router.md", "file_type": "document", "degree": 3}, {"id": "pages_a00_common_frontend_a00_common_router_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 96, "community_name": "router.ts", "source_file": "pages/A00_Common/frontend/A00_Common_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a00_common_frontend_a00_common_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 96, "community_name": "router.ts", "source_file": "pages/A00_Common/frontend/A00_Common_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_components", "label": "A01_components.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A01_components.md", "community": 47, "community_name": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A01_Home/A01_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_components_a01_home_\uc138\ubd80_\uad6c\ud604", "label": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "community": 47, "community_name": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A01_Home/A01_components.md", "file_type": "document", "degree": 5}, {"id": "pages_a01_home_a01_components_\uc2a4\ud0c0\uc77c", "label": "\uc2a4\ud0c0\uc77c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c", "community": 47, "community_name": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A01_Home/A01_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_components_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 47, "community_name": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A01_Home/A01_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_components_\ub370\uc774\ud130_\ud750\ub984", "label": "\ub370\uc774\ud130 \ud750\ub984", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub370\uc774\ud130 \ud750\ub984", "community": 47, "community_name": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A01_Home/A01_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_components_\ubbf8\ud574\uacb0", "label": "\ubbf8\ud574\uacb0", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubbf8\ud574\uacb0", "community": 47, "community_name": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A01_Home/A01_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend", "label": "A01_frontend.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A01_frontend.md", "community": 14, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_a01_home_frontend", "label": "A01_Home \u2014 Frontend", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "A01_Home \u2014 Frontend", "community": 14, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 6}, {"id": "pages_a01_home_a01_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 14, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_\ucef4\ud3ec\ub10c\ud2b8", "label": "\ucef4\ud3ec\ub10c\ud2b8", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8", "community": 14, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 4}, {"id": "pages_a01_home_a01_frontend_hero_\uc139\uc158", "label": "Hero \uc139\uc158", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Hero \uc139\uc158", "community": 14, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_\ucd5c\uc2e0_\uc18c\uc2dd_\uc139\uc158", "label": "\ucd5c\uc2e0 \uc18c\uc2dd \uc139\uc158", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucd5c\uc2e0 \uc18c\uc2dd \uc139\uc158", "community": 14, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_\uc8fc\uc694_\uae30\ub2a5_\uc139\uc158", "label": "\uc8fc\uc694 \uae30\ub2a5 \uc139\uc158", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc8fc\uc694 \uae30\ub2a5 \uc139\uc158", "community": 14, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "community": 14, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 14, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_\uc138\ubd80_\uad6c\ud604", "label": "\uc138\ubd80 \uad6c\ud604", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\ubd80 \uad6c\ud604", "community": 14, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_frontend_a01_home_ui_page", "label": "A01_Home_UI_Page.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A01_Home_UI_Page.md", "community": 116, "community_name": "A01_Home_UI_Page.md", "source_file": "pages/A01_Home/frontend/A01_Home_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_frontend_a01_home_ui_page_a01_home_ui_page_ts", "label": "A01_Home_UI_Page.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A01_Home_UI_Page.ts", "community": 116, "community_name": "A01_Home_UI_Page.md", "source_file": "pages/A01_Home/frontend/A01_Home_UI_Page.md", "file_type": "document", "degree": 3}, {"id": "pages_a01_home_frontend_a01_home_ui_page_\uc8fc\uc694_\ud568\uc218_\ubc0f_\uc778\ud130\ud398\uc774\uc2a4_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubc0f \uc778\ud130\ud398\uc774\uc2a4 \ubaa9\ub85d", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubc0f \uc778\ud130\ud398\uc774\uc2a4 \ubaa9\ub85d", "community": 116, "community_name": "A01_Home_UI_Page.md", "source_file": "pages/A01_Home/frontend/A01_Home_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_frontend_a01_home_ui_page_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 116, "community_name": "A01_Home_UI_Page.md", "source_file": "pages/A01_Home/frontend/A01_Home_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_components", "label": "A02_components.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A02_components.md", "community": 48, "community_name": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A02_ProgDetail/A02_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_components_a02_progdetail_\uc138\ubd80_\uad6c\ud604", "label": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "community": 48, "community_name": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A02_ProgDetail/A02_components.md", "file_type": "document", "degree": 5}, {"id": "pages_a02_progdetail_a02_components_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 48, "community_name": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A02_ProgDetail/A02_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_components_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 48, "community_name": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A02_ProgDetail/A02_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_components_\ub370\uc774\ud130_\ud750\ub984", "label": "\ub370\uc774\ud130 \ud750\ub984", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub370\uc774\ud130 \ud750\ub984", "community": 48, "community_name": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A02_ProgDetail/A02_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_components_\ubbf8\ud574\uacb0_\ud2b9\uc774\uc0ac\ud56d", "label": "\ubbf8\ud574\uacb0 / \ud2b9\uc774\uc0ac\ud56d", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubbf8\ud574\uacb0 / \ud2b9\uc774\uc0ac\ud56d", "community": 48, "community_name": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A02_ProgDetail/A02_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_frontend", "label": "A02_frontend.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A02_frontend.md", "community": 49, "community_name": "A02_ProgDetail \u2014 Frontend", "source_file": "pages/A02_ProgDetail/A02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_frontend_a02_progdetail_frontend", "label": "A02_ProgDetail \u2014 Frontend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A02_ProgDetail \u2014 Frontend", "community": 49, "community_name": "A02_ProgDetail \u2014 Frontend", "source_file": "pages/A02_ProgDetail/A02_frontend.md", "file_type": "document", "degree": 5}, {"id": "pages_a02_progdetail_a02_frontend_\uad6c\uc870", "label": "\uad6c\uc870", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\uc870", "community": 49, "community_name": "A02_ProgDetail \u2014 Frontend", "source_file": "pages/A02_ProgDetail/A02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ubd84\uc11d", "label": "\ucef4\ud3ec\ub10c\ud2b8 \ubd84\uc11d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 \ubd84\uc11d", "community": 49, "community_name": "A02_ProgDetail \u2014 Frontend", "source_file": "pages/A02_ProgDetail/A02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_frontend_\uc81c\uc57d_\uc900\uc218", "label": "\uc81c\uc57d \uc900\uc218", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\uc57d \uc900\uc218", "community": 49, "community_name": "A02_ProgDetail \u2014 Frontend", "source_file": "pages/A02_ProgDetail/A02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_frontend_\uc138\ubd80_\uad6c\ud604", "label": "\uc138\ubd80 \uad6c\ud604", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\ubd80 \uad6c\ud604", "community": 49, "community_name": "A02_ProgDetail \u2014 Frontend", "source_file": "pages/A02_ProgDetail/A02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_frontend_a02_progdetail_ui_page", "label": "A02_ProgDetail_UI_Page.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A02_ProgDetail_UI_Page.md", "community": 117, "community_name": "A02_ProgDetail_UI_Page.md", "source_file": "pages/A02_ProgDetail/frontend/A02_ProgDetail_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_frontend_a02_progdetail_ui_page_a02_progdetail_ui_page_ts", "label": "A02_ProgDetail_UI_Page.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A02_ProgDetail_UI_Page.ts", "community": 117, "community_name": "A02_ProgDetail_UI_Page.md", "source_file": "pages/A02_ProgDetail/frontend/A02_ProgDetail_UI_Page.md", "file_type": "document", "degree": 3}, {"id": "pages_a02_progdetail_frontend_a02_progdetail_ui_page_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 117, "community_name": "A02_ProgDetail_UI_Page.md", "source_file": "pages/A02_ProgDetail/frontend/A02_ProgDetail_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_frontend_a02_progdetail_ui_page_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 117, "community_name": "A02_ProgDetail_UI_Page.md", "source_file": "pages/A02_ProgDetail/frontend/A02_ProgDetail_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend", "label": "A03_frontend.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A03_frontend.md", "community": 24, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "label": "A03_CompDetail \u2014 Frontend", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "A03_CompDetail \u2014 Frontend", "community": 24, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 6}, {"id": "pages_a03_compdetail_a03_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 24, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend_\ucef4\ud3ec\ub10c\ud2b8_\uc139\uc158_\ube4c\ub354", "label": "\ucef4\ud3ec\ub10c\ud2b8 (\uc139\uc158 \ube4c\ub354)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 (\uc139\uc158 \ube4c\ub354)", "community": 24, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 24, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 24, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 3}, {"id": "pages_a03_compdetail_a03_frontend_css_\ud074\ub798\uc2a4_\uad6c\uc870", "label": "CSS \ud074\ub798\uc2a4 \uad6c\uc870", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CSS \ud074\ub798\uc2a4 \uad6c\uc870", "community": 24, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend_\ubc18\uc751\ud615", "label": "\ubc18\uc751\ud615", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc18\uc751\ud615", "community": 24, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 24, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend", "label": "A04_frontend.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A04_frontend.md", "community": 10, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "label": "A04_NewsHistory \u2014 Frontend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 30.0, "font": {"size": 12, "color": "#ffffff"}, "title": "A04_NewsHistory \u2014 Frontend", "community": 10, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 8}, {"id": "pages_a04_newshistory_a04_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 10, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_\ucef4\ud3ec\ub10c\ud2b8_\uc139\uc158_\ube4c\ub354", "label": "\ucef4\ud3ec\ub10c\ud2b8 (\uc139\uc158 \ube4c\ub354)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 (\uc139\uc158 \ube4c\ub354)", "community": 10, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_mock_\ub370\uc774\ud130_\uad6c\uc870", "label": "Mock \ub370\uc774\ud130 \uad6c\uc870", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Mock \ub370\uc774\ud130 \uad6c\uc870", "community": 10, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 10, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 10, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 3}, {"id": "pages_a04_newshistory_a04_frontend_css_\ud074\ub798\uc2a4_\uad6c\uc870", "label": "CSS \ud074\ub798\uc2a4 \uad6c\uc870", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CSS \ud074\ub798\uc2a4 \uad6c\uc870", "community": 10, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_\ubc18\uc751\ud615", "label": "\ubc18\uc751\ud615", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc18\uc751\ud615", "community": 10, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 10, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_\ubbf8\ud574\uacb0_\uc0ac\ud56d", "label": "\ubbf8\ud574\uacb0 \uc0ac\ud56d", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubbf8\ud574\uacb0 \uc0ac\ud56d", "community": 10, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend", "label": "A05_frontend.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A05_frontend.md", "community": 15, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "label": "A05_EduDetail \u2014 Frontend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 27.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A05_EduDetail \u2014 Frontend", "community": 15, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 7}, {"id": "pages_a05_edudetail_a05_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 15, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_\ucef4\ud3ec\ub10c\ud2b8_\uc139\uc158_\ube4c\ub354", "label": "\ucef4\ud3ec\ub10c\ud2b8 (\uc139\uc158 \ube4c\ub354)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 (\uc139\uc158 \ube4c\ub354)", "community": 15, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 15, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 15, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 3}, {"id": "pages_a05_edudetail_a05_frontend_css_\ud074\ub798\uc2a4_\uad6c\uc870", "label": "CSS \ud074\ub798\uc2a4 \uad6c\uc870", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CSS \ud074\ub798\uc2a4 \uad6c\uc870", "community": 15, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_\ubc18\uc751\ud615", "label": "\ubc18\uc751\ud615", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc18\uc751\ud615", "community": 15, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "community": 15, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 15, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend", "label": "A06_backend.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A06_backend.md", "community": 25, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_a06_login_backend", "label": "A06_Login \u2014 Backend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 30.0, "font": {"size": 12, "color": "#ffffff"}, "title": "A06_Login \u2014 Backend", "community": 25, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 8}, {"id": "pages_a06_login_a06_backend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 25, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 25, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_\ub0b4\ubd80_\ud5ec\ud37c", "label": "\ub0b4\ubd80 \ud5ec\ud37c", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub0b4\ubd80 \ud5ec\ud37c", "community": 25, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "community": 25, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_\ub85c\uadf8\uc778_\ub85c\uc9c1_\ud750\ub984", "label": "\ub85c\uadf8\uc778 \ub85c\uc9c1 \ud750\ub984", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uadf8\uc778 \ub85c\uc9c1 \ud750\ub984", "community": 25, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_\ubcf4\uc548_\uc815\ucc45_\uc2e4_\ucf54\ub4dc_\uae30\uc900", "label": "\ubcf4\uc548 \uc815\ucc45 (\uc2e4 \ucf54\ub4dc \uae30\uc900)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubcf4\uc548 \uc815\ucc45 (\uc2e4 \ucf54\ub4dc \uae30\uc900)", "community": 25, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "community": 25, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend", "label": "A06_frontend.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A06_frontend.md", "community": 16, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_a06_login_frontend", "label": "A06_Login \u2014 Frontend", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 32.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A06_Login \u2014 Frontend", "community": 16, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 9}, {"id": "pages_a06_login_a06_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 16, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 16, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218", "label": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218", "community": 16, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_\uc81c\ucd9c_\ubc0f_otp_\uc81c\uc5b4_\ub85c\uc9c1_2\ub2e8\uacc4_\ud3fc_\uc804\ud658", "label": "\uc81c\ucd9c \ubc0f OTP \uc81c\uc5b4 \ub85c\uc9c1 (2\ub2e8\uacc4 \ud3fc \uc804\ud658)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\ucd9c \ubc0f OTP \uc81c\uc5b4 \ub85c\uc9c1 (2\ub2e8\uacc4 \ud3fc \uc804\ud658)", "community": 16, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 16, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 16, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "community": 16, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 16, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_backend_a06_login_router", "label": "A06_Login_Router.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A06_Login_Router.md", "community": 118, "community_name": "A06_Login_Router.md", "source_file": "pages/A06_Login/backend/A06_Login_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_backend_a06_login_router_a06_login_router_py", "label": "A06_Login_Router.py", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A06_Login_Router.py", "community": 118, "community_name": "A06_Login_Router.md", "source_file": "pages/A06_Login/backend/A06_Login_Router.md", "file_type": "document", "degree": 3}, {"id": "pages_a06_login_backend_a06_login_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud5ec\ud37c_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud5ec\ud37c \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud5ec\ud37c \ud568\uc218 \ubaa9\ub85d", "community": 118, "community_name": "A06_Login_Router.md", "source_file": "pages/A06_Login/backend/A06_Login_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_backend_a06_login_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 118, "community_name": "A06_Login_Router.md", "source_file": "pages/A06_Login/backend/A06_Login_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend", "label": "A07_backend.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A07_backend.md", "community": 27, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend_a07_register_backend", "label": "A07_Register \u2014 Backend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 27.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A07_Register \u2014 Backend", "community": 27, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 7}, {"id": "pages_a07_register_a07_backend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 27, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 27, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "community": 27, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend_\uac00\uc785_\ub85c\uc9c1_\ud750\ub984", "label": "\uac00\uc785 \ub85c\uc9c1 \ud750\ub984", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac00\uc785 \ub85c\uc9c1 \ud750\ub984", "community": 27, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "community": 27, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 27, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend", "label": "A07_frontend.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A07_frontend.md", "community": 11, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_a07_register_frontend", "label": "A07_Register \u2014 Frontend", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 35.0, "font": {"size": 12, "color": "#ffffff"}, "title": "A07_Register \u2014 Frontend", "community": 11, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 10}, {"id": "pages_a07_register_a07_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 11, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218_ui_auth_page_\uc2e4\uc0ac\uc6a9", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218 (UI_Auth_Page \u2014 \uc2e4\uc0ac\uc6a9)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218 (UI_Auth_Page \u2014 \uc2e4\uc0ac\uc6a9)", "community": 11, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218", "label": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218", "community": 11, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\uc81c\ucd9c_\ub85c\uc9c1_2\ub2e8\uacc4_\ud3fc_\uc804\ud658", "label": "\uc81c\ucd9c \ub85c\uc9c1 (2\ub2e8\uacc4 \ud3fc \uc804\ud658)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\ucd9c \ub85c\uc9c1 (2\ub2e8\uacc4 \ud3fc \uc804\ud658)", "community": 11, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\uc57d\uad00_\ub3d9\uc758_\uc544\ucf54\ub514\uc5b8", "label": "\uc57d\uad00 \ub3d9\uc758 (\uc544\ucf54\ub514\uc5b8)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc57d\uad00 \ub3d9\uc758 (\uc544\ucf54\ub514\uc5b8)", "community": 11, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 11, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 11, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "community": 11, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 11, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_backend_a07_register_router", "label": "A07_Register_Router.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A07_Register_Router.md", "community": 119, "community_name": "A07_Register_Router.md", "source_file": "pages/A07_Register/backend/A07_Register_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_backend_a07_register_router_a07_register_router_py", "label": "A07_Register_Router.py", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A07_Register_Router.py", "community": 119, "community_name": "A07_Register_Router.md", "source_file": "pages/A07_Register/backend/A07_Register_Router.md", "file_type": "document", "degree": 3}, {"id": "pages_a07_register_backend_a07_register_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 119, "community_name": "A07_Register_Router.md", "source_file": "pages/A07_Register/backend/A07_Register_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_backend_a07_register_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 119, "community_name": "A07_Register_Router.md", "source_file": "pages/A07_Register/backend/A07_Register_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend", "label": "A08_backend.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A08_backend.md", "community": 17, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_a08_support_backend", "label": "A08_Support \u2014 Backend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 32.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A08_Support \u2014 Backend", "community": 17, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 9}, {"id": "pages_a08_support_a08_backend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 17, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 17, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_\ub0b4\ubd80_\ud5ec\ud37c", "label": "\ub0b4\ubd80 \ud5ec\ud37c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub0b4\ubd80 \ud5ec\ud37c", "community": 17, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "community": 17, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_\uc811\uc218_\ub85c\uc9c1", "label": "\uc811\uc218 \ub85c\uc9c1", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc811\uc218 \ub85c\uc9c1", "community": 17, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_db_\uc800\uc7a5_\uceec\ub7fc_\uc2e4_\ucf54\ub4dc_insert_\uae30\uc900", "label": "DB \uc800\uc7a5 \uceec\ub7fc (\uc2e4 \ucf54\ub4dc INSERT \uae30\uc900)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DB \uc800\uc7a5 \uceec\ub7fc (\uc2e4 \ucf54\ub4dc INSERT \uae30\uc900)", "community": 17, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_\ud2b9\uc9d5", "label": "\ud2b9\uc9d5", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud2b9\uc9d5", "community": 17, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "community": 17, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend", "label": "A08_frontend.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A08_frontend.md", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_a08_support_frontend", "label": "A08_Support \u2014 Frontend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 35.0, "font": {"size": 12, "color": "#ffffff"}, "title": "A08_Support \u2014 Frontend", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 10}, {"id": "pages_a08_support_a08_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\uc81c\ucd9c_\ub85c\uc9c1", "label": "\uc81c\ucd9c \ub85c\uc9c1", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\ucd9c \ub85c\uc9c1", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\uc138\uc158_\uc790\ub3d9_\ucc44\uc6c0", "label": "\uc138\uc158 \uc790\ub3d9 \ucc44\uc6c0", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\uc158 \uc790\ub3d9 \ucc44\uc6c0", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_backend_a08_support_router", "label": "A08_Support_Router.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A08_Support_Router.md", "community": 120, "community_name": "A08_Support_Router.md", "source_file": "pages/A08_Support/backend/A08_Support_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_backend_a08_support_router_a08_support_router_py", "label": "A08_Support_Router.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A08_Support_Router.py", "community": 120, "community_name": "A08_Support_Router.md", "source_file": "pages/A08_Support/backend/A08_Support_Router.md", "file_type": "document", "degree": 3}, {"id": "pages_a08_support_backend_a08_support_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 120, "community_name": "A08_Support_Router.md", "source_file": "pages/A08_Support/backend/A08_Support_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_backend_a08_support_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 120, "community_name": "A08_Support_Router.md", "source_file": "pages/A08_Support/backend/A08_Support_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend", "label": "A09_backend.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A09_backend.md", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_a09_security_backend", "label": "A09_Security \u2014 Backend", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 30.0, "font": {"size": 12, "color": "#ffffff"}, "title": "A09_Security \u2014 Backend", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 8}, {"id": "pages_a09_security_a09_backend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 4}, {"id": "pages_a09_security_a09_backend_\ub9c8\uc2a4\ud130_\ud68c\uc0ac_\uad00\ub9ac\uc790_\uc804\uc6a9_require_master", "label": "\ub9c8\uc2a4\ud130(\ud68c\uc0ac \uad00\ub9ac\uc790) \uc804\uc6a9 \u2014 `require_master`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub9c8\uc2a4\ud130(\ud68c\uc0ac \uad00\ub9ac\uc790) \uc804\uc6a9 \u2014 `require_master`", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_\uc2dc\uc2a4\ud15c_\uad00\ub9ac\uc790_\uc804\uc6a9_require_system_admin", "label": "\uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790 \uc804\uc6a9 \u2014 `require_system_admin`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790 \uc804\uc6a9 \u2014 `require_system_admin`", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_\uc778\uc99d_\uc0ac\uc6a9\uc790_\uacf5\ud1b5_verify_session", "label": "\uc778\uc99d \uc0ac\uc6a9\uc790 \uacf5\ud1b5 \u2014 `verify_session`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc778\uc99d \uc0ac\uc6a9\uc790 \uacf5\ud1b5 \u2014 `verify_session`", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_db_\uc800\uc7a5_activity_logs", "label": "DB \uc800\uc7a5 (activity_logs)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DB \uc800\uc7a5 (activity_logs)", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_\uad8c\ud55c_\ud5ec\ud37c", "label": "\uad8c\ud55c \ud5ec\ud37c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad8c\ud55c \ud5ec\ud37c", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend", "label": "A09_frontend.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A09_frontend.md", "community": 18, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_a09_security_frontend", "label": "A09_Security \u2014 Frontend", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 32.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A09_Security \u2014 Frontend", "community": 18, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 9}, {"id": "pages_a09_security_a09_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 18, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 18, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_\uc57d\uad00_\ub370\uc774\ud130_a09_security_terms_ts", "label": "\uc57d\uad00 \ub370\uc774\ud130 (A09_Security_Terms.ts)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc57d\uad00 \ub370\uc774\ud130 (A09_Security_Terms.ts)", "community": 18, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218_\ubbf8\uc0ac\uc6a9_\uc815\uc758\ub9cc", "label": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218 (\u26a0\ufe0f \ubbf8\uc0ac\uc6a9, \uc815\uc758\ub9cc)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218 (\u26a0\ufe0f \ubbf8\uc0ac\uc6a9, \uc815\uc758\ub9cc)", "community": 18, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 18, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 18, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_\uc57d\uad00_\ud14d\uc2a4\ud2b8\uc640_\uc2e4_\ucf54\ub4dc_\ubd88\uc77c\uce58", "label": "\u26a0\ufe0f \uc57d\uad00 \ud14d\uc2a4\ud2b8\uc640 \uc2e4 \ucf54\ub4dc \ubd88\uc77c\uce58", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u26a0\ufe0f \uc57d\uad00 \ud14d\uc2a4\ud2b8\uc640 \uc2e4 \ucf54\ub4dc \ubd88\uc77c\uce58", "community": 18, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 18, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_backend_a09_security_router", "label": "A09_Security_Router.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "A09_Security_Router.md", "community": 121, "community_name": "A09_Security_Router.md", "source_file": "pages/A09_Security/backend/A09_Security_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_backend_a09_security_router_a09_security_router_py", "label": "A09_Security_Router.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A09_Security_Router.py", "community": 121, "community_name": "A09_Security_Router.md", "source_file": "pages/A09_Security/backend/A09_Security_Router.md", "file_type": "document", "degree": 3}, {"id": "pages_a09_security_backend_a09_security_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 121, "community_name": "A09_Security_Router.md", "source_file": "pages/A09_Security/backend/A09_Security_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_backend_a09_security_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 121, "community_name": "A09_Security_Router.md", "source_file": "pages/A09_Security/backend/A09_Security_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_api", "label": "B01_api.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_api.md", "community": 50, "community_name": "B01_Dashboard \u2014 API", "source_file": "pages/B01_Dashboard/B01_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_api_b01_dashboard_api", "label": "B01_Dashboard \u2014 API", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B01_Dashboard \u2014 API", "community": 50, "community_name": "B01_Dashboard \u2014 API", "source_file": "pages/B01_Dashboard/B01_api.md", "file_type": "document", "degree": 5}, {"id": "pages_b01_dashboard_b01_api_\uc0ac\uc6a9\uc790_\ud68c\uc0ac", "label": "\uc0ac\uc6a9\uc790\u00b7\ud68c\uc0ac", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\uc790\u00b7\ud68c\uc0ac", "community": 50, "community_name": "B01_Dashboard \u2014 API", "source_file": "pages/B01_Dashboard/B01_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_api_\ud68c\uc0ac_\uad00\ub9ac\uc790", "label": "\ud68c\uc0ac \uad00\ub9ac\uc790", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud68c\uc0ac \uad00\ub9ac\uc790", "community": 50, "community_name": "B01_Dashboard \u2014 API", "source_file": "pages/B01_Dashboard/B01_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_api_\ud504\ub85c\uc81d\ud2b8_\uc790\ub3d9\ud654", "label": "\ud504\ub85c\uc81d\ud2b8\u00b7\uc790\ub3d9\ud654", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud504\ub85c\uc81d\ud2b8\u00b7\uc790\ub3d9\ud654", "community": 50, "community_name": "B01_Dashboard \u2014 API", "source_file": "pages/B01_Dashboard/B01_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_api_\uc2dc\uc2a4\ud15c_\uad00\ub9ac\uc790", "label": "\uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790", "community": 50, "community_name": "B01_Dashboard \u2014 API", "source_file": "pages/B01_Dashboard/B01_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_backend", "label": "B01_backend.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_backend.md", "community": 35, "community_name": "B01_Dashboard \u2014 Backend", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "label": "B01_Dashboard \u2014 Backend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B01_Dashboard \u2014 Backend", "community": 35, "community_name": "B01_Dashboard \u2014 Backend", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 6}, {"id": "pages_b01_dashboard_b01_backend_\uc138\ubd84\ud654_\ubc31\uc5d4\ub4dc_\uc704\ud0a4_\uba85\uc138", "label": "\uc138\ubd84\ud654 \ubc31\uc5d4\ub4dc \uc704\ud0a4 \uba85\uc138", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\ubd84\ud654 \ubc31\uc5d4\ub4dc \uc704\ud0a4 \uba85\uc138", "community": 35, "community_name": "B01_Dashboard \u2014 Backend", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_backend_\ub77c\uc6b0\ud130_\uad8c\ud55c_\ud5ec\ud37c", "label": "\ub77c\uc6b0\ud130 \uad8c\ud55c \ud5ec\ud37c", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub77c\uc6b0\ud130 \uad8c\ud55c \ud5ec\ud37c", "community": 35, "community_name": "B01_Dashboard \u2014 Backend", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_backend_\uc800\uc7a5\uc18c_\ubc0f_\uc0ad\uc81c_\ud568\uc218", "label": "\uc800\uc7a5\uc18c \ubc0f \uc0ad\uc81c \ud568\uc218", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5\uc18c \ubc0f \uc0ad\uc81c \ud568\uc218", "community": 35, "community_name": "B01_Dashboard \u2014 Backend", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8", "label": "\uc694\uccad \uc2a4\ud0a4\ub9c8", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad \uc2a4\ud0a4\ub9c8", "community": 35, "community_name": "B01_Dashboard \u2014 Backend", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_backend_\uae30\uc220\ubd80\ucc44", "label": "\uae30\uc220\ubd80\ucc44", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\uc220\ubd80\ucc44", "community": 35, "community_name": "B01_Dashboard \u2014 Backend", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_db", "label": "B01_db.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_db.md", "community": 122, "community_name": "B01_Dashboard \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B01_Dashboard/B01_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_db_b01_dashboard_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "B01_Dashboard \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B01_Dashboard \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "community": 122, "community_name": "B01_Dashboard \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B01_Dashboard/B01_db.md", "file_type": "document", "degree": 2}, {"id": "pages_b01_dashboard_b01_db_\ud2b8\ub79c\uc7ad\uc158_\uacbd\uacc4", "label": "\ud2b8\ub79c\uc7ad\uc158 \uacbd\uacc4", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud2b8\ub79c\uc7ad\uc158 \uacbd\uacc4", "community": 122, "community_name": "B01_Dashboard \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B01_Dashboard/B01_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_dependencies", "label": "B01_dependencies.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_dependencies.md", "community": 123, "community_name": "B01_Dashboard \u2014 Dependencies", "source_file": "pages/B01_Dashboard/B01_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_dependencies_b01_dashboard_dependencies", "label": "B01_Dashboard \u2014 Dependencies", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B01_Dashboard \u2014 Dependencies", "community": 123, "community_name": "B01_Dashboard \u2014 Dependencies", "source_file": "pages/B01_Dashboard/B01_dependencies.md", "file_type": "document", "degree": 2}, {"id": "pages_b01_dashboard_b01_dependencies_\ud504\ub85c\uc81d\ud2b8_\uacf5\ud1b5_\ubaa8\ub4c8", "label": "\ud504\ub85c\uc81d\ud2b8 \uacf5\ud1b5 \ubaa8\ub4c8", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud504\ub85c\uc81d\ud2b8 \uacf5\ud1b5 \ubaa8\ub4c8", "community": 123, "community_name": "B01_Dashboard \u2014 Dependencies", "source_file": "pages/B01_Dashboard/B01_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_frontend", "label": "B01_frontend.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_frontend.md", "community": 36, "community_name": "B01_Dashboard \u2014 Frontend", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "label": "B01_Dashboard \u2014 Frontend", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B01_Dashboard \u2014 Frontend", "community": 36, "community_name": "B01_Dashboard \u2014 Frontend", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 6}, {"id": "pages_b01_dashboard_b01_frontend_\ud30c\uc77c\uacfc_\uc9c4\uc785\uc810", "label": "\ud30c\uc77c\uacfc \uc9c4\uc785\uc810", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c\uacfc \uc9c4\uc785\uc810", "community": 36, "community_name": "B01_Dashboard \u2014 Frontend", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_frontend_\ubd84\ud560\ub41c_ui_\ucef4\ud3ec\ub10c\ud2b8_\ud30c\uc77c", "label": "\ubd84\ud560\ub41c UI \ucef4\ud3ec\ub10c\ud2b8 \ud30c\uc77c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubd84\ud560\ub41c UI \ucef4\ud3ec\ub10c\ud2b8 \ud30c\uc77c", "community": 36, "community_name": "B01_Dashboard \u2014 Frontend", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_frontend_ui_\uad8c\ud55c_\ud5ec\ud37c", "label": "UI \uad8c\ud55c \ud5ec\ud37c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UI \uad8c\ud55c \ud5ec\ud37c", "community": 36, "community_name": "B01_Dashboard \u2014 Frontend", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_frontend_\ubaa8\ub2ec", "label": "\ubaa8\ub2ec", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubaa8\ub2ec", "community": 36, "community_name": "B01_Dashboard \u2014 Frontend", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_frontend_\uacf5\uc720_\uc790\uc6d0_\uc5f0\uacb0", "label": "\uacf5\uc720 \uc790\uc6d0 \uc5f0\uacb0", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\uc720 \uc790\uc6d0 \uc5f0\uacb0", "community": 36, "community_name": "B01_Dashboard \u2014 Frontend", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_backend_b01_dashboard_router", "label": "B01_Dashboard_Router.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_Dashboard_Router.md", "community": 124, "community_name": "B01_Dashboard_Router.md", "source_file": "pages/B01_Dashboard/backend/B01_Dashboard_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_backend_b01_dashboard_router_b01_dashboard_router_py", "label": "B01_Dashboard_Router.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B01_Dashboard_Router.py", "community": 124, "community_name": "B01_Dashboard_Router.md", "source_file": "pages/B01_Dashboard/backend/B01_Dashboard_Router.md", "file_type": "document", "degree": 3}, {"id": "pages_b01_dashboard_backend_b01_dashboard_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 124, "community_name": "B01_Dashboard_Router.md", "source_file": "pages/B01_Dashboard/backend/B01_Dashboard_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_backend_b01_dashboard_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 124, "community_name": "B01_Dashboard_Router.md", "source_file": "pages/B01_Dashboard/backend/B01_Dashboard_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_frontend_b01_dashboard_ui_page", "label": "B01_Dashboard_UI_Page.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_Dashboard_UI_Page.md", "community": 125, "community_name": "B01_Dashboard_UI_Page.md", "source_file": "pages/B01_Dashboard/frontend/B01_Dashboard_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_frontend_b01_dashboard_ui_page_b01_dashboard_ui_page_ts", "label": "B01_Dashboard_UI_Page.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B01_Dashboard_UI_Page.ts", "community": 125, "community_name": "B01_Dashboard_UI_Page.md", "source_file": "pages/B01_Dashboard/frontend/B01_Dashboard_UI_Page.md", "file_type": "document", "degree": 3}, {"id": "pages_b01_dashboard_frontend_b01_dashboard_ui_page_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 125, "community_name": "B01_Dashboard_UI_Page.md", "source_file": "pages/B01_Dashboard/frontend/B01_Dashboard_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_frontend_b01_dashboard_ui_page_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 125, "community_name": "B01_Dashboard_UI_Page.md", "source_file": "pages/B01_Dashboard/frontend/B01_Dashboard_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend", "label": "B02_backend.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B02_backend.md", "community": 19, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_b02_projregister_backend", "label": "B02_ProjRegister \u2014 Backend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 32.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B02_ProjRegister \u2014 Backend", "community": 19, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 9}, {"id": "pages_b02_projregister_b02_backend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 19, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 19, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_\ud568\uc218", "label": "\ud568\uc218", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud568\uc218", "community": 19, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_\uc694\uccad_\uc751\ub2f5_\uc2a4\ud0a4\ub9c8_pydantic", "label": "\uc694\uccad/\uc751\ub2f5 \uc2a4\ud0a4\ub9c8 (Pydantic)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad/\uc751\ub2f5 \uc2a4\ud0a4\ub9c8 (Pydantic)", "community": 19, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_\uc0dd\uc131_\ub85c\uc9c1_create_project_\ud2b8\ub79c\uc7ad\uc158", "label": "\uc0dd\uc131 \ub85c\uc9c1 (create_project \ud2b8\ub79c\uc7ad\uc158)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0dd\uc131 \ub85c\uc9c1 (create_project \ud2b8\ub79c\uc7ad\uc158)", "community": 19, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_db_\uc800\uc7a5_\uceec\ub7fc_projects_insert", "label": "DB \uc800\uc7a5 \uceec\ub7fc (projects INSERT)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DB \uc800\uc7a5 \uceec\ub7fc (projects INSERT)", "community": 19, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "community": 19, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 19, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_db", "label": "B02_db.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B02_db.md", "community": 62, "community_name": "B02_ProjRegister \u2014 DB", "source_file": "pages/B02_ProjRegister/B02_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_db_b02_projregister_db", "label": "B02_ProjRegister \u2014 DB", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B02_ProjRegister \u2014 DB", "community": 62, "community_name": "B02_ProjRegister \u2014 DB", "source_file": "pages/B02_ProjRegister/B02_db.md", "file_type": "document", "degree": 4}, {"id": "pages_b02_projregister_b02_db_\uc4f0\ub294_\ud14c\uc774\ube14", "label": "\uc4f0\ub294 \ud14c\uc774\ube14", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc4f0\ub294 \ud14c\uc774\ube14", "community": 62, "community_name": "B02_ProjRegister \u2014 DB", "source_file": "pages/B02_ProjRegister/B02_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_db_\uc800\uc7a5\uc18c_\ud30c\uc77c\uc2dc\uc2a4\ud15c", "label": "\uc800\uc7a5\uc18c(\ud30c\uc77c\uc2dc\uc2a4\ud15c)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5\uc18c(\ud30c\uc77c\uc2dc\uc2a4\ud15c)", "community": 62, "community_name": "B02_ProjRegister \u2014 DB", "source_file": "pages/B02_ProjRegister/B02_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_db_\ucc38\uace0_\uacc4\ud68d_\ub2f9\uc2dc_\uc758\ub3c4", "label": "\ucc38\uace0 (\uacc4\ud68d \ub2f9\uc2dc \uc758\ub3c4)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0 (\uacc4\ud68d \ub2f9\uc2dc \uc758\ub3c4)", "community": 62, "community_name": "B02_ProjRegister \u2014 DB", "source_file": "pages/B02_ProjRegister/B02_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend", "label": "B02_frontend.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B02_frontend.md", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "label": "B02_ProjRegister \u2014 Frontend", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 35.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B02_ProjRegister \u2014 Frontend", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 10}, {"id": "pages_b02_projregister_b02_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\uc785\ub825_\ud544\ub4dc", "label": "\uc785\ub825 \ud544\ub4dc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc785\ub825 \ud544\ub4dc", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\uc81c\ucd9c_\ub85c\uc9c1", "label": "\uc81c\ucd9c \ub85c\uc9c1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\ucd9c \ub85c\uc9c1", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_backend_b02_projregister_router", "label": "B02_ProjRegister_Router.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B02_ProjRegister_Router.md", "community": 126, "community_name": "B02_ProjRegister_Router.md", "source_file": "pages/B02_ProjRegister/backend/B02_ProjRegister_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_backend_b02_projregister_router_b02_projregister_router_py", "label": "B02_ProjRegister_Router.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B02_ProjRegister_Router.py", "community": 126, "community_name": "B02_ProjRegister_Router.md", "source_file": "pages/B02_ProjRegister/backend/B02_ProjRegister_Router.md", "file_type": "document", "degree": 3}, {"id": "pages_b02_projregister_backend_b02_projregister_router_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 126, "community_name": "B02_ProjRegister_Router.md", "source_file": "pages/B02_ProjRegister/backend/B02_ProjRegister_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_backend_b02_projregister_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 126, "community_name": "B02_ProjRegister_Router.md", "source_file": "pages/B02_ProjRegister/backend/B02_ProjRegister_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_fileinput_plan_lidar_multi_file", "label": "B03_FileInput_plan_lidar_multi_file.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_FileInput_plan_lidar_multi_file.md", "community": 149, "community_name": "B03_FileInput_plan_lidar_multi_file.md", "source_file": "pages/B03_FileInput/B03_FileInput_plan_lidar_multi_file.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_fileinput_plan_lidar_multi_file_b03_\ub2e4\uc911_\ub77c\uc774\ub2e4_\ud30c\uc77c_\ub300\uc6a9\ub7c9_\ucc98\ub9ac_\ubcf4\ub958_\uacc4\ud68d", "label": "B03 \ub2e4\uc911 \ub77c\uc774\ub2e4 \ud30c\uc77c\u00b7\ub300\uc6a9\ub7c9 \ucc98\ub9ac \ubcf4\ub958 \uacc4\ud68d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B03 \ub2e4\uc911 \ub77c\uc774\ub2e4 \ud30c\uc77c\u00b7\ub300\uc6a9\ub7c9 \ucc98\ub9ac \ubcf4\ub958 \uacc4\ud68d", "community": 149, "community_name": "B03_FileInput_plan_lidar_multi_file.md", "source_file": "pages/B03_FileInput/B03_FileInput_plan_lidar_multi_file.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_api", "label": "B03_api.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_api.md", "community": 63, "community_name": "B03_FileInput \u2014 API", "source_file": "pages/B03_FileInput/B03_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_api_b03_fileinput_api", "label": "B03_FileInput \u2014 API", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B03_FileInput \u2014 API", "community": 63, "community_name": "B03_FileInput \u2014 API", "source_file": "pages/B03_FileInput/B03_api.md", "file_type": "document", "degree": 4}, {"id": "pages_b03_fileinput_b03_api_\uc77c\ubc18_\uc5c5\ub85c\ub4dc", "label": "\uc77c\ubc18 \uc5c5\ub85c\ub4dc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc77c\ubc18 \uc5c5\ub85c\ub4dc", "community": 63, "community_name": "B03_FileInput \u2014 API", "source_file": "pages/B03_FileInput/B03_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_api_\uccad\ud06c_\uc5c5\ub85c\ub4dc", "label": "\uccad\ud06c \uc5c5\ub85c\ub4dc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uccad\ud06c \uc5c5\ub85c\ub4dc", "community": 63, "community_name": "B03_FileInput \u2014 API", "source_file": "pages/B03_FileInput/B03_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_api_workflow_\uc870\ud68c", "label": "workflow \uc870\ud68c", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "workflow \uc870\ud68c", "community": 63, "community_name": "B03_FileInput \u2014 API", "source_file": "pages/B03_FileInput/B03_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_backend", "label": "B03_backend.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_backend.md", "community": 37, "community_name": "B03_FileInput \u2014 Backend", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "label": "B03_FileInput \u2014 Backend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B03_FileInput \u2014 Backend", "community": 37, "community_name": "B03_FileInput \u2014 Backend", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 6}, {"id": "pages_b03_fileinput_b03_backend_\uc785\ub825_\uac80\uc99d_\ud30c\uc77c_\ucc98\ub9ac", "label": "\uc785\ub825 \uac80\uc99d\u00b7\ud30c\uc77c \ucc98\ub9ac", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc785\ub825 \uac80\uc99d\u00b7\ud30c\uc77c \ucc98\ub9ac", "community": 37, "community_name": "B03_FileInput \u2014 Backend", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_backend_\uba54\ud0c0\ub370\uc774\ud130_\ubd84\uc11d_\ubc0f_\ud30c\uc77c_\uc9c0\ubb38", "label": "\uba54\ud0c0\ub370\uc774\ud130 \ubd84\uc11d \ubc0f \ud30c\uc77c \uc9c0\ubb38", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uba54\ud0c0\ub370\uc774\ud130 \ubd84\uc11d \ubc0f \ud30c\uc77c \uc9c0\ubb38", "community": 37, "community_name": "B03_FileInput \u2014 Backend", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_backend_\uc784\uc2dc_\ubcf4\uad00\ud568_r2_temp_upload", "label": "\uc784\uc2dc \ubcf4\uad00\ud568 (R2 Temp Upload)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc784\uc2dc \ubcf4\uad00\ud568 (R2 Temp Upload)", "community": 37, "community_name": "B03_FileInput \u2014 Backend", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_backend_\uc800\uc7a5\uc18c_\ubc0f_\ucd08\uae30\ud654", "label": "\uc800\uc7a5\uc18c \ubc0f \ucd08\uae30\ud654", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5\uc18c \ubc0f \ucd08\uae30\ud654", "community": 37, "community_name": "B03_FileInput \u2014 Backend", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_backend_workflow_\uc54c\ub9bc", "label": "workflow\u00b7\uc54c\ub9bc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "workflow\u00b7\uc54c\ub9bc", "community": 37, "community_name": "B03_FileInput \u2014 Backend", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_db", "label": "B03_db.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_db.md", "community": 127, "community_name": "B03_FileInput \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B03_FileInput/B03_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_db_b03_fileinput_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "B03_FileInput \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B03_FileInput \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "community": 127, "community_name": "B03_FileInput \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B03_FileInput/B03_db.md", "file_type": "document", "degree": 2}, {"id": "pages_b03_fileinput_b03_db_\ud30c\uc77c_\uacbd\ub85c", "label": "\ud30c\uc77c \uacbd\ub85c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uacbd\ub85c", "community": 127, "community_name": "B03_FileInput \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B03_FileInput/B03_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_dependencies", "label": "B03_dependencies.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_dependencies.md", "community": 128, "community_name": "B03_FileInput \u2014 Dependencies", "source_file": "pages/B03_FileInput/B03_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_dependencies_b03_fileinput_dependencies", "label": "B03_FileInput \u2014 Dependencies", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B03_FileInput \u2014 Dependencies", "community": 128, "community_name": "B03_FileInput \u2014 Dependencies", "source_file": "pages/B03_FileInput/B03_dependencies.md", "file_type": "document", "degree": 2}, {"id": "pages_b03_fileinput_b03_dependencies_\uacf5\ud1b5_\ubaa8\ub4c8", "label": "\uacf5\ud1b5 \ubaa8\ub4c8", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \ubaa8\ub4c8", "community": 128, "community_name": "B03_FileInput \u2014 Dependencies", "source_file": "pages/B03_FileInput/B03_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_frontend", "label": "B03_frontend.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_frontend.md", "community": 51, "community_name": "B03_FileInput \u2014 Frontend", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_frontend_b03_fileinput_frontend", "label": "B03_FileInput \u2014 Frontend", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B03_FileInput \u2014 Frontend", "community": 51, "community_name": "B03_FileInput \u2014 Frontend", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "document", "degree": 5}, {"id": "pages_b03_fileinput_b03_frontend_\ud398\uc774\uc9c0_\uc5c5\ub85c\ub4dc_\ud750\ub984", "label": "\ud398\uc774\uc9c0\u00b7\uc5c5\ub85c\ub4dc \ud750\ub984", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud398\uc774\uc9c0\u00b7\uc5c5\ub85c\ub4dc \ud750\ub984", "community": 51, "community_name": "B03_FileInput \u2014 Frontend", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_frontend_ui_\uc9c0\uc6d0_\uc720\ud2f8\ub9ac\ud2f0_\ubd84\ud560_\uc644\ub8cc", "label": "UI \uc9c0\uc6d0 \uc720\ud2f8\ub9ac\ud2f0 (\ubd84\ud560 \uc644\ub8cc)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UI \uc9c0\uc6d0 \uc720\ud2f8\ub9ac\ud2f0 (\ubd84\ud560 \uc644\ub8cc)", "community": 51, "community_name": "B03_FileInput \u2014 Frontend", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "label": "API \ud074\ub77c\uc774\uc5b8\ud2b8", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "API \ud074\ub77c\uc774\uc5b8\ud2b8", "community": 51, "community_name": "B03_FileInput \u2014 Frontend", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_frontend_\ube0c\ub77c\uc6b0\uc800_\uc0c1\ud0dc_\uc624\ud504\ub77c\uc778_\ubcf4\uc870", "label": "\ube0c\ub77c\uc6b0\uc800 \uc0c1\ud0dc\u00b7\uc624\ud504\ub77c\uc778 \ubcf4\uc870", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ube0c\ub77c\uc6b0\uc800 \uc0c1\ud0dc\u00b7\uc624\ud504\ub77c\uc778 \ubcf4\uc870", "community": 51, "community_name": "B03_FileInput \u2014 Frontend", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_route_snapshot_crs", "label": "B03_route_snapshot_crs.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_route_snapshot_crs.md", "community": 163, "community_name": "B05 \uad6c\uc870\ubb3c 3D \ud22c\uc601 \ucee4\ube0c", "source_file": "pages/B03_FileInput/B03_route_snapshot_crs.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_route_snapshot_crs_b03_\uacc4\ud68d\ub178\uc120_\uc815\ubcf8_\uc88c\ud45c\uacc4_\ud6c4\uc18d", "label": "B03 \uacc4\ud68d\ub178\uc120 \uc815\ubcf8\u00b7\uc88c\ud45c\uacc4 \ud6c4\uc18d", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B03 \uacc4\ud68d\ub178\uc120 \uc815\ubcf8\u00b7\uc88c\ud45c\uacc4 \ud6c4\uc18d", "community": 163, "community_name": "B05 \uad6c\uc870\ubb3c 3D \ud22c\uc601 \ucee4\ube0c", "source_file": "pages/B03_FileInput/B03_route_snapshot_crs.md", "file_type": "document", "degree": 3}, {"id": "pages_b03_fileinput_b03_route_snapshot_crs_\uacc4\ud68d\ub178\uc120_\uc815\ubcf8", "label": "\uacc4\ud68d\ub178\uc120 \uc815\ubcf8", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacc4\ud68d\ub178\uc120 \uc815\ubcf8", "community": 163, "community_name": "B05 \uad6c\uc870\ubb3c 3D \ud22c\uc601 \ucee4\ube0c", "source_file": "pages/B03_FileInput/B03_route_snapshot_crs.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_route_snapshot_crs_las_\uc5c6\ub294_\uc124\uacc4\uc640_\uc5c5\ub85c\ub4dc_\uc0c1\ud0dc", "label": "LAS \uc5c6\ub294 \uc124\uacc4\uc640 \uc5c5\ub85c\ub4dc \uc0c1\ud0dc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "LAS \uc5c6\ub294 \uc124\uacc4\uc640 \uc5c5\ub85c\ub4dc \uc0c1\ud0dc", "community": 163, "community_name": "B05 \uad6c\uc870\ubb3c 3D \ud22c\uc601 \ucee4\ube0c", "source_file": "pages/B03_FileInput/B03_route_snapshot_crs.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_upload_ui_2026_09", "label": "B03_upload_ui_2026_09.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_upload_ui_2026_09.md", "community": 164, "community_name": "B05_Profile \u2014 Frontend", "source_file": "pages/B03_FileInput/B03_upload_ui_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_upload_ui_2026_09_b03_\ud30c\uc77c_\uc785\ub825_\ud654\uba74_\uc815\ub9ac", "label": "B03 \ud30c\uc77c \uc785\ub825 \ud654\uba74 \uc815\ub9ac", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B03 \ud30c\uc77c \uc785\ub825 \ud654\uba74 \uc815\ub9ac", "community": 164, "community_name": "B05_Profile \u2014 Frontend", "source_file": "pages/B03_FileInput/B03_upload_ui_2026_09.md", "file_type": "document", "degree": 3}, {"id": "pages_b03_fileinput_b03_upload_ui_2026_09_\ud654\uba74_\uad6c\uc131", "label": "\ud654\uba74 \uad6c\uc131", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud654\uba74 \uad6c\uc131", "community": 164, "community_name": "B05_Profile \u2014 Frontend", "source_file": "pages/B03_FileInput/B03_upload_ui_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_upload_ui_2026_09_\uc785\ub825_\uaddc\uce59", "label": "\uc785\ub825 \uaddc\uce59", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc785\ub825 \uaddc\uce59", "community": 164, "community_name": "B05_Profile \u2014 Frontend", "source_file": "pages/B03_FileInput/B03_upload_ui_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_backend_b03_fileinput_router", "label": "B03_FileInput_Router.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_FileInput_Router.md", "community": 129, "community_name": "B03_FileInput_Router.md", "source_file": "pages/B03_FileInput/backend/B03_FileInput_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_backend_b03_fileinput_router_b03_fileinput_router_py", "label": "B03_FileInput_Router.py", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B03_FileInput_Router.py", "community": 129, "community_name": "B03_FileInput_Router.md", "source_file": "pages/B03_FileInput/backend/B03_FileInput_Router.md", "file_type": "document", "degree": 3}, {"id": "pages_b03_fileinput_backend_b03_fileinput_router_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 129, "community_name": "B03_FileInput_Router.md", "source_file": "pages/B03_FileInput/backend/B03_FileInput_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_backend_b03_fileinput_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 129, "community_name": "B03_FileInput_Router.md", "source_file": "pages/B03_FileInput/backend/B03_FileInput_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_api", "label": "B04_api.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_api.md", "community": 97, "community_name": "B04_PreProcess \u2014 API", "source_file": "pages/B04_PreProcess/B04_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_api_b04_preprocess_api", "label": "B04_PreProcess \u2014 API", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B04_PreProcess \u2014 API", "community": 97, "community_name": "B04_PreProcess \u2014 API", "source_file": "pages/B04_PreProcess/B04_api.md", "file_type": "document", "degree": 3}, {"id": "pages_b04_preprocess_b04_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 97, "community_name": "B04_PreProcess \u2014 API", "source_file": "pages/B04_PreProcess/B04_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_api_\uc694\uccad_\uc751\ub2f5_\uc2a4\ud0a4\ub9c8_pydantic", "label": "\uc694\uccad/\uc751\ub2f5 \uc2a4\ud0a4\ub9c8 (Pydantic)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad/\uc751\ub2f5 \uc2a4\ud0a4\ub9c8 (Pydantic)", "community": 97, "community_name": "B04_PreProcess \u2014 API", "source_file": "pages/B04_PreProcess/B04_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_backend", "label": "B04_backend.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_backend.md", "community": 20, "community_name": "B04_PreProcess \u2014 Backend", "source_file": "pages/B04_PreProcess/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_backend_b04_preprocess_backend", "label": "B04_PreProcess \u2014 Backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 32.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B04_PreProcess \u2014 Backend", "community": 20, "community_name": "B04_PreProcess \u2014 Backend", "source_file": "pages/B04_PreProcess/B04_backend.md", "file_type": "document", "degree": 9}, {"id": "pages_b04_preprocess_b04_backend_\ud30c\uc77c_\uad6c\uc131_\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130_\uc800\uc7a5\uc18c_\ub77c\uc6b0\ud130", "label": "\ud30c\uc77c \uad6c\uc131 (\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130/\uc800\uc7a5\uc18c/\ub77c\uc6b0\ud130)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc131 (\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130/\uc800\uc7a5\uc18c/\ub77c\uc6b0\ud130)", "community": 20, "community_name": "B04_PreProcess \u2014 Backend", "source_file": "pages/B04_PreProcess/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_backend_\uc5d4\uc9c4_\uc11c\ube0c\ubaa8\ub4c8", "label": "\uc5d4\uc9c4 \uc11c\ube0c\ubaa8\ub4c8", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc5d4\uc9c4 \uc11c\ube0c\ubaa8\ub4c8", "community": 20, "community_name": "B04_PreProcess \u2014 Backend", "source_file": "pages/B04_PreProcess/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_backend_\uc8fc\uc694_\ud568\uc218_router_repository_engine_utility", "label": "\uc8fc\uc694 \ud568\uc218 (Router / Repository / Engine / Utility)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc8fc\uc694 \ud568\uc218 (Router / Repository / Engine / Utility)", "community": 20, "community_name": "B04_PreProcess \u2014 Backend", "source_file": "pages/B04_PreProcess/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_backend_\uc218\uce58\uc9c0\ud615\ub3c4_\ub3c4\uc5fd_\uc624\ubc84\ub808\uc774_\uc544\ud0a4\ud14d\ucc98_2026_07_26_2026_08_01_s8_\uac1c\ud3b8", "label": "\uc218\uce58\uc9c0\ud615\ub3c4 \ub3c4\uc5fd \uc624\ubc84\ub808\uc774 \uc544\ud0a4\ud14d\ucc98 (2026-07-26, 2026-08-01 S8 \uac1c\ud3b8)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc218\uce58\uc9c0\ud615\ub3c4 \ub3c4\uc5fd \uc624\ubc84\ub808\uc774 \uc544\ud0a4\ud14d\ucc98 (2026-07-26, 2026-08-01 S8 \uac1c\ud3b8)", "community": 20, "community_name": "B04_PreProcess \u2014 Backend", "source_file": "pages/B04_PreProcess/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_backend_\uc6cc\ud06c\ud50c\ub85c\uc6b0_\uc0c1\ud0dc_\uc804\uc774_\ubc0f_\uc790\ub3d9_\ud655\uc815", "label": "\uc6cc\ud06c\ud50c\ub85c\uc6b0 \uc0c1\ud0dc \uc804\uc774 \ubc0f \uc790\ub3d9 \ud655\uc815", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6cc\ud06c\ud50c\ub85c\uc6b0 \uc0c1\ud0dc \uc804\uc774 \ubc0f \uc790\ub3d9 \ud655\uc815", "community": 20, "community_name": "B04_PreProcess \u2014 Backend", "source_file": "pages/B04_PreProcess/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_backend_\uc124\uc815_\ubc0f_\ud658\uacbd_\ud30c\uc77c_\uc815\ud569\uc131", "label": "\u2699\ufe0f \uc124\uc815 \ubc0f \ud658\uacbd \ud30c\uc77c \uc815\ud569\uc131", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u2699\ufe0f \uc124\uc815 \ubc0f \ud658\uacbd \ud30c\uc77c \uc815\ud569\uc131", "community": 20, "community_name": "B04_PreProcess \u2014 Backend", "source_file": "pages/B04_PreProcess/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_backend_\uad6c\ud604_\uc608\uc678_\ucc98\ub9ac_\uac80\ud1a0_\ud56d\ubaa9_plan", "label": "\ud83d\udccb \uad6c\ud604 \uc608\uc678 \ucc98\ub9ac \uac80\ud1a0 \ud56d\ubaa9 (PLAN)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udccb \uad6c\ud604 \uc608\uc678 \ucc98\ub9ac \uac80\ud1a0 \ud56d\ubaa9 (PLAN)", "community": 20, "community_name": "B04_PreProcess \u2014 Backend", "source_file": "pages/B04_PreProcess/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_backend_2d_gis_\ubbf8\ud45c\uc2dc_\uc6d0\uc778_\ubd84\uc11d_\ubc0f_\uc870\uce58", "label": "2D/GIS \ubbf8\ud45c\uc2dc \uc6d0\uc778 \ubd84\uc11d \ubc0f \uc870\uce58", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2D/GIS \ubbf8\ud45c\uc2dc \uc6d0\uc778 \ubd84\uc11d \ubc0f \uc870\uce58", "community": 20, "community_name": "B04_PreProcess \u2014 Backend", "source_file": "pages/B04_PreProcess/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_compass_crs_2026_09", "label": "B04_compass_crs_2026_09.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_compass_crs_2026_09.md", "community": 165, "community_name": "B05 \uc720\ud1a0\uace1\uc120\u00b7\uad6c\uc870\ubb3c \ud6c4\uc18d", "source_file": "pages/B04_PreProcess/B04_compass_crs_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_compass_crs_2026_09_b04_3d_\ubc29\uc704_\uc88c\ud45c\uacc4_\ucd5c\uc2e0_\uacb0\uc815", "label": "B04 3D \ubc29\uc704\u00b7\uc88c\ud45c\uacc4 \ucd5c\uc2e0 \uacb0\uc815", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B04 3D \ubc29\uc704\u00b7\uc88c\ud45c\uacc4 \ucd5c\uc2e0 \uacb0\uc815", "community": 165, "community_name": "B05 \uc720\ud1a0\uace1\uc120\u00b7\uad6c\uc870\ubb3c \ud6c4\uc18d", "source_file": "pages/B04_PreProcess/B04_compass_crs_2026_09.md", "file_type": "document", "degree": 3}, {"id": "pages_b04_preprocess_b04_compass_crs_2026_09_3d_\ubc29\uc704_\uc704\uc82f", "label": "3D \ubc29\uc704 \uc704\uc82f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3D \ubc29\uc704 \uc704\uc82f", "community": 165, "community_name": "B05 \uc720\ud1a0\uace1\uc120\u00b7\uad6c\uc870\ubb3c \ud6c4\uc18d", "source_file": "pages/B04_PreProcess/B04_compass_crs_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_compass_crs_2026_09_\uc791\uc5c5_\uc88c\ud45c\uacc4", "label": "\uc791\uc5c5 \uc88c\ud45c\uacc4", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc791\uc5c5 \uc88c\ud45c\uacc4", "community": 165, "community_name": "B05 \uc720\ud1a0\uace1\uc120\u00b7\uad6c\uc870\ubb3c \ud6c4\uc18d", "source_file": "pages/B04_PreProcess/B04_compass_crs_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_db", "label": "B04_db.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_db.md", "community": 64, "community_name": "B04_PreProcess \u2014 DB", "source_file": "pages/B04_PreProcess/B04_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_db_b04_preprocess_db", "label": "B04_PreProcess \u2014 DB", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B04_PreProcess \u2014 DB", "community": 64, "community_name": "B04_PreProcess \u2014 DB", "source_file": "pages/B04_PreProcess/B04_db.md", "file_type": "document", "degree": 4}, {"id": "pages_b04_preprocess_b04_db_\uc4f0\ub294_\ud14c\uc774\ube14", "label": "\uc4f0\ub294 \ud14c\uc774\ube14", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc4f0\ub294 \ud14c\uc774\ube14", "community": 64, "community_name": "B04_PreProcess \u2014 DB", "source_file": "pages/B04_PreProcess/B04_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_db_repository_\ud568\uc218", "label": "Repository \ud568\uc218", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Repository \ud568\uc218", "community": 64, "community_name": "B04_PreProcess \u2014 DB", "source_file": "pages/B04_PreProcess/B04_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_db_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 64, "community_name": "B04_PreProcess \u2014 DB", "source_file": "pages/B04_PreProcess/B04_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_dependencies", "label": "B04_dependencies.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_dependencies.md", "community": 98, "community_name": "B04_PreProcess \u2014 Dependencies", "source_file": "pages/B04_PreProcess/B04_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_dependencies_b04_preprocess_dependencies", "label": "B04_PreProcess \u2014 Dependencies", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B04_PreProcess \u2014 Dependencies", "community": 98, "community_name": "B04_PreProcess \u2014 Dependencies", "source_file": "pages/B04_PreProcess/B04_dependencies.md", "file_type": "document", "degree": 3}, {"id": "pages_b04_preprocess_b04_dependencies_\ubc31\uc5d4\ub4dc_python", "label": "\ubc31\uc5d4\ub4dc (Python)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc31\uc5d4\ub4dc (Python)", "community": 98, "community_name": "B04_PreProcess \u2014 Dependencies", "source_file": "pages/B04_PreProcess/B04_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_dependencies_\ud504\ub860\ud2b8\uc5d4\ub4dc_typescript", "label": "\ud504\ub860\ud2b8\uc5d4\ub4dc (TypeScript)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud504\ub860\ud2b8\uc5d4\ub4dc (TypeScript)", "community": 98, "community_name": "B04_PreProcess \u2014 Dependencies", "source_file": "pages/B04_PreProcess/B04_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_drainage_compass_crs", "label": "B04_drainage_compass_crs.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_drainage_compass_crs.md", "community": 146, "community_name": "B01~B09 Workflow \ub370\uc774\ud130 \ud750\ub984", "source_file": "pages/B04_PreProcess/B04_drainage_compass_crs.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_drainage_compass_crs_b04_\uc138\ubd80\uc720\uc5ed_\ubc29\uc704_\uc88c\ud45c\uacc4", "label": "B04 \uc138\ubd80\uc720\uc5ed\u00b7\ubc29\uc704\u00b7\uc88c\ud45c\uacc4", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B04 \uc138\ubd80\uc720\uc5ed\u00b7\ubc29\uc704\u00b7\uc88c\ud45c\uacc4", "community": 146, "community_name": "B01~B09 Workflow \ub370\uc774\ud130 \ud750\ub984", "source_file": "pages/B04_PreProcess/B04_drainage_compass_crs.md", "file_type": "document", "degree": 4}, {"id": "pages_b04_preprocess_b04_drainage_compass_crs_\uc138\ubd80\uc720\uc5ed_\ud615\uc0c1_\ubcf4\uc874", "label": "\uc138\ubd80\uc720\uc5ed \ud615\uc0c1 \ubcf4\uc874", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\ubd80\uc720\uc5ed \ud615\uc0c1 \ubcf4\uc874", "community": 146, "community_name": "B01~B09 Workflow \ub370\uc774\ud130 \ud750\ub984", "source_file": "pages/B04_PreProcess/B04_drainage_compass_crs.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_drainage_compass_crs_\uc885\ub2e8_\ub192\ub0ae\uc774_\uae30\ubc18_\ubc30\uc815", "label": "\uc885\ub2e8 \ub192\ub0ae\uc774 \uae30\ubc18 \ubc30\uc815", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc885\ub2e8 \ub192\ub0ae\uc774 \uae30\ubc18 \ubc30\uc815", "community": 146, "community_name": "B01~B09 Workflow \ub370\uc774\ud130 \ud750\ub984", "source_file": "pages/B04_PreProcess/B04_drainage_compass_crs.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_drainage_compass_crs_3d_\ubc29\uc704\uc640_\uc88c\ud45c\uacc4", "label": "3D \ubc29\uc704\uc640 \uc88c\ud45c\uacc4", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3D \ubc29\uc704\uc640 \uc88c\ud45c\uacc4", "community": 146, "community_name": "B01~B09 Workflow \ub370\uc774\ud130 \ud750\ub984", "source_file": "pages/B04_PreProcess/B04_drainage_compass_crs.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_frontend", "label": "B04_frontend.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_frontend.md", "community": 21, "community_name": "B04_PreProcess \u2014 Frontend", "source_file": "pages/B04_PreProcess/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_frontend_b04_preprocess_frontend", "label": "B04_PreProcess \u2014 Frontend", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 32.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B04_PreProcess \u2014 Frontend", "community": 21, "community_name": "B04_PreProcess \u2014 Frontend", "source_file": "pages/B04_PreProcess/B04_frontend.md", "file_type": "document", "degree": 9}, {"id": "pages_b04_preprocess_b04_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 21, "community_name": "B04_PreProcess \u2014 Frontend", "source_file": "pages/B04_PreProcess/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_frontend_\uacc4\ud68d\uc11c\uc640_\uc2e4_\ucf54\ub4dc_\ubd88\uc77c\uce58_3d_\ubdf0\uc5b4", "label": "\u26a0\ufe0f \uacc4\ud68d\uc11c\uc640 \uc2e4 \ucf54\ub4dc \ubd88\uc77c\uce58 (3D \ubdf0\uc5b4)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u26a0\ufe0f \uacc4\ud68d\uc11c\uc640 \uc2e4 \ucf54\ub4dc \ubd88\uc77c\uce58 (3D \ubdf0\uc5b4)", "community": 21, "community_name": "B04_PreProcess \u2014 Frontend", "source_file": "pages/B04_PreProcess/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_frontend_3d_\ubdf0\uc5b4_dom_\ub9c8\uc6b4\ud2b8_\ubc84\uadf8_\uc218\ub9ac", "label": "3D \ubdf0\uc5b4 DOM \ub9c8\uc6b4\ud2b8 \ubc84\uadf8 \uc218\ub9ac", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3D \ubdf0\uc5b4 DOM \ub9c8\uc6b4\ud2b8 \ubc84\uadf8 \uc218\ub9ac", "community": 21, "community_name": "B04_PreProcess \u2014 Frontend", "source_file": "pages/B04_PreProcess/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_frontend_3d_\ubdf0\uc5b4_\ud14c\ub9c8_\uc5f0\ub3d9_\ubc0f_\uac00\ub3c5\uc131_\uac1c\uc120", "label": "3D \ubdf0\uc5b4 \ud14c\ub9c8 \uc5f0\ub3d9 \ubc0f \uac00\ub3c5\uc131 \uac1c\uc120", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3D \ubdf0\uc5b4 \ud14c\ub9c8 \uc5f0\ub3d9 \ubc0f \uac00\ub3c5\uc131 \uac1c\uc120", "community": 21, "community_name": "B04_PreProcess \u2014 Frontend", "source_file": "pages/B04_PreProcess/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_frontend_\ucef4\ud3ec\ub10c\ud2b8_api_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 & API \ud568\uc218", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 & API \ud568\uc218", "community": 21, "community_name": "B04_PreProcess \u2014 Frontend", "source_file": "pages/B04_PreProcess/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_frontend_\ucc98\ub9ac_\ud750\ub984", "label": "\ucc98\ub9ac \ud750\ub984", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc98\ub9ac \ud750\ub984", "community": 21, "community_name": "B04_PreProcess \u2014 Frontend", "source_file": "pages/B04_PreProcess/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_frontend_3d_\uce74\uba54\ub77c_\ucee4\uc11c_\ud53c\ubd07_2d_\uc624\ubc84\ub808\uc774_ui_\uac1c\uc120_2026_08_01_02_\uc77c\uc6d0\ud654", "label": "3D \uce74\uba54\ub77c \ucee4\uc11c \ud53c\ubd07 & 2D \uc624\ubc84\ub808\uc774 UI \uac1c\uc120 (2026-08-01~02 \uc77c\uc6d0\ud654)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3D \uce74\uba54\ub77c \ucee4\uc11c \ud53c\ubd07 & 2D \uc624\ubc84\ub808\uc774 UI \uac1c\uc120 (2026-08-01~02 \uc77c\uc6d0\ud654)", "community": 21, "community_name": "B04_PreProcess \u2014 Frontend", "source_file": "pages/B04_PreProcess/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_b04_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 21, "community_name": "B04_PreProcess \u2014 Frontend", "source_file": "pages/B04_PreProcess/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_backend_b04_preprocess_router", "label": "B04_PreProcess_Router.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_PreProcess_Router.md", "community": 130, "community_name": "B04_PreProcess_Router.md", "source_file": "pages/B04_PreProcess/backend/B04_PreProcess_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_backend_b04_preprocess_router_b04_preprocess_router_py", "label": "B04_PreProcess_Router.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B04_PreProcess_Router.py", "community": 130, "community_name": "B04_PreProcess_Router.md", "source_file": "pages/B04_PreProcess/backend/B04_PreProcess_Router.md", "file_type": "document", "degree": 3}, {"id": "pages_b04_preprocess_backend_b04_preprocess_router_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 130, "community_name": "B04_PreProcess_Router.md", "source_file": "pages/B04_PreProcess/backend/B04_PreProcess_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_preprocess_backend_b04_preprocess_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 130, "community_name": "B04_PreProcess_Router.md", "source_file": "pages/B04_PreProcess/backend/B04_PreProcess_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_plan_2026_08_18", "label": "B05_Profile_plan_2026-08-18.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_plan_2026-08-18.md", "community": 53, "community_name": "B05 \uad6c\uc870\ubb3c\u00b7UI \ud604\uc7ac \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_Profile_plan_2026-08-18.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_plan_2026_08_18_b05_\uad6c\uc870\ubb3c_ui_\ud604\uc7ac_\uacc4\ud68d", "label": "B05 \uad6c\uc870\ubb3c\u00b7UI \ud604\uc7ac \uacc4\ud68d", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05 \uad6c\uc870\ubb3c\u00b7UI \ud604\uc7ac \uacc4\ud68d", "community": 53, "community_name": "B05 \uad6c\uc870\ubb3c\u00b7UI \ud604\uc7ac \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_Profile_plan_2026-08-18.md", "file_type": "document", "degree": 5}, {"id": "pages_b05_profile_b05_profile_plan_2026_08_18_b05_b06_\uad6c\uc870\ubb3c_\uc801\uc6a9_\ubc94\uc704", "label": "B05/B06 \uad6c\uc870\ubb3c \uc801\uc6a9 \ubc94\uc704", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05/B06 \uad6c\uc870\ubb3c \uc801\uc6a9 \ubc94\uc704", "community": 53, "community_name": "B05 \uad6c\uc870\ubb3c\u00b7UI \ud604\uc7ac \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_Profile_plan_2026-08-18.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_plan_2026_08_18_2026_08_18_\uc0ac\uc774\ub4dc_\ud328\ub110_\uc785\ub825_\ub85c\uc9c1_\uacc4\ud68d_\uae30\ub85d", "label": "2026-08-18 \uc0ac\uc774\ub4dc \ud328\ub110\u00b7\uc785\ub825 \ub85c\uc9c1 \uacc4\ud68d \uae30\ub85d", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2026-08-18 \uc0ac\uc774\ub4dc \ud328\ub110\u00b7\uc785\ub825 \ub85c\uc9c1 \uacc4\ud68d \uae30\ub85d", "community": 53, "community_name": "B05 \uad6c\uc870\ubb3c\u00b7UI \ud604\uc7ac \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_Profile_plan_2026-08-18.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_plan_2026_08_18_2026_08_18_b05_\ud398\uc774\uc9c0_\uac1c\uc120_2\ucc28_\uacc4\ud68d_\uae30\ub85d", "label": "2026-08-18 B05 \ud398\uc774\uc9c0 \uac1c\uc120 2\ucc28 \uacc4\ud68d \uae30\ub85d", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2026-08-18 B05 \ud398\uc774\uc9c0 \uac1c\uc120 2\ucc28 \uacc4\ud68d \uae30\ub85d", "community": 53, "community_name": "B05 \uad6c\uc870\ubb3c\u00b7UI \ud604\uc7ac \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_Profile_plan_2026-08-18.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_plan_2026_08_18_\ud6c4\uc18d_\uacb0\uc815_\ub300\uae30", "label": "\ud6c4\uc18d \uacb0\uc815 \ub300\uae30", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud6c4\uc18d \uacb0\uc815 \ub300\uae30", "community": 53, "community_name": "B05 \uad6c\uc870\ubb3c\u00b7UI \ud604\uc7ac \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_Profile_plan_2026-08-18.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_plan_2026_08_19", "label": "B05_Profile_plan_2026-08-19.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_plan_2026-08-19.md", "community": 54, "community_name": "B05 \uad6c\uc870\ubb3c \uc785\ub825\u00b7\uc885\ub2e8 \ud45c\uc2dc \uc815\ube44 \u2014 2026-08-19", "source_file": "pages/B05_Profile/B05_Profile_plan_2026-08-19.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_plan_2026_08_19_b05_\uad6c\uc870\ubb3c_\uc785\ub825_\uc885\ub2e8_\ud45c\uc2dc_\uc815\ube44_2026_08_19", "label": "B05 \uad6c\uc870\ubb3c \uc785\ub825\u00b7\uc885\ub2e8 \ud45c\uc2dc \uc815\ube44 \u2014 2026-08-19", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05 \uad6c\uc870\ubb3c \uc785\ub825\u00b7\uc885\ub2e8 \ud45c\uc2dc \uc815\ube44 \u2014 2026-08-19", "community": 54, "community_name": "B05 \uad6c\uc870\ubb3c \uc785\ub825\u00b7\uc885\ub2e8 \ud45c\uc2dc \uc815\ube44 \u2014 2026-08-19", "source_file": "pages/B05_Profile/B05_Profile_plan_2026-08-19.md", "file_type": "document", "degree": 5}, {"id": "pages_b05_profile_b05_profile_plan_2026_08_19_\uae30\uc900_\ud574\uc11d_\ubcf4\ub958", "label": "\uae30\uc900 \ud574\uc11d \ubcf4\ub958", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\uc900 \ud574\uc11d \ubcf4\ub958", "community": 54, "community_name": "B05 \uad6c\uc870\ubb3c \uc785\ub825\u00b7\uc885\ub2e8 \ud45c\uc2dc \uc815\ube44 \u2014 2026-08-19", "source_file": "pages/B05_Profile/B05_Profile_plan_2026-08-19.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_plan_2026_08_19_\uc644\ub8cc_\ubc94\uc704", "label": "\uc644\ub8cc \ubc94\uc704", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc644\ub8cc \ubc94\uc704", "community": 54, "community_name": "B05 \uad6c\uc870\ubb3c \uc785\ub825\u00b7\uc885\ub2e8 \ud45c\uc2dc \uc815\ube44 \u2014 2026-08-19", "source_file": "pages/B05_Profile/B05_Profile_plan_2026-08-19.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_plan_2026_08_19_\uc8fc\uc694_\ud56d\ubaa9", "label": "\uc8fc\uc694 \ud56d\ubaa9", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc8fc\uc694 \ud56d\ubaa9", "community": 54, "community_name": "B05 \uad6c\uc870\ubb3c \uc785\ub825\u00b7\uc885\ub2e8 \ud45c\uc2dc \uc815\ube44 \u2014 2026-08-19", "source_file": "pages/B05_Profile/B05_Profile_plan_2026-08-19.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_plan_2026_08_19_\uae30\ub85d\ub41c_\uac80\uc99d", "label": "\uae30\ub85d\ub41c \uac80\uc99d", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\ub85d\ub41c \uac80\uc99d", "community": 54, "community_name": "B05 \uad6c\uc870\ubb3c \uc785\ub825\u00b7\uc885\ub2e8 \ud45c\uc2dc \uc815\ube44 \u2014 2026-08-19", "source_file": "pages/B05_Profile/B05_Profile_plan_2026-08-19.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_api", "label": "B05_api.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_api.md", "community": 65, "community_name": "B05_Profile \u2014 API", "source_file": "pages/B05_Profile/B05_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_api_b05_profile_api", "label": "B05_Profile \u2014 API", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile \u2014 API", "community": 65, "community_name": "B05_Profile \u2014 API", "source_file": "pages/B05_Profile/B05_api.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_b05_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 65, "community_name": "B05_Profile \u2014 API", "source_file": "pages/B05_Profile/B05_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_api_api_\uc2a4\ud0a4\ub9c8_\ubc0f_\ubc18\ud658_\ud544\ub4dc", "label": "API \uc2a4\ud0a4\ub9c8 \ubc0f \ubc18\ud658 \ud544\ub4dc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "API \uc2a4\ud0a4\ub9c8 \ubc0f \ubc18\ud658 \ud544\ub4dc", "community": 65, "community_name": "B05_Profile \u2014 API", "source_file": "pages/B05_Profile/B05_api.md", "file_type": "document", "degree": 2}, {"id": "pages_b05_profile_b05_api_post_project_id_route_confirm_\uc694\uccad_routeconfirmrequest", "label": "`POST /{project_id}/route/confirm` \uc694\uccad (`RouteConfirmRequest`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "`POST /{project_id}/route/confirm` \uc694\uccad (`RouteConfirmRequest`)", "community": 65, "community_name": "B05_Profile \u2014 API", "source_file": "pages/B05_Profile/B05_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_backend", "label": "B05_backend.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_backend.md", "community": 99, "community_name": "B05_Profile \u2014 Backend", "source_file": "pages/B05_Profile/B05_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_backend_b05_profile_backend", "label": "B05_Profile \u2014 Backend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile \u2014 Backend", "community": 99, "community_name": "B05_Profile \u2014 Backend", "source_file": "pages/B05_Profile/B05_backend.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_b05_backend_\uc18c\uc2a4\ucf54\ub4dc_1_1_\uc138\ubd84\ud654_\uc704\ud0a4_\ud30c\uc77c_\ubaa9\ub85d", "label": "\ud83d\udcc2 \uc18c\uc2a4\ucf54\ub4dc 1:1 \uc138\ubd84\ud654 \uc704\ud0a4 \ud30c\uc77c \ubaa9\ub85d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udcc2 \uc18c\uc2a4\ucf54\ub4dc 1:1 \uc138\ubd84\ud654 \uc704\ud0a4 \ud30c\uc77c \ubaa9\ub85d", "community": 99, "community_name": "B05_Profile \u2014 Backend", "source_file": "pages/B05_Profile/B05_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_backend_\ud575\uc2ec_\ubc31\uc5d4\ub4dc_\uc544\ud0a4\ud14d\ucc98_\uac1c\uc694", "label": "\ud83d\udccb \ud575\uc2ec \ubc31\uc5d4\ub4dc \uc544\ud0a4\ud14d\ucc98 \uac1c\uc694", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udccb \ud575\uc2ec \ubc31\uc5d4\ub4dc \uc544\ud0a4\ud14d\ucc98 \uac1c\uc694", "community": 99, "community_name": "B05_Profile \u2014 Backend", "source_file": "pages/B05_Profile/B05_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_completed_followups", "label": "B05_completed_followups.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_completed_followups.md", "community": 150, "community_name": "B05_completed_followups.md", "source_file": "pages/B05_Profile/B05_completed_followups.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_completed_followups_b05_\ud6c4\uc18d_\uc644\ub8cc_\ud56d\ubaa9", "label": "B05 \ud6c4\uc18d \uc644\ub8cc \ud56d\ubaa9", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05 \ud6c4\uc18d \uc644\ub8cc \ud56d\ubaa9", "community": 150, "community_name": "B05_completed_followups.md", "source_file": "pages/B05_Profile/B05_completed_followups.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_cut_fill", "label": "B05_corridor_cut_fill.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_corridor_cut_fill.md", "community": 158, "community_name": "B03 \uacc4\ud68d\ub178\uc120 \uc815\ubcf8\u00b7\uc88c\ud45c\uacc4 \ud6c4\uc18d", "source_file": "pages/B05_Profile/B05_corridor_cut_fill.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_cut_fill_b05_\uad6c\uc870\ubb3c_\uad6c\uac04_\uc808\ucde8_\uce21\ubcbd_\uc131\ud1a0_\ud328\uce58", "label": "B05 \uad6c\uc870\ubb3c \uad6c\uac04 \uc808\ucde8\u00b7\uce21\ubcbd\u00b7\uc131\ud1a0 \ud328\uce58", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B05 \uad6c\uc870\ubb3c \uad6c\uac04 \uc808\ucde8\u00b7\uce21\ubcbd\u00b7\uc131\ud1a0 \ud328\uce58", "community": 158, "community_name": "B03 \uacc4\ud68d\ub178\uc120 \uc815\ubcf8\u00b7\uc88c\ud45c\uacc4 \ud6c4\uc18d", "source_file": "pages/B05_Profile/B05_corridor_cut_fill.md", "file_type": "document", "degree": 4}, {"id": "pages_b05_profile_b05_corridor_cut_fill_\uc808\ucde8\uc640_\uacbd\uacc4", "label": "\uc808\ucde8\uc640 \uacbd\uacc4", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc808\ucde8\uc640 \uacbd\uacc4", "community": 158, "community_name": "B03 \uacc4\ud68d\ub178\uc120 \uc815\ubcf8\u00b7\uc88c\ud45c\uacc4 \ud6c4\uc18d", "source_file": "pages/B05_Profile/B05_corridor_cut_fill.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_cut_fill_b06_\ubcc0\ud615_\uc131\ud1a0\uc120_\ud328\uce58", "label": "B06 \ubcc0\ud615 \uc131\ud1a0\uc120 \ud328\uce58", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06 \ubcc0\ud615 \uc131\ud1a0\uc120 \ud328\uce58", "community": 158, "community_name": "B03 \uacc4\ud68d\ub178\uc120 \uc815\ubcf8\u00b7\uc88c\ud45c\uacc4 \ud6c4\uc18d", "source_file": "pages/B05_Profile/B05_corridor_cut_fill.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_cut_fill_\uc800\uc7a5_\uac80\uc99d", "label": "\uc800\uc7a5\u00b7\uac80\uc99d", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5\u00b7\uac80\uc99d", "community": 158, "community_name": "B03 \uacc4\ud68d\ub178\uc120 \uc815\ubcf8\u00b7\uc88c\ud45c\uacc4 \ud6c4\uc18d", "source_file": "pages/B05_Profile/B05_corridor_cut_fill.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_followup_decisions", "label": "B05_corridor_followup_decisions.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_corridor_followup_decisions.md", "community": 151, "community_name": "B05_corridor_followup_decisions.md", "source_file": "pages/B05_Profile/B05_corridor_followup_decisions.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_followup_decisions_b05_\uad6c\uc870\ubb3c_3d_\ud6c4\uc18d_\ud310\uc815", "label": "B05 \uad6c\uc870\ubb3c 3D \ud6c4\uc18d \ud310\uc815", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05 \uad6c\uc870\ubb3c 3D \ud6c4\uc18d \ud310\uc815", "community": 151, "community_name": "B05_corridor_followup_decisions.md", "source_file": "pages/B05_Profile/B05_corridor_followup_decisions.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_patch_finish", "label": "B05_corridor_patch_finish.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_corridor_patch_finish.md", "community": 66, "community_name": "B05 \ubcc0\ud615 \uc131\ud1a0\uba74 \ub9c8\uac10\u00b7\ub0a0\uac1c \ud328\uce58", "source_file": "pages/B05_Profile/B05_corridor_patch_finish.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_patch_finish_b05_\ubcc0\ud615_\uc131\ud1a0\uba74_\ub9c8\uac10_\ub0a0\uac1c_\ud328\uce58", "label": "B05 \ubcc0\ud615 \uc131\ud1a0\uba74 \ub9c8\uac10\u00b7\ub0a0\uac1c \ud328\uce58", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B05 \ubcc0\ud615 \uc131\ud1a0\uba74 \ub9c8\uac10\u00b7\ub0a0\uac1c \ud328\uce58", "community": 66, "community_name": "B05 \ubcc0\ud615 \uc131\ud1a0\uba74 \ub9c8\uac10\u00b7\ub0a0\uac1c \ud328\uce58", "source_file": "pages/B05_Profile/B05_corridor_patch_finish.md", "file_type": "document", "degree": 4}, {"id": "pages_b05_profile_b05_corridor_patch_finish_\ud328\uce58_\ub9c8\uac10", "label": "\ud328\uce58 \ub9c8\uac10", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud328\uce58 \ub9c8\uac10", "community": 66, "community_name": "B05 \ubcc0\ud615 \uc131\ud1a0\uba74 \ub9c8\uac10\u00b7\ub0a0\uac1c \ud328\uce58", "source_file": "pages/B05_Profile/B05_corridor_patch_finish.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_patch_finish_\uc138\uc6d4\uad50_\ub0a0\uac1c_\ud328\uce58", "label": "\uc138\uc6d4\uad50 \ub0a0\uac1c \ud328\uce58", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\uc6d4\uad50 \ub0a0\uac1c \ud328\uce58", "community": 66, "community_name": "B05 \ubcc0\ud615 \uc131\ud1a0\uba74 \ub9c8\uac10\u00b7\ub0a0\uac1c \ud328\uce58", "source_file": "pages/B05_Profile/B05_corridor_patch_finish.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_patch_finish_\uc800\uc7a5_\uac80\uc99d", "label": "\uc800\uc7a5\u00b7\uac80\uc99d", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5\u00b7\uac80\uc99d", "community": 66, "community_name": "B05 \ubcc0\ud615 \uc131\ud1a0\uba74 \ub9c8\uac10\u00b7\ub0a0\uac1c \ud328\uce58", "source_file": "pages/B05_Profile/B05_corridor_patch_finish.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_plan_curves", "label": "B05_corridor_plan_curves.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_corridor_plan_curves.md", "community": 44, "community_name": "\uc800\uc7a5 \uacbd\ub85c \uaddc\uce59 (Workflow-based Folder Structure)", "source_file": "pages/B05_Profile/B05_corridor_plan_curves.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_plan_curves_b05_\uad6c\uc870\ubb3c_3d_\ud22c\uc601_\ucee4\ube0c", "label": "B05 \uad6c\uc870\ubb3c 3D \ud22c\uc601 \ucee4\ube0c", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B05 \uad6c\uc870\ubb3c 3D \ud22c\uc601 \ucee4\ube0c", "community": 44, "community_name": "\uc800\uc7a5 \uacbd\ub85c \uaddc\uce59 (Workflow-based Folder Structure)", "source_file": "pages/B05_Profile/B05_corridor_plan_curves.md", "file_type": "document", "degree": 6}, {"id": "pages_b05_profile_b05_corridor_plan_curves_\ucee4\ube0c_\uc0dd\uc131_\ub80c\ub354", "label": "\ucee4\ube0c \uc0dd\uc131\u00b7\ub80c\ub354", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucee4\ube0c \uc0dd\uc131\u00b7\ub80c\ub354", "community": 44, "community_name": "\uc800\uc7a5 \uacbd\ub85c \uaddc\uce59 (Workflow-based Folder Structure)", "source_file": "pages/B05_Profile/B05_corridor_plan_curves.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_plan_curves_\ube44\ud0c8_\ud22c\uc601_\uc131\ud1a0\uba74_\uc808\ub2e8", "label": "\ube44\ud0c8 \ud22c\uc601\u00b7\uc131\ud1a0\uba74 \uc808\ub2e8", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ube44\ud0c8 \ud22c\uc601\u00b7\uc131\ud1a0\uba74 \uc808\ub2e8", "community": 44, "community_name": "\uc800\uc7a5 \uacbd\ub85c \uaddc\uce59 (Workflow-based Folder Structure)", "source_file": "pages/B05_Profile/B05_corridor_plan_curves.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_plan_curves_\uad6c\uc870\ubb3c_\ub0a0\uac1c_\ubc14\ub2e5_\uc5f0\uacb0", "label": "\uad6c\uc870\ubb3c \ub0a0\uac1c\u00b7\ubc14\ub2e5 \uc5f0\uacb0", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\uc870\ubb3c \ub0a0\uac1c\u00b7\ubc14\ub2e5 \uc5f0\uacb0", "community": 44, "community_name": "\uc800\uc7a5 \uacbd\ub85c \uaddc\uce59 (Workflow-based Folder Structure)", "source_file": "pages/B05_Profile/B05_corridor_plan_curves.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_plan_curves_\uc800\uc7a5_\ud638\ud658\uc131", "label": "\uc800\uc7a5\u00b7\ud638\ud658\uc131", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5\u00b7\ud638\ud658\uc131", "community": 44, "community_name": "\uc800\uc7a5 \uacbd\ub85c \uaddc\uce59 (Workflow-based Folder Structure)", "source_file": "pages/B05_Profile/B05_corridor_plan_curves.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_plan_curves_\uac80\uc99d", "label": "\uac80\uc99d", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d", "community": 44, "community_name": "\uc800\uc7a5 \uacbd\ub85c \uaddc\uce59 (Workflow-based Folder Structure)", "source_file": "pages/B05_Profile/B05_corridor_plan_curves.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_surface", "label": "B05_corridor_surface.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_corridor_surface.md", "community": 52, "community_name": "B05 \uacc4\ud68d\ub178\uc120 \ucf54\ub9ac\ub3c4 \uc0bc\uac01\ub9dd \uc11c\ud53c\uc2a4", "source_file": "pages/B05_Profile/B05_corridor_surface.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_surface_b05_\uacc4\ud68d\ub178\uc120_\ucf54\ub9ac\ub3c4_\uc0bc\uac01\ub9dd_\uc11c\ud53c\uc2a4", "label": "B05 \uacc4\ud68d\ub178\uc120 \ucf54\ub9ac\ub3c4 \uc0bc\uac01\ub9dd \uc11c\ud53c\uc2a4", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05 \uacc4\ud68d\ub178\uc120 \ucf54\ub9ac\ub3c4 \uc0bc\uac01\ub9dd \uc11c\ud53c\uc2a4", "community": 52, "community_name": "B05 \uacc4\ud68d\ub178\uc120 \ucf54\ub9ac\ub3c4 \uc0bc\uac01\ub9dd \uc11c\ud53c\uc2a4", "source_file": "pages/B05_Profile/B05_corridor_surface.md", "file_type": "document", "degree": 5}, {"id": "pages_b05_profile_b05_corridor_surface_\ud504\ub860\ud2b8\uc5d4\ub4dc_\uad6c\uc131", "label": "\ud504\ub860\ud2b8\uc5d4\ub4dc \uad6c\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud504\ub860\ud2b8\uc5d4\ub4dc \uad6c\uc131", "community": 52, "community_name": "B05 \uacc4\ud68d\ub178\uc120 \ucf54\ub9ac\ub3c4 \uc0bc\uac01\ub9dd \uc11c\ud53c\uc2a4", "source_file": "pages/B05_Profile/B05_corridor_surface.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_surface_\uc800\uc7a5_\ud638\ud658\uc131", "label": "\uc800\uc7a5\u00b7\ud638\ud658\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5\u00b7\ud638\ud658\uc131", "community": 52, "community_name": "B05 \uacc4\ud68d\ub178\uc120 \ucf54\ub9ac\ub3c4 \uc0bc\uac01\ub9dd \uc11c\ud53c\uc2a4", "source_file": "pages/B05_Profile/B05_corridor_surface.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_surface_\uc9c4\ud589_\uc911_\uacc4\ud68d", "label": "\uc9c4\ud589 \uc911 \uacc4\ud68d", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc9c4\ud589 \uc911 \uacc4\ud68d", "community": 52, "community_name": "B05 \uacc4\ud68d\ub178\uc120 \ucf54\ub9ac\ub3c4 \uc0bc\uac01\ub9dd \uc11c\ud53c\uc2a4", "source_file": "pages/B05_Profile/B05_corridor_surface.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_surface_\uac80\uc99d", "label": "\uac80\uc99d", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d", "community": 52, "community_name": "B05 \uacc4\ud68d\ub178\uc120 \ucf54\ub9ac\ub3c4 \uc0bc\uac01\ub9dd \uc11c\ud53c\uc2a4", "source_file": "pages/B05_Profile/B05_corridor_surface.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_turn_correction_plan", "label": "B05_corridor_turn_correction_plan.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_corridor_turn_correction_plan.md", "community": 38, "community_name": "B05 \uae09\uc120\ud68c 3D \uad6d\ubd80 \ubcf4\uc815 \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_corridor_turn_correction_plan.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_turn_correction_plan_b05_\uae09\uc120\ud68c_3d_\uad6d\ubd80_\ubcf4\uc815_\uacc4\ud68d", "label": "B05 \uae09\uc120\ud68c 3D \uad6d\ubd80 \ubcf4\uc815 \uacc4\ud68d", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B05 \uae09\uc120\ud68c 3D \uad6d\ubd80 \ubcf4\uc815 \uacc4\ud68d", "community": 38, "community_name": "B05 \uae09\uc120\ud68c 3D \uad6d\ubd80 \ubcf4\uc815 \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_corridor_turn_correction_plan.md", "file_type": "document", "degree": 6}, {"id": "pages_b05_profile_b05_corridor_turn_correction_plan_\ubaa9\uc801\uacfc_\uacbd\uacc4", "label": "\ubaa9\uc801\uacfc \uacbd\uacc4", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubaa9\uc801\uacfc \uacbd\uacc4", "community": 38, "community_name": "B05 \uae09\uc120\ud68c 3D \uad6d\ubd80 \ubcf4\uc815 \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_corridor_turn_correction_plan.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_turn_correction_plan_\uad6d\ubd80_\ud328\uce58_\uc808\ucc28", "label": "\uad6d\ubd80 \ud328\uce58 \uc808\ucc28", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6d\ubd80 \ud328\uce58 \uc808\ucc28", "community": 38, "community_name": "B05 \uae09\uc120\ud68c 3D \uad6d\ubd80 \ubcf4\uc815 \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_corridor_turn_correction_plan.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_turn_correction_plan_\uad6c\uc870\ubb3c_\uc5f0\ub3d9", "label": "\uad6c\uc870\ubb3c \uc5f0\ub3d9", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\uc870\ubb3c \uc5f0\ub3d9", "community": 38, "community_name": "B05 \uae09\uc120\ud68c 3D \uad6d\ubd80 \ubcf4\uc815 \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_corridor_turn_correction_plan.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_turn_correction_plan_\ud655\uc778\ub41c_\ub178\uacac_\ud655\uc7a5_\ud68c\uadc0", "label": "\ud655\uc778\ub41c \ub178\uacac \ud655\uc7a5 \ud68c\uadc0", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud655\uc778\ub41c \ub178\uacac \ud655\uc7a5 \ud68c\uadc0", "community": 38, "community_name": "B05 \uae09\uc120\ud68c 3D \uad6d\ubd80 \ubcf4\uc815 \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_corridor_turn_correction_plan.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_corridor_turn_correction_plan_\uc644\ub8cc_\uc870\uac74", "label": "\uc644\ub8cc \uc870\uac74", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc644\ub8cc \uc870\uac74", "community": 38, "community_name": "B05 \uae09\uc120\ud68c 3D \uad6d\ubd80 \ubcf4\uc815 \uacc4\ud68d", "source_file": "pages/B05_Profile/B05_corridor_turn_correction_plan.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_db", "label": "B05_db.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_db.md", "community": 100, "community_name": "B05_Profile \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B05_Profile/B05_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_db_b05_profile_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "B05_Profile \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "community": 100, "community_name": "B05_Profile \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B05_Profile/B05_db.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_b05_db_repository_\ud568\uc218", "label": "Repository \ud568\uc218", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Repository \ud568\uc218", "community": 100, "community_name": "B05_Profile \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B05_Profile/B05_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_db_\uc800\uc7a5_\uacbd\ub85c", "label": "\uc800\uc7a5 \uacbd\ub85c", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5 \uacbd\ub85c", "community": 100, "community_name": "B05_Profile \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B05_Profile/B05_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_dependencies", "label": "B05_dependencies.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_dependencies.md", "community": 131, "community_name": "B05_Profile \u2014 Dependencies", "source_file": "pages/B05_Profile/B05_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_dependencies_b05_profile_dependencies", "label": "B05_Profile \u2014 Dependencies", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile \u2014 Dependencies", "community": 131, "community_name": "B05_Profile \u2014 Dependencies", "source_file": "pages/B05_Profile/B05_dependencies.md", "file_type": "document", "degree": 2}, {"id": "pages_b05_profile_b05_dependencies_\ud398\uc774\uc9c0_\ud30c\uc77c\ubcc4_\uc5f0\uacb0", "label": "\ud398\uc774\uc9c0 \ud30c\uc77c\ubcc4 \uc5f0\uacb0", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud398\uc774\uc9c0 \ud30c\uc77c\ubcc4 \uc5f0\uacb0", "community": 131, "community_name": "B05_Profile \u2014 Dependencies", "source_file": "pages/B05_Profile/B05_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend", "label": "B05_frontend.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_frontend.md", "community": 55, "community_name": "B07 \uad6c\uc870\ubb3c \ud45c\uc900\ub3c4 \u2014 \uc870\uc0ac\u00b7\ud569\uc758\uc640 \ud604\uc7ac \ud1b5\ub85c", "source_file": "pages/B05_Profile/B05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend_b05_profile_frontend", "label": "B05_Profile \u2014 Frontend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile \u2014 Frontend", "community": 55, "community_name": "B07 \uad6c\uc870\ubb3c \ud45c\uc900\ub3c4 \u2014 \uc870\uc0ac\u00b7\ud569\uc758\uc640 \ud604\uc7ac \ud1b5\ub85c", "source_file": "pages/B05_Profile/B05_frontend.md", "file_type": "document", "degree": 6}, {"id": "pages_b05_profile_b05_frontend_\uc18c\uc2a4\ucf54\ub4dc_1_1_\uc138\ubd84\ud654_\uc704\ud0a4_\ud30c\uc77c_\ubaa9\ub85d", "label": "\ud83d\udcc2 \uc18c\uc2a4\ucf54\ub4dc 1:1 \uc138\ubd84\ud654 \uc704\ud0a4 \ud30c\uc77c \ubaa9\ub85d", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udcc2 \uc18c\uc2a4\ucf54\ub4dc 1:1 \uc138\ubd84\ud654 \uc704\ud0a4 \ud30c\uc77c \ubaa9\ub85d", "community": 55, "community_name": "B07 \uad6c\uc870\ubb3c \ud45c\uc900\ub3c4 \u2014 \uc870\uc0ac\u00b7\ud569\uc758\uc640 \ud604\uc7ac \ud1b5\ub85c", "source_file": "pages/B05_Profile/B05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend_\ud575\uc2ec_\ud504\ub860\ud2b8\uc5d4\ub4dc_\uc544\ud0a4\ud14d\ucc98_\uac1c\uc694", "label": "\ud83d\udccb \ud575\uc2ec \ud504\ub860\ud2b8\uc5d4\ub4dc \uc544\ud0a4\ud14d\ucc98 \uac1c\uc694", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udccb \ud575\uc2ec \ud504\ub860\ud2b8\uc5d4\ub4dc \uc544\ud0a4\ud14d\ucc98 \uac1c\uc694", "community": 55, "community_name": "B07 \uad6c\uc870\ubb3c \ud45c\uc900\ub3c4 \u2014 \uc870\uc0ac\u00b7\ud569\uc758\uc640 \ud604\uc7ac \ud1b5\ub85c", "source_file": "pages/B05_Profile/B05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend_\ub0a8\uc740_\ud30c\uc77c_\ud55c\uacc4", "label": "\ub0a8\uc740 \ud30c\uc77c \ud55c\uacc4", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub0a8\uc740 \ud30c\uc77c \ud55c\uacc4", "community": 55, "community_name": "B07 \uad6c\uc870\ubb3c \ud45c\uc900\ub3c4 \u2014 \uc870\uc0ac\u00b7\ud569\uc758\uc640 \ud604\uc7ac \ud1b5\ub85c", "source_file": "pages/B05_Profile/B05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend_\uc885\ub2e8\ud14c\uc774\ube14_\ud45c\uc2dc_\ubcf4\uc815", "label": "\uc885\ub2e8\ud14c\uc774\ube14 \ud45c\uc2dc \ubcf4\uc815", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc885\ub2e8\ud14c\uc774\ube14 \ud45c\uc2dc \ubcf4\uc815", "community": 55, "community_name": "B07 \uad6c\uc870\ubb3c \ud45c\uc900\ub3c4 \u2014 \uc870\uc0ac\u00b7\ud569\uc758\uc640 \ud604\uc7ac \ud1b5\ub85c", "source_file": "pages/B05_Profile/B05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend_\uc885\ub2e8_\ud3b8\uc9d1_\uc548\uc804\uc7a5\uce58", "label": "\uc885\ub2e8 \ud3b8\uc9d1 \uc548\uc804\uc7a5\uce58", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc885\ub2e8 \ud3b8\uc9d1 \uc548\uc804\uc7a5\uce58", "community": 55, "community_name": "B07 \uad6c\uc870\ubb3c \ud45c\uc900\ub3c4 \u2014 \uc870\uc0ac\u00b7\ud569\uc758\uc640 \ud604\uc7ac \ud1b5\ub85c", "source_file": "pages/B05_Profile/B05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend_alignment", "label": "B05_frontend_alignment.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_frontend_alignment.md", "community": 67, "community_name": "B05_Profile \u2014 Profile Alignment & Table", "source_file": "pages/B05_Profile/B05_frontend_alignment.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend_alignment_b05_profile_profile_alignment_table", "label": "B05_Profile \u2014 Profile Alignment & Table", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile \u2014 Profile Alignment & Table", "community": 67, "community_name": "B05_Profile \u2014 Profile Alignment & Table", "source_file": "pages/B05_Profile/B05_frontend_alignment.md", "file_type": "document", "degree": 4}, {"id": "pages_b05_profile_b05_frontend_alignment_\uc885\ub2e8_\uacc4\ud68d\uace0_\ud3b8\uc9d1_\uc778\ud130\ub799\uc158_ui_profile_edit_ts_ui_profile_panel_ts_ui_page_ts", "label": "\uc885\ub2e8 \uacc4\ud68d\uace0 \ud3b8\uc9d1 \uc778\ud130\ub799\uc158 (`_UI_Profile_Edit.ts`, `_UI_Profile_Panel.ts`, `_UI_Page.ts`)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc885\ub2e8 \uacc4\ud68d\uace0 \ud3b8\uc9d1 \uc778\ud130\ub799\uc158 (`_UI_Profile_Edit.ts`, `_UI_Profile_Panel.ts`, `_UI_Page.ts`)", "community": 67, "community_name": "B05_Profile \u2014 Profile Alignment & Table", "source_file": "pages/B05_Profile/B05_frontend_alignment.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend_alignment_12\ud589_\ub3c4\uba74_\ud14c\uc774\ube14_\ubc0f_\uac00\ub85c_\uc2a4\ud06c\ub864_\uc815\ub82c_\uac1c\ud3b8_ui_profile_table_ts_ui_profile_panel_ts", "label": "12\ud589 \ub3c4\uba74 \ud14c\uc774\ube14 \ubc0f \uac00\ub85c \uc2a4\ud06c\ub864 \uc815\ub82c \uac1c\ud3b8 (`_UI_Profile_Table.ts`, `_UI_Profile_Panel.ts`)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "12\ud589 \ub3c4\uba74 \ud14c\uc774\ube14 \ubc0f \uac00\ub85c \uc2a4\ud06c\ub864 \uc815\ub82c \uac1c\ud3b8 (`_UI_Profile_Table.ts`, `_UI_Profile_Panel.ts`)", "community": 67, "community_name": "B05_Profile \u2014 Profile Alignment & Table", "source_file": "pages/B05_Profile/B05_frontend_alignment.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend_alignment_\ube44\uc815\uaddc_\uce21\uc810_\uad6c\uc870\ubb3c_\ud14c\uc774\ube14_\uc624\ubc84\ub808\uc774_\ub7f0\ud0c0\uc784_\uac80\uc99d_ui_profile_table_ts_ui_irregularstations_ts", "label": "\ube44\uc815\uaddc \uce21\uc810(\uad6c\uc870\ubb3c) \ud14c\uc774\ube14 \uc624\ubc84\ub808\uc774 & \ub7f0\ud0c0\uc784 \uac80\uc99d (`_UI_Profile_Table.ts`, `_UI_IrregularStations.ts`)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ube44\uc815\uaddc \uce21\uc810(\uad6c\uc870\ubb3c) \ud14c\uc774\ube14 \uc624\ubc84\ub808\uc774 & \ub7f0\ud0c0\uc784 \uac80\uc99d (`_UI_Profile_Table.ts`, `_UI_IrregularStations.ts`)", "community": 67, "community_name": "B05_Profile \u2014 Profile Alignment & Table", "source_file": "pages/B05_Profile/B05_frontend_alignment.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend_viewer", "label": "B05_frontend_viewer.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_frontend_viewer.md", "community": 101, "community_name": "B05_Profile \u2014 3D Viewer & Interaction", "source_file": "pages/B05_Profile/B05_frontend_viewer.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend_viewer_b05_profile_3d_viewer_interaction", "label": "B05_Profile \u2014 3D Viewer & Interaction", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile \u2014 3D Viewer & Interaction", "community": 101, "community_name": "B05_Profile \u2014 3D Viewer & Interaction", "source_file": "pages/B05_Profile/B05_frontend_viewer.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_b05_frontend_viewer_3d_\uc9c0\ud615_\ubdf0\ud3ec\ud2b8_\uc2dc\uac01\ud654_ui_viewer_ts_ui_markers_ts", "label": "3D \uc9c0\ud615 \ubdf0\ud3ec\ud2b8 \uc2dc\uac01\ud654 (`_UI_Viewer.ts`, `_UI_Markers.ts`)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3D \uc9c0\ud615 \ubdf0\ud3ec\ud2b8 \uc2dc\uac01\ud654 (`_UI_Viewer.ts`, `_UI_Markers.ts`)", "community": 101, "community_name": "B05_Profile \u2014 3D Viewer & Interaction", "source_file": "pages/B05_Profile/B05_frontend_viewer.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_frontend_viewer_3d_\ub9c8\ucee4_\uc9c1\uc811_\ub4dc\ub798\uadf8_\uc774\ub3d9_0_old_i_401_\uc774\uc2dd", "label": "3D \ub9c8\ucee4 \uc9c1\uc811 \ub4dc\ub798\uadf8 \uc774\ub3d9 (0_old I-401 \uc774\uc2dd)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3D \ub9c8\ucee4 \uc9c1\uc811 \ub4dc\ub798\uadf8 \uc774\ub3d9 (0_old I-401 \uc774\uc2dd)", "community": 101, "community_name": "B05_Profile \u2014 3D Viewer & Interaction", "source_file": "pages/B05_Profile/B05_frontend_viewer.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_masshaul_structure_2026_09", "label": "B05_masshaul_structure_2026_09.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_masshaul_structure_2026_09.md", "community": 166, "community_name": "B05 \uc885\ub2e8\uace1\uc120\u00b7\uc2e4\uc2dc\uac04 \ud6a1\ub2e8 \uc5f0\ub3d9", "source_file": "pages/B05_Profile/B05_masshaul_structure_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_masshaul_structure_2026_09_b05_\uc720\ud1a0\uace1\uc120_\uad6c\uc870\ubb3c_\ud6c4\uc18d", "label": "B05 \uc720\ud1a0\uace1\uc120\u00b7\uad6c\uc870\ubb3c \ud6c4\uc18d", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05 \uc720\ud1a0\uace1\uc120\u00b7\uad6c\uc870\ubb3c \ud6c4\uc18d", "community": 166, "community_name": "B05 \uc885\ub2e8\uace1\uc120\u00b7\uc2e4\uc2dc\uac04 \ud6a1\ub2e8 \uc5f0\ub3d9", "source_file": "pages/B05_Profile/B05_masshaul_structure_2026_09.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_b05_masshaul_structure_2026_09_\uc720\ud1a0\uace1\uc120_\uacf5\uc6a9\ud654", "label": "\uc720\ud1a0\uace1\uc120 \uacf5\uc6a9\ud654", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc720\ud1a0\uace1\uc120 \uacf5\uc6a9\ud654", "community": 166, "community_name": "B05 \uc885\ub2e8\uace1\uc120\u00b7\uc2e4\uc2dc\uac04 \ud6a1\ub2e8 \uc5f0\ub3d9", "source_file": "pages/B05_Profile/B05_masshaul_structure_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_masshaul_structure_2026_09_\uc720\uc9c0_\ud310\uc815_\uc0ac\ud56d", "label": "\uc720\uc9c0\u00b7\ud310\uc815 \uc0ac\ud56d", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc720\uc9c0\u00b7\ud310\uc815 \uc0ac\ud56d", "community": 166, "community_name": "B05 \uc885\ub2e8\uace1\uc120\u00b7\uc2e4\uc2dc\uac04 \ud6a1\ub2e8 \uc5f0\ub3d9", "source_file": "pages/B05_Profile/B05_masshaul_structure_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_interaction_2026_09", "label": "B05_profile_interaction_2026_09.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_profile_interaction_2026_09.md", "community": 167, "community_name": "B06 \ud6a1\ub2e8 \uacc4\uc0b0 \ubbf8\ub7ec\u00b7\uce74\ub4dc \ud45c\uae30", "source_file": "pages/B05_Profile/B05_profile_interaction_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_interaction_2026_09_b05_\uc885\ub2e8\uace1\uc120_\uc2e4\uc2dc\uac04_\ud6a1\ub2e8_\uc5f0\ub3d9", "label": "B05 \uc885\ub2e8\uace1\uc120\u00b7\uc2e4\uc2dc\uac04 \ud6a1\ub2e8 \uc5f0\ub3d9", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05 \uc885\ub2e8\uace1\uc120\u00b7\uc2e4\uc2dc\uac04 \ud6a1\ub2e8 \uc5f0\ub3d9", "community": 167, "community_name": "B06 \ud6a1\ub2e8 \uacc4\uc0b0 \ubbf8\ub7ec\u00b7\uce74\ub4dc \ud45c\uae30", "source_file": "pages/B05_Profile/B05_profile_interaction_2026_09.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_b05_profile_interaction_2026_09_\ucd08\uae30_\uc885\ub2e8\uace1\uc120", "label": "\ucd08\uae30 \uc885\ub2e8\uace1\uc120", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucd08\uae30 \uc885\ub2e8\uace1\uc120", "community": 167, "community_name": "B06 \ud6a1\ub2e8 \uacc4\uc0b0 \ubbf8\ub7ec\u00b7\uce74\ub4dc \ud45c\uae30", "source_file": "pages/B05_Profile/B05_profile_interaction_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_profile_interaction_2026_09_\uc2e4\uc2dc\uac04_\ud6a1\ub2e8_\uc720\ud1a0\uace1\uc120", "label": "\uc2e4\uc2dc\uac04 \ud6a1\ub2e8\u00b7\uc720\ud1a0\uace1\uc120", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2e4\uc2dc\uac04 \ud6a1\ub2e8\u00b7\uc720\ud1a0\uace1\uc120", "community": 167, "community_name": "B06 \ud6a1\ub2e8 \uacc4\uc0b0 \ubbf8\ub7ec\u00b7\uce74\ub4dc \ud45c\uae30", "source_file": "pages/B05_Profile/B05_profile_interaction_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structure_stations", "label": "B05_structure_stations.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_structure_stations.md", "community": 68, "community_name": "B05 \uad6c\uc870\ubb3c \ube44\uc815\uaddc \uce21\uc810 \uacf5\uae09", "source_file": "pages/B05_Profile/B05_structure_stations.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structure_stations_b05_\uad6c\uc870\ubb3c_\ube44\uc815\uaddc_\uce21\uc810_\uacf5\uae09", "label": "B05 \uad6c\uc870\ubb3c \ube44\uc815\uaddc \uce21\uc810 \uacf5\uae09", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B05 \uad6c\uc870\ubb3c \ube44\uc815\uaddc \uce21\uc810 \uacf5\uae09", "community": 68, "community_name": "B05 \uad6c\uc870\ubb3c \ube44\uc815\uaddc \uce21\uc810 \uacf5\uae09", "source_file": "pages/B05_Profile/B05_structure_stations.md", "file_type": "document", "degree": 4}, {"id": "pages_b05_profile_b05_structure_stations_\uacf5\uae09_\uacbd\ub85c", "label": "\uacf5\uae09 \uacbd\ub85c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\uae09 \uacbd\ub85c", "community": 68, "community_name": "B05 \uad6c\uc870\ubb3c \ube44\uc815\uaddc \uce21\uc810 \uacf5\uae09", "source_file": "pages/B05_Profile/B05_structure_stations.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structure_stations_\uc815\ubcf8_\uaddc\uce59", "label": "\uc815\ubcf8 \uaddc\uce59", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc815\ubcf8 \uaddc\uce59", "community": 68, "community_name": "B05 \uad6c\uc870\ubb3c \ube44\uc815\uaddc \uce21\uc810 \uacf5\uae09", "source_file": "pages/B05_Profile/B05_structure_stations.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structure_stations_\uac80\uc99d", "label": "\uac80\uc99d", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d", "community": 68, "community_name": "B05 \uad6c\uc870\ubb3c \ube44\uc815\uaddc \uce21\uc810 \uacf5\uae09", "source_file": "pages/B05_Profile/B05_structure_stations.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structures", "label": "B05_structures.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_structures.md", "community": 22, "community_name": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "source_file": "pages/B05_Profile/B05_structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structures_b05_\uad6c\uc870\ubb3c_\uc815\ubcf8_\ud1b5\ud569_\ud3b8\uc9d1", "label": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 32.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "community": 22, "community_name": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "source_file": "pages/B05_Profile/B05_structures.md", "file_type": "document", "degree": 9}, {"id": "pages_b05_profile_b05_structures_\uc815\ubcf8\uacfc_\ud0c0\uc785_\ub808\uc9c0\uc2a4\ud2b8\ub9ac", "label": "\uc815\ubcf8\uacfc \ud0c0\uc785 \ub808\uc9c0\uc2a4\ud2b8\ub9ac", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc815\ubcf8\uacfc \ud0c0\uc785 \ub808\uc9c0\uc2a4\ud2b8\ub9ac", "community": 22, "community_name": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "source_file": "pages/B05_Profile/B05_structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structures_\ubc30\uc218\uad00_\uc2dc\uc124_\uc635\uc158", "label": "\ubc30\uc218\uad00\u00b7\uc2dc\uc124 \uc635\uc158", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc30\uc218\uad00\u00b7\uc2dc\uc124 \uc635\uc158", "community": 22, "community_name": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "source_file": "pages/B05_Profile/B05_structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structures_\ubc31\uc5d4\ub4dc_\ud30c\uc77c", "label": "\ubc31\uc5d4\ub4dc \ud30c\uc77c", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc31\uc5d4\ub4dc \ud30c\uc77c", "community": 22, "community_name": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "source_file": "pages/B05_Profile/B05_structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structures_\ud504\ub860\ud2b8\uc5d4\ub4dc_\ud30c\uc77c\uacfc_\ub3d9\uc791", "label": "\ud504\ub860\ud2b8\uc5d4\ub4dc \ud30c\uc77c\uacfc \ub3d9\uc791", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud504\ub860\ud2b8\uc5d4\ub4dc \ud30c\uc77c\uacfc \ub3d9\uc791", "community": 22, "community_name": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "source_file": "pages/B05_Profile/B05_structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structures_\uc720\uc5ed_\ucd94\ucc9c_\uac1c\ub7b5_\ub2e8\uba74", "label": "\uc720\uc5ed \ucd94\ucc9c\u00b7\uac1c\ub7b5 \ub2e8\uba74", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc720\uc5ed \ucd94\ucc9c\u00b7\uac1c\ub7b5 \ub2e8\uba74", "community": 22, "community_name": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "source_file": "pages/B05_Profile/B05_structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structures_api", "label": "API", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "API", "community": 22, "community_name": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "source_file": "pages/B05_Profile/B05_structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structures_b06_\uacbd\uacc4\uc640_\ub0a8\uc740_\ubc94\uc704", "label": "B06 \uacbd\uacc4\uc640 \ub0a8\uc740 \ubc94\uc704", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06 \uacbd\uacc4\uc640 \ub0a8\uc740 \ubc94\uc704", "community": 22, "community_name": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "source_file": "pages/B05_Profile/B05_structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_b05_structures_\uac80\uc99d", "label": "\uac80\uc99d", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d", "community": 22, "community_name": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "source_file": "pages/B05_Profile/B05_structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_engine_grade", "label": "B05_Profile_Engine_Grade.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_Engine_Grade.md", "community": 132, "community_name": "B05_Profile_Engine_Grade.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Grade.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_engine_grade_b05_profile_engine_grade_py", "label": "B05_Profile_Engine_Grade.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_Engine_Grade.py", "community": 132, "community_name": "B05_Profile_Engine_Grade.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Grade.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_backend_b05_profile_engine_grade_\uc8fc\uc694_\ud074\ub798\uc2a4_\ubc0f_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud074\ub798\uc2a4 \ubc0f \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud074\ub798\uc2a4 \ubc0f \ud568\uc218 \ubaa9\ub85d", "community": 132, "community_name": "B05_Profile_Engine_Grade.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Grade.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_engine_grade_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 132, "community_name": "B05_Profile_Engine_Grade.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Grade.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_engine_sections", "label": "B05_Profile_Engine_Sections.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_Engine_Sections.md", "community": 102, "community_name": "B05_Profile_Engine_Sections.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Sections.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_engine_sections_b05_profile_engine_sections_py", "label": "B05_Profile_Engine_Sections.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_Engine_Sections.py", "community": 102, "community_name": "B05_Profile_Engine_Sections.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Sections.md", "file_type": "document", "degree": 4}, {"id": "pages_b05_profile_backend_b05_profile_engine_sections_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 102, "community_name": "B05_Profile_Engine_Sections.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Sections.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_engine_sections_\ub7f0\ud0c0\uc784_\uac80\uc99d_\uc8fc\uc758\uc0ac\ud56d_2026_07_24_\uac80\uc99d_\ubcf4\uace0\uc11c_\uae30\uc900", "label": "\u26a0\ufe0f \ub7f0\ud0c0\uc784 \uac80\uc99d \uc8fc\uc758\uc0ac\ud56d (2026-07-24 \uac80\uc99d \ubcf4\uace0\uc11c \uae30\uc900)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u26a0\ufe0f \ub7f0\ud0c0\uc784 \uac80\uc99d \uc8fc\uc758\uc0ac\ud56d (2026-07-24 \uac80\uc99d \ubcf4\uace0\uc11c \uae30\uc900)", "community": 102, "community_name": "B05_Profile_Engine_Sections.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Sections.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_engine_sections_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 102, "community_name": "B05_Profile_Engine_Sections.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Sections.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_engine_solver", "label": "B05_Profile_Engine_Solver.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_Engine_Solver.md", "community": 133, "community_name": "B05_Profile_Engine_Solver.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Solver.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_engine_solver_b05_profile_engine_solver_py", "label": "B05_Profile_Engine_Solver.py", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_Engine_Solver.py", "community": 133, "community_name": "B05_Profile_Engine_Solver.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Solver.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_backend_b05_profile_engine_solver_\uc5d4\uc9c4_\ud575\uc2ec_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc5d4\uc9c4 \ud575\uc2ec \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc5d4\uc9c4 \ud575\uc2ec \ud568\uc218 \ubaa9\ub85d", "community": 133, "community_name": "B05_Profile_Engine_Solver.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Solver.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_engine_solver_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 133, "community_name": "B05_Profile_Engine_Solver.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Engine_Solver.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_repository", "label": "B05_Profile_Repository.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_Repository.md", "community": 134, "community_name": "B05_Profile_Repository.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Repository.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_repository_b05_profile_repository_py", "label": "B05_Profile_Repository.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_Repository.py", "community": 134, "community_name": "B05_Profile_Repository.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Repository.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_backend_b05_profile_repository_db_\uc811\uadfc_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f DB \uc811\uadfc \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f DB \uc811\uadfc \ud568\uc218 \ubaa9\ub85d", "community": 134, "community_name": "B05_Profile_Repository.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Repository.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_repository_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 134, "community_name": "B05_Profile_Repository.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Repository.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_router", "label": "B05_Profile_Router.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_Router.md", "community": 135, "community_name": "B05_Profile_Router.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_router_b05_profile_router_py", "label": "B05_Profile_Router.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_Router.py", "community": 135, "community_name": "B05_Profile_Router.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Router.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_backend_b05_profile_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 135, "community_name": "B05_Profile_Router.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_router_\uc5f0\uad00_\ubaa8\ub4c8_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \ubaa8\ub4c8 \ubc0f \uc758\uc874\uc131", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \ubaa8\ub4c8 \ubc0f \uc758\uc874\uc131", "community": 135, "community_name": "B05_Profile_Router.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_router_confirm", "label": "B05_Profile_Router_Confirm.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_Router_Confirm.md", "community": 136, "community_name": "B05_Profile_Router_Confirm.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Router_Confirm.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_router_confirm_b05_profile_router_confirm_py", "label": "B05_Profile_Router_Confirm.py", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_Router_Confirm.py", "community": 136, "community_name": "B05_Profile_Router_Confirm.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Router_Confirm.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_backend_b05_profile_router_confirm_\uc8fc\uc694_\ud5ec\ud37c_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud5ec\ud37c \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud5ec\ud37c \ud568\uc218 \ubaa9\ub85d", "community": 136, "community_name": "B05_Profile_Router_Confirm.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Router_Confirm.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_router_confirm_\uc5f0\uad00_\ubaa8\ub4c8", "label": "\ud83d\udd17 \uc5f0\uad00 \ubaa8\ub4c8", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \ubaa8\ub4c8", "community": 136, "community_name": "B05_Profile_Router_Confirm.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Router_Confirm.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_schema", "label": "B05_Profile_Schema.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_Schema.md", "community": 137, "community_name": "B05_Profile_Schema.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Schema.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_schema_b05_profile_schema_py", "label": "B05_Profile_Schema.py", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_Schema.py", "community": 137, "community_name": "B05_Profile_Schema.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Schema.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_backend_b05_profile_schema_pydantic_\ubaa8\ub378_\ubc0f_\uac80\uc99d_\ud5ec\ud37c_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f Pydantic \ubaa8\ub378 \ubc0f \uac80\uc99d \ud5ec\ud37c \ubaa9\ub85d", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f Pydantic \ubaa8\ub378 \ubc0f \uac80\uc99d \ud5ec\ud37c \ubaa9\ub85d", "community": 137, "community_name": "B05_Profile_Schema.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Schema.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_backend_b05_profile_schema_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 137, "community_name": "B05_Profile_Schema.md", "source_file": "pages/B05_Profile/backend/B05_Profile_Schema.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_api_fetch", "label": "B05_Profile_Api_Fetch.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_Api_Fetch.md", "community": 103, "community_name": "B05_Profile_Api_Fetch.ts", "source_file": "pages/B05_Profile/frontend/B05_Profile_Api_Fetch.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_api_fetch_b05_profile_api_fetch_ts", "label": "B05_Profile_Api_Fetch.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_Api_Fetch.ts", "community": 103, "community_name": "B05_Profile_Api_Fetch.ts", "source_file": "pages/B05_Profile/frontend/B05_Profile_Api_Fetch.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_frontend_b05_profile_api_fetch_\uc8fc\uc694_api_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 API \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 API \ud568\uc218 \ubaa9\ub85d", "community": 103, "community_name": "B05_Profile_Api_Fetch.ts", "source_file": "pages/B05_Profile/frontend/B05_Profile_Api_Fetch.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_api_fetch_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 103, "community_name": "B05_Profile_Api_Fetch.ts", "source_file": "pages/B05_Profile/frontend/B05_Profile_Api_Fetch.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_panel", "label": "B05_Profile_UI_Drainage_Panel.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_UI_Drainage_Panel.md", "community": 104, "community_name": "B05_Profile_UI_Drainage_Panel", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_panel_b05_profile_ui_drainage_panel", "label": "B05_Profile_UI_Drainage_Panel", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_UI_Drainage_Panel", "community": 104, "community_name": "B05_Profile_UI_Drainage_Panel", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Panel.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_panel_\uac1c\uc694_\ubc0f_\ud2b9\uc9d5", "label": "\ud83d\udccb \uac1c\uc694 \ubc0f \ud2b9\uc9d5", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udccb \uac1c\uc694 \ubc0f \ud2b9\uc9d5", "community": 104, "community_name": "B05_Profile_UI_Drainage_Panel", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_panel_\uc8fc\uc694_\ud568\uc218_\uc2ec\ubcfc_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 / \uc2ec\ubcfc \ubaa9\ub85d", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 / \uc2ec\ubcfc \ubaa9\ub85d", "community": 104, "community_name": "B05_Profile_UI_Drainage_Panel", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts", "label": "B05_Profile_UI_Drainage_Parts.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_UI_Drainage_Parts.md", "community": 69, "community_name": "B05_Profile_UI_Drainage_Parts \u2014 \ubc30\uc218\uc720\uc5ed \uacf5\uc6a9 UI \ud30c\uce20", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Parts.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts_b05_profile_ui_drainage_parts_\ubc30\uc218\uc720\uc5ed_\uacf5\uc6a9_ui_\ud30c\uce20", "label": "B05_Profile_UI_Drainage_Parts \u2014 \ubc30\uc218\uc720\uc5ed \uacf5\uc6a9 UI \ud30c\uce20", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_UI_Drainage_Parts \u2014 \ubc30\uc218\uc720\uc5ed \uacf5\uc6a9 UI \ud30c\uce20", "community": 69, "community_name": "B05_Profile_UI_Drainage_Parts \u2014 \ubc30\uc218\uc720\uc5ed \uacf5\uc6a9 UI \ud30c\uce20", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Parts.md", "file_type": "document", "degree": 4}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 69, "community_name": "B05_Profile_UI_Drainage_Parts \u2014 \ubc30\uc218\uc720\uc5ed \uacf5\uc6a9 UI \ud30c\uce20", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Parts.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "community": 69, "community_name": "B05_Profile_UI_Drainage_Parts \u2014 \ubc30\uc218\uc720\uc5ed \uacf5\uc6a9 UI \ud30c\uce20", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Parts.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 69, "community_name": "B05_Profile_UI_Drainage_Parts \u2014 \ubc30\uc218\uc720\uc5ed \uacf5\uc6a9 UI \ud30c\uce20", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Parts.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_pipes", "label": "B05_Profile_UI_Drainage_Pipes.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_UI_Drainage_Pipes.md", "community": 105, "community_name": "B05_Profile_UI_Drainage_Pipes", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Pipes.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_pipes_b05_profile_ui_drainage_pipes", "label": "B05_Profile_UI_Drainage_Pipes", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_UI_Drainage_Pipes", "community": 105, "community_name": "B05_Profile_UI_Drainage_Pipes", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Pipes.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_pipes_\uac1c\uc694_\ubc0f_\ud2b9\uc9d5", "label": "\ud83d\udccb \uac1c\uc694 \ubc0f \ud2b9\uc9d5", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udccb \uac1c\uc694 \ubc0f \ud2b9\uc9d5", "community": 105, "community_name": "B05_Profile_UI_Drainage_Pipes", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Pipes.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_drainage_pipes_\uc8fc\uc694_\ud568\uc218_\uc2ec\ubcfc_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 / \uc2ec\ubcfc \ubaa9\ub85d", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 / \uc2ec\ubcfc \ubaa9\ub85d", "community": 105, "community_name": "B05_Profile_UI_Drainage_Pipes", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Drainage_Pipes.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_irregularstations", "label": "B05_Profile_UI_IrregularStations.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_UI_IrregularStations.md", "community": 138, "community_name": "B05_Profile_UI_IrregularStations.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_IrregularStations.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_irregularstations_b05_profile_ui_irregularstations_ts", "label": "B05_Profile_UI_IrregularStations.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_UI_IrregularStations.ts", "community": 138, "community_name": "B05_Profile_UI_IrregularStations.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_IrregularStations.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_frontend_b05_profile_ui_irregularstations_\uc8fc\uc694_\uc778\ud130\ud398\uc774\uc2a4_\ubc0f_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \uc778\ud130\ud398\uc774\uc2a4 \ubc0f \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \uc778\ud130\ud398\uc774\uc2a4 \ubc0f \ud568\uc218 \ubaa9\ub85d", "community": 138, "community_name": "B05_Profile_UI_IrregularStations.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_IrregularStations.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_irregularstations_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 138, "community_name": "B05_Profile_UI_IrregularStations.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_IrregularStations.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_page", "label": "B05_Profile_UI_Page.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_UI_Page.md", "community": 139, "community_name": "B05_Profile_UI_Page.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_page_b05_profile_ui_page_ts", "label": "B05_Profile_UI_Page.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_UI_Page.ts", "community": 139, "community_name": "B05_Profile_UI_Page.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Page.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_frontend_b05_profile_ui_page_\uc8fc\uc694_\ucef4\ud3ec\ub10c\ud2b8_\ubc0f_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ucef4\ud3ec\ub10c\ud2b8 \ubc0f \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ucef4\ud3ec\ub10c\ud2b8 \ubc0f \ud568\uc218 \ubaa9\ub85d", "community": 139, "community_name": "B05_Profile_UI_Page.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_page_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 139, "community_name": "B05_Profile_UI_Page.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_panel", "label": "B05_Profile_UI_Panel.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_UI_Panel.md", "community": 140, "community_name": "B05_Profile_UI_Panel.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_panel_b05_profile_ui_panel_ts", "label": "B05_Profile_UI_Panel.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_UI_Panel.ts", "community": 140, "community_name": "B05_Profile_UI_Panel.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Panel.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_frontend_b05_profile_ui_panel_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 140, "community_name": "B05_Profile_UI_Panel.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_panel_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 140, "community_name": "B05_Profile_UI_Panel.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_alignment", "label": "B05_Profile_UI_Profile_Alignment.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_UI_Profile_Alignment.md", "community": 141, "community_name": "B05_Profile_UI_Profile_Alignment.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Alignment.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_alignment_b05_profile_ui_profile_alignment_ts", "label": "B05_Profile_UI_Profile_Alignment.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_UI_Profile_Alignment.ts", "community": 141, "community_name": "B05_Profile_UI_Profile_Alignment.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Alignment.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_alignment_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 141, "community_name": "B05_Profile_UI_Profile_Alignment.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Alignment.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_alignment_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 141, "community_name": "B05_Profile_UI_Profile_Alignment.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Alignment.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_panel", "label": "B05_Profile_UI_Profile_Panel.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_UI_Profile_Panel.md", "community": 106, "community_name": "B05_Profile_UI_Profile_Panel.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_panel_b05_profile_ui_profile_panel_ts", "label": "B05_Profile_UI_Profile_Panel.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_UI_Profile_Panel.ts", "community": 106, "community_name": "B05_Profile_UI_Profile_Panel.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Panel.md", "file_type": "document", "degree": 4}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_panel_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\uac1c\uc120\uc0ac\ud56d_2026_08_06", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \uae30\ub2a5 \ubc0f \uac1c\uc120\uc0ac\ud56d (2026-08-06)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \uae30\ub2a5 \ubc0f \uac1c\uc120\uc0ac\ud56d (2026-08-06)", "community": 106, "community_name": "B05_Profile_UI_Profile_Panel.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_panel_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 106, "community_name": "B05_Profile_UI_Profile_Panel.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_panel_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 106, "community_name": "B05_Profile_UI_Profile_Panel.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_table", "label": "B05_Profile_UI_Profile_Table.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_UI_Profile_Table.md", "community": 142, "community_name": "B05_Profile_UI_Profile_Table.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Table.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_table_b05_profile_ui_profile_table_ts", "label": "B05_Profile_UI_Profile_Table.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_UI_Profile_Table.ts", "community": 142, "community_name": "B05_Profile_UI_Profile_Table.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Table.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_table_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 142, "community_name": "B05_Profile_UI_Profile_Table.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Table.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_profile_table_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 142, "community_name": "B05_Profile_UI_Profile_Table.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Profile_Table.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_viewer", "label": "B05_Profile_UI_Viewer.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_Profile_UI_Viewer.md", "community": 143, "community_name": "B05_Profile_UI_Viewer.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Viewer.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_viewer_b05_profile_ui_viewer_ts", "label": "B05_Profile_UI_Viewer.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_Profile_UI_Viewer.ts", "community": 143, "community_name": "B05_Profile_UI_Viewer.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Viewer.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_profile_frontend_b05_profile_ui_viewer_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 143, "community_name": "B05_Profile_UI_Viewer.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Viewer.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_b05_profile_ui_viewer_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 143, "community_name": "B05_Profile_UI_Viewer.md", "source_file": "pages/B05_Profile/frontend/B05_Profile_UI_Viewer.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_ui_drainage_render", "label": "_UI_Drainage_Render.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_UI_Drainage_Render.md", "community": 70, "community_name": "_UI_Drainage_Render \u2014 \ubc30\uc218\uc720\uc5ed\ub3c4 Canvas \ub80c\ub354\ub7ec", "source_file": "pages/B05_Profile/frontend/_UI_Drainage_Render.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_ui_drainage_render_ui_drainage_render_\ubc30\uc218\uc720\uc5ed\ub3c4_canvas_\ub80c\ub354\ub7ec", "label": "_UI_Drainage_Render \u2014 \ubc30\uc218\uc720\uc5ed\ub3c4 Canvas \ub80c\ub354\ub7ec", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "_UI_Drainage_Render \u2014 \ubc30\uc218\uc720\uc5ed\ub3c4 Canvas \ub80c\ub354\ub7ec", "community": 70, "community_name": "_UI_Drainage_Render \u2014 \ubc30\uc218\uc720\uc5ed\ub3c4 Canvas \ub80c\ub354\ub7ec", "source_file": "pages/B05_Profile/frontend/_UI_Drainage_Render.md", "file_type": "document", "degree": 4}, {"id": "pages_b05_profile_frontend_ui_drainage_render_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 70, "community_name": "_UI_Drainage_Render \u2014 \ubc30\uc218\uc720\uc5ed\ub3c4 Canvas \ub80c\ub354\ub7ec", "source_file": "pages/B05_Profile/frontend/_UI_Drainage_Render.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_ui_drainage_render_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "community": 70, "community_name": "_UI_Drainage_Render \u2014 \ubc30\uc218\uc720\uc5ed\ub3c4 Canvas \ub80c\ub354\ub7ec", "source_file": "pages/B05_Profile/frontend/_UI_Drainage_Render.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_ui_drainage_render_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 70, "community_name": "_UI_Drainage_Render \u2014 \ubc30\uc218\uc720\uc5ed\ub3c4 Canvas \ub80c\ub354\ub7ec", "source_file": "pages/B05_Profile/frontend/_UI_Drainage_Render.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_ui_profile_structures", "label": "_UI_Profile_Structures.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_UI_Profile_Structures.md", "community": 71, "community_name": "_UI_Profile_Structures \u2014 \uc885\ub2e8 \uad6c\uc870\ubb3c \ub80c\ub354\ub9c1 \ubc0f \uc778\ud130\ub799\uc158", "source_file": "pages/B05_Profile/frontend/_UI_Profile_Structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_ui_profile_structures_ui_profile_structures_\uc885\ub2e8_\uad6c\uc870\ubb3c_\ub80c\ub354\ub9c1_\ubc0f_\uc778\ud130\ub799\uc158", "label": "_UI_Profile_Structures \u2014 \uc885\ub2e8 \uad6c\uc870\ubb3c \ub80c\ub354\ub9c1 \ubc0f \uc778\ud130\ub799\uc158", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "_UI_Profile_Structures \u2014 \uc885\ub2e8 \uad6c\uc870\ubb3c \ub80c\ub354\ub9c1 \ubc0f \uc778\ud130\ub799\uc158", "community": 71, "community_name": "_UI_Profile_Structures \u2014 \uc885\ub2e8 \uad6c\uc870\ubb3c \ub80c\ub354\ub9c1 \ubc0f \uc778\ud130\ub799\uc158", "source_file": "pages/B05_Profile/frontend/_UI_Profile_Structures.md", "file_type": "document", "degree": 4}, {"id": "pages_b05_profile_frontend_ui_profile_structures_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 71, "community_name": "_UI_Profile_Structures \u2014 \uc885\ub2e8 \uad6c\uc870\ubb3c \ub80c\ub354\ub9c1 \ubc0f \uc778\ud130\ub799\uc158", "source_file": "pages/B05_Profile/frontend/_UI_Profile_Structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_ui_profile_structures_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "community": 71, "community_name": "_UI_Profile_Structures \u2014 \uc885\ub2e8 \uad6c\uc870\ubb3c \ub80c\ub354\ub9c1 \ubc0f \uc778\ud130\ub799\uc158", "source_file": "pages/B05_Profile/frontend/_UI_Profile_Structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_ui_profile_structures_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 71, "community_name": "_UI_Profile_Structures \u2014 \uc885\ub2e8 \uad6c\uc870\ubb3c \ub80c\ub354\ub9c1 \ubc0f \uc778\ud130\ub799\uc158", "source_file": "pages/B05_Profile/frontend/_UI_Profile_Structures.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_ui_selection", "label": "_UI_Selection.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "_UI_Selection.md", "community": 72, "community_name": "_UI_Selection \u2014 \ubc30\uc218/\uad6c\uc870\ubb3c 3\uc790 \uc120\ud0dd \ub3d9\uae30\ud654", "source_file": "pages/B05_Profile/frontend/_UI_Selection.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_ui_selection_ui_selection_\ubc30\uc218_\uad6c\uc870\ubb3c_3\uc790_\uc120\ud0dd_\ub3d9\uae30\ud654", "label": "_UI_Selection \u2014 \ubc30\uc218/\uad6c\uc870\ubb3c 3\uc790 \uc120\ud0dd \ub3d9\uae30\ud654", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "_UI_Selection \u2014 \ubc30\uc218/\uad6c\uc870\ubb3c 3\uc790 \uc120\ud0dd \ub3d9\uae30\ud654", "community": 72, "community_name": "_UI_Selection \u2014 \ubc30\uc218/\uad6c\uc870\ubb3c 3\uc790 \uc120\ud0dd \ub3d9\uae30\ud654", "source_file": "pages/B05_Profile/frontend/_UI_Selection.md", "file_type": "document", "degree": 4}, {"id": "pages_b05_profile_frontend_ui_selection_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 72, "community_name": "_UI_Selection \u2014 \ubc30\uc218/\uad6c\uc870\ubb3c 3\uc790 \uc120\ud0dd \ub3d9\uae30\ud654", "source_file": "pages/B05_Profile/frontend/_UI_Selection.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_ui_selection_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "community": 72, "community_name": "_UI_Selection \u2014 \ubc30\uc218/\uad6c\uc870\ubb3c 3\uc790 \uc120\ud0dd \ub3d9\uae30\ud654", "source_file": "pages/B05_Profile/frontend/_UI_Selection.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_profile_frontend_ui_selection_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 72, "community_name": "_UI_Selection \u2014 \ubc30\uc218/\uad6c\uc870\ubb3c 3\uc790 \uc120\ud0dd \ub3d9\uae30\ud654", "source_file": "pages/B05_Profile/frontend/_UI_Selection.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_api", "label": "B06_api.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_api.md", "community": 152, "community_name": "B06_api.md", "source_file": "pages/B06_Section/B06_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_api_b06_section_api", "label": "B06_Section \u2014 API", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section \u2014 API", "community": 152, "community_name": "B06_api.md", "source_file": "pages/B06_Section/B06_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_backend", "label": "B06_backend.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_backend.md", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "pages/B06_Section/B06_backend.md", "file_type": "document", "degree": 2}, {"id": "pages_b06_section_b06_backend_b06_section_backend", "label": "B06_Section \u2014 Backend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section \u2014 Backend", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "pages/B06_Section/B06_backend.md", "file_type": "document", "degree": 5}, {"id": "pages_b06_section_b06_backend_\uc694\uccad_\uc751\ub2f5_\ubaa8\ub378", "label": "\uc694\uccad\u00b7\uc751\ub2f5 \ubaa8\ub378", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad\u00b7\uc751\ub2f5 \ubaa8\ub378", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "pages/B06_Section/B06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_backend_\uacc4\uc0b0_\uc5d4\uc9c4", "label": "\uacc4\uc0b0 \uc5d4\uc9c4", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacc4\uc0b0 \uc5d4\uc9c4", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "pages/B06_Section/B06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_backend_\ub77c\uc6b0\ud130_workflow_\uc870\ud68c_\ud655\uc815_\ud0c0_\ud504\ub85c\uc81d\ud2b8_\ubd88\ub7ec\uc624\uae30_\ubc0f_\uc7ac\uc0dd\uc131", "label": "\ub77c\uc6b0\ud130\u00b7workflow (\uc870\ud68c, \ud655\uc815, \ud0c0 \ud504\ub85c\uc81d\ud2b8 \ubd88\ub7ec\uc624\uae30 \ubc0f \uc7ac\uc0dd\uc131)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub77c\uc6b0\ud130\u00b7workflow (\uc870\ud68c, \ud655\uc815, \ud0c0 \ud504\ub85c\uc81d\ud2b8 \ubd88\ub7ec\uc624\uae30 \ubc0f \uc7ac\uc0dd\uc131)", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "pages/B06_Section/B06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_backend_\ub370\uc774\ud130_\uc601\uad6c_\uc800\uc7a5_\ubc0f_\ud658\uacbd\uc124\uc815", "label": "\ub370\uc774\ud130 \uc601\uad6c \uc800\uc7a5 \ubc0f \ud658\uacbd\uc124\uc815", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub370\uc774\ud130 \uc601\uad6c \uc800\uc7a5 \ubc0f \ud658\uacbd\uc124\uc815", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "pages/B06_Section/B06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_cross_design_ui_2026_09", "label": "B06_cross_design_ui_2026_09.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_cross_design_ui_2026_09.md", "community": 168, "community_name": "B06 \ud6a1\ub2e8 \uad00 \ud615\uc0c1\u00b7\uc720\ud1a0\uace1\uc120 \ud6c4\uc18d", "source_file": "pages/B06_Section/B06_cross_design_ui_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_cross_design_ui_2026_09_b06_\ud6a1\ub2e8_\uacc4\uc0b0_\ubbf8\ub7ec_\uce74\ub4dc_\ud45c\uae30", "label": "B06 \ud6a1\ub2e8 \uacc4\uc0b0 \ubbf8\ub7ec\u00b7\uce74\ub4dc \ud45c\uae30", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B06 \ud6a1\ub2e8 \uacc4\uc0b0 \ubbf8\ub7ec\u00b7\uce74\ub4dc \ud45c\uae30", "community": 168, "community_name": "B06 \ud6a1\ub2e8 \uad00 \ud615\uc0c1\u00b7\uc720\ud1a0\uace1\uc120 \ud6c4\uc18d", "source_file": "pages/B06_Section/B06_cross_design_ui_2026_09.md", "file_type": "document", "degree": 3}, {"id": "pages_b06_section_b06_cross_design_ui_2026_09_\ud504\ub860\ud2b8_\uacc4\uc0b0_\ubbf8\ub7ec", "label": "\ud504\ub860\ud2b8 \uacc4\uc0b0 \ubbf8\ub7ec", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud504\ub860\ud2b8 \uacc4\uc0b0 \ubbf8\ub7ec", "community": 168, "community_name": "B06 \ud6a1\ub2e8 \uad00 \ud615\uc0c1\u00b7\uc720\ud1a0\uace1\uc120 \ud6c4\uc18d", "source_file": "pages/B06_Section/B06_cross_design_ui_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_cross_design_ui_2026_09_\ud6a1\ub2e8_\uce74\ub4dc_\ud45c\uae30", "label": "\ud6a1\ub2e8 \uce74\ub4dc \ud45c\uae30", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud6a1\ub2e8 \uce74\ub4dc \ud45c\uae30", "community": 168, "community_name": "B06 \ud6a1\ub2e8 \uad00 \ud615\uc0c1\u00b7\uc720\ud1a0\uace1\uc120 \ud6c4\uc18d", "source_file": "pages/B06_Section/B06_cross_design_ui_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_basin_multitier", "label": "B06_culvert_basin_multitier.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_culvert_basin_multitier.md", "community": 39, "community_name": "B06 \uc9d1\uc218\uc815\u00b7\ub2e4\ub2e8 \uae30\uc2ad\ub9c9\uc774", "source_file": "pages/B06_Section/B06_culvert_basin_multitier.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_basin_multitier_b06_\uc9d1\uc218\uc815_\ub2e4\ub2e8_\uae30\uc2ad\ub9c9\uc774", "label": "B06 \uc9d1\uc218\uc815\u00b7\ub2e4\ub2e8 \uae30\uc2ad\ub9c9\uc774", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06 \uc9d1\uc218\uc815\u00b7\ub2e4\ub2e8 \uae30\uc2ad\ub9c9\uc774", "community": 39, "community_name": "B06 \uc9d1\uc218\uc815\u00b7\ub2e4\ub2e8 \uae30\uc2ad\ub9c9\uc774", "source_file": "pages/B06_Section/B06_culvert_basin_multitier.md", "file_type": "document", "degree": 6}, {"id": "pages_b06_section_b06_culvert_basin_multitier_\uc720\uc785_\uad6c\uc870\ubb3c", "label": "\uc720\uc785 \uad6c\uc870\ubb3c", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc720\uc785 \uad6c\uc870\ubb3c", "community": 39, "community_name": "B06 \uc9d1\uc218\uc815\u00b7\ub2e4\ub2e8 \uae30\uc2ad\ub9c9\uc774", "source_file": "pages/B06_Section/B06_culvert_basin_multitier.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_basin_multitier_\uc9d1\uc218\uc815_\uacc4\ub958\uce21_\uc131\ud1a0\ubd80", "label": "\uc9d1\uc218\uc815 \uacc4\ub958\uce21 \uc131\ud1a0\ubd80", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc9d1\uc218\uc815 \uacc4\ub958\uce21 \uc131\ud1a0\ubd80", "community": 39, "community_name": "B06 \uc9d1\uc218\uc815\u00b7\ub2e4\ub2e8 \uae30\uc2ad\ub9c9\uc774", "source_file": "pages/B06_Section/B06_culvert_basin_multitier.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_basin_multitier_\uc720\ucd9c_\uc131\ud1a0\ubd80_\ub2e4\ub2e8", "label": "\uc720\ucd9c \uc131\ud1a0\ubd80\u00b7\ub2e4\ub2e8", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc720\ucd9c \uc131\ud1a0\ubd80\u00b7\ub2e4\ub2e8", "community": 39, "community_name": "B06 \uc9d1\uc218\uc815\u00b7\ub2e4\ub2e8 \uae30\uc2ad\ub9c9\uc774", "source_file": "pages/B06_Section/B06_culvert_basin_multitier.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_basin_multitier_\uc790\uccb4\uac80\uc99d_\uae30\ub85d", "label": "\uc790\uccb4\uac80\uc99d \uae30\ub85d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc790\uccb4\uac80\uc99d \uae30\ub85d", "community": 39, "community_name": "B06 \uc9d1\uc218\uc815\u00b7\ub2e4\ub2e8 \uae30\uc2ad\ub9c9\uc774", "source_file": "pages/B06_Section/B06_culvert_basin_multitier.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_basin_multitier_\ubbf8\uacb0", "label": "\ubbf8\uacb0", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubbf8\uacb0", "community": 39, "community_name": "B06 \uc9d1\uc218\uc815\u00b7\ub2e4\ub2e8 \uae30\uc2ad\ub9c9\uc774", "source_file": "pages/B06_Section/B06_culvert_basin_multitier.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_controls", "label": "B06_culvert_controls.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_culvert_controls.md", "community": 28, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uc870\uc791\u00b7\ud45c\uc2dc", "source_file": "pages/B06_Section/B06_culvert_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_controls_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uc870\uc791_\ud45c\uc2dc", "label": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uc870\uc791\u00b7\ud45c\uc2dc", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 27.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uc870\uc791\u00b7\ud45c\uc2dc", "community": 28, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uc870\uc791\u00b7\ud45c\uc2dc", "source_file": "pages/B06_Section/B06_culvert_controls.md", "file_type": "document", "degree": 7}, {"id": "pages_b06_section_b06_culvert_controls_4\ucd95_\uc870\uc791\uacfc_\uc7ac\uc9c8", "label": "4\ucd95 \uc870\uc791\uacfc \uc7ac\uc9c8", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "4\ucd95 \uc870\uc791\uacfc \uc7ac\uc9c8", "community": 28, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uc870\uc791\u00b7\ud45c\uc2dc", "source_file": "pages/B06_Section/B06_culvert_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_controls_\uc870\uc815\ucc3d", "label": "\uc870\uc815\ucc3d", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc870\uc815\ucc3d", "community": 28, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uc870\uc791\u00b7\ud45c\uc2dc", "source_file": "pages/B06_Section/B06_culvert_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_controls_\uc9d1\uc218\uc815_9\ud0a4_\uc870\uc791", "label": "\uc9d1\uc218\uc815 9\ud0a4 \uc870\uc791", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc9d1\uc218\uc815 9\ud0a4 \uc870\uc791", "community": 28, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uc870\uc791\u00b7\ud45c\uc2dc", "source_file": "pages/B06_Section/B06_culvert_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_controls_\uacc4\uc0b0_\ubcf4\uae30_\ubd84\ub9ac", "label": "\uacc4\uc0b0\u00b7\ubcf4\uae30 \ubd84\ub9ac", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacc4\uc0b0\u00b7\ubcf4\uae30 \ubd84\ub9ac", "community": 28, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uc870\uc791\u00b7\ud45c\uc2dc", "source_file": "pages/B06_Section/B06_culvert_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_controls_\uc790\uccb4\uac80\uc99d_\uae30\ub85d", "label": "\uc790\uccb4\uac80\uc99d \uae30\ub85d", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc790\uccb4\uac80\uc99d \uae30\ub85d", "community": 28, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uc870\uc791\u00b7\ud45c\uc2dc", "source_file": "pages/B06_Section/B06_culvert_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_controls_\uad6c\ud604_\ud30c\uc77c", "label": "\uad6c\ud604 \ud30c\uc77c", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604 \ud30c\uc77c", "community": 28, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uc870\uc791\u00b7\ud45c\uc2dc", "source_file": "pages/B06_Section/B06_culvert_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_geometry_redesign", "label": "B06_culvert_geometry_redesign.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_culvert_geometry_redesign.md", "community": 40, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uae30\ud558\u00b7\uc870\uc791 \uccb4\uacc4", "source_file": "pages/B06_Section/B06_culvert_geometry_redesign.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_geometry_redesign_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uae30\ud558_\uc870\uc791_\uccb4\uacc4", "label": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uae30\ud558\u00b7\uc870\uc791 \uccb4\uacc4", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uae30\ud558\u00b7\uc870\uc791 \uccb4\uacc4", "community": 40, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uae30\ud558\u00b7\uc870\uc791 \uccb4\uacc4", "source_file": "pages/B06_Section/B06_culvert_geometry_redesign.md", "file_type": "document", "degree": 6}, {"id": "pages_b06_section_b06_culvert_geometry_redesign_\uae30\uc2ad\ub9c9\uc774_\uad00_\ud575\uc2ec_\uaddc\uce59", "label": "\uae30\uc2ad\ub9c9\uc774\u00b7\uad00 \ud575\uc2ec \uaddc\uce59", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\uc2ad\ub9c9\uc774\u00b7\uad00 \ud575\uc2ec \uaddc\uce59", "community": 40, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uae30\ud558\u00b7\uc870\uc791 \uccb4\uacc4", "source_file": "pages/B06_Section/B06_culvert_geometry_redesign.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_geometry_redesign_\uc811\uc18d\uc120", "label": "\uc811\uc18d\uc120", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc811\uc18d\uc120", "community": 40, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uae30\ud558\u00b7\uc870\uc791 \uccb4\uacc4", "source_file": "pages/B06_Section/B06_culvert_geometry_redesign.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_geometry_redesign_\uc124\uacc4\uc120_\ud2b8\ub9bc", "label": "\uc124\uacc4\uc120 \ud2b8\ub9bc", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc124\uacc4\uc120 \ud2b8\ub9bc", "community": 40, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uae30\ud558\u00b7\uc870\uc791 \uccb4\uacc4", "source_file": "pages/B06_Section/B06_culvert_geometry_redesign.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_geometry_redesign_\uad6c\ud604_\ud30c\uc77c", "label": "\uad6c\ud604 \ud30c\uc77c", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604 \ud30c\uc77c", "community": 40, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uae30\ud558\u00b7\uc870\uc791 \uccb4\uacc4", "source_file": "pages/B06_Section/B06_culvert_geometry_redesign.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_geometry_redesign_\uac80\uc99d_\uc0c1\ud0dc", "label": "\uac80\uc99d \uc0c1\ud0dc", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d \uc0c1\ud0dc", "community": 40, "community_name": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uae30\ud558\u00b7\uc870\uc791 \uccb4\uacc4", "source_file": "pages/B06_Section/B06_culvert_geometry_redesign.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_link_trim", "label": "B06_culvert_link_trim.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_culvert_link_trim.md", "community": 73, "community_name": "B06 \uc778\uc811 \uce21\uc810 \uad6c\uc870\ubb3c \ud2b8\ub9bc \uc815\ub9ac", "source_file": "pages/B06_Section/B06_culvert_link_trim.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_link_trim_b06_\uc778\uc811_\uce21\uc810_\uad6c\uc870\ubb3c_\ud2b8\ub9bc_\uc815\ub9ac", "label": "B06 \uc778\uc811 \uce21\uc810 \uad6c\uc870\ubb3c \ud2b8\ub9bc \uc815\ub9ac", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06 \uc778\uc811 \uce21\uc810 \uad6c\uc870\ubb3c \ud2b8\ub9bc \uc815\ub9ac", "community": 73, "community_name": "B06 \uc778\uc811 \uce21\uc810 \uad6c\uc870\ubb3c \ud2b8\ub9bc \uc815\ub9ac", "source_file": "pages/B06_Section/B06_culvert_link_trim.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_b06_culvert_link_trim_\ucc98\ub9ac_\ud56d\ubaa9", "label": "\ucc98\ub9ac \ud56d\ubaa9", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc98\ub9ac \ud56d\ubaa9", "community": 73, "community_name": "B06 \uc778\uc811 \uce21\uc810 \uad6c\uc870\ubb3c \ud2b8\ub9bc \uc815\ub9ac", "source_file": "pages/B06_Section/B06_culvert_link_trim.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_link_trim_\uc6d0\uc778\uacfc_\uacbd\uacc4", "label": "\uc6d0\uc778\uacfc \uacbd\uacc4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6d0\uc778\uacfc \uacbd\uacc4", "community": 73, "community_name": "B06 \uc778\uc811 \uce21\uc810 \uad6c\uc870\ubb3c \ud2b8\ub9bc \uc815\ub9ac", "source_file": "pages/B06_Section/B06_culvert_link_trim.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_link_trim_\uac80\uc99d", "label": "\uac80\uc99d", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d", "community": 73, "community_name": "B06 \uc778\uc811 \uce21\uc810 \uad6c\uc870\ubb3c \ud2b8\ub9bc \uc815\ub9ac", "source_file": "pages/B06_Section/B06_culvert_link_trim.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_set", "label": "B06_culvert_set.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_culvert_set.md", "community": 41, "community_name": "B06 \ubc30\uc218\uad00 \ud6a1\ub2e8\ub3c4 \uc138\ud2b8", "source_file": "pages/B06_Section/B06_culvert_set.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_set_b06_\ubc30\uc218\uad00_\ud6a1\ub2e8\ub3c4_\uc138\ud2b8", "label": "B06 \ubc30\uc218\uad00 \ud6a1\ub2e8\ub3c4 \uc138\ud2b8", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06 \ubc30\uc218\uad00 \ud6a1\ub2e8\ub3c4 \uc138\ud2b8", "community": 41, "community_name": "B06 \ubc30\uc218\uad00 \ud6a1\ub2e8\ub3c4 \uc138\ud2b8", "source_file": "pages/B06_Section/B06_culvert_set.md", "file_type": "document", "degree": 6}, {"id": "pages_b06_section_b06_culvert_set_\uc785\ub825_\ud310\uc815", "label": "\uc785\ub825\u00b7\ud310\uc815", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc785\ub825\u00b7\ud310\uc815", "community": 41, "community_name": "B06 \ubc30\uc218\uad00 \ud6a1\ub2e8\ub3c4 \uc138\ud2b8", "source_file": "pages/B06_Section/B06_culvert_set.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_set_\ud615\uc0c1_\ud45c\uc2dc_\uc21c\uc11c_2026_08_20_\uc2a4\ub0c5\uc0f7", "label": "\ud615\uc0c1\u00b7\ud45c\uc2dc \uc21c\uc11c (2026-08-20 \uc2a4\ub0c5\uc0f7)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud615\uc0c1\u00b7\ud45c\uc2dc \uc21c\uc11c (2026-08-20 \uc2a4\ub0c5\uc0f7)", "community": 41, "community_name": "B06 \ubc30\uc218\uad00 \ud6a1\ub2e8\ub3c4 \uc138\ud2b8", "source_file": "pages/B06_Section/B06_culvert_set.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_set_\uad6c\ud604_\ud56d\ubaa9", "label": "\uad6c\ud604 \ud56d\ubaa9", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604 \ud56d\ubaa9", "community": 41, "community_name": "B06 \ubc30\uc218\uad00 \ud6a1\ub2e8\ub3c4 \uc138\ud2b8", "source_file": "pages/B06_Section/B06_culvert_set.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_set_\uacc4\ud68d\uc120_\uaddc\uce59", "label": "\uacc4\ud68d\uc120 \uaddc\uce59", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacc4\ud68d\uc120 \uaddc\uce59", "community": 41, "community_name": "B06 \ubc30\uc218\uad00 \ud6a1\ub2e8\ub3c4 \uc138\ud2b8", "source_file": "pages/B06_Section/B06_culvert_set.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_culvert_set_\uac80\uc99d_\uadfc\uac70\uc640_\ud6c4\uc18d", "label": "\uac80\uc99d \uadfc\uac70\uc640 \ud6c4\uc18d", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d \uadfc\uac70\uc640 \ud6c4\uc18d", "community": 41, "community_name": "B06 \ubc30\uc218\uad00 \ud6a1\ub2e8\ub3c4 \uc138\ud2b8", "source_file": "pages/B06_Section/B06_culvert_set.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_db", "label": "B06_db.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_db.md", "community": 107, "community_name": "B06_Section \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B06_Section/B06_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_db_b06_section_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "B06_Section \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "community": 107, "community_name": "B06_Section \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B06_Section/B06_db.md", "file_type": "document", "degree": 3}, {"id": "pages_b06_section_b06_db_repository_\ud568\uc218", "label": "Repository \ud568\uc218", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Repository \ud568\uc218", "community": 107, "community_name": "B06_Section \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B06_Section/B06_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_db_\ud30c\uc77c_\uacbd\ub85c", "label": "\ud30c\uc77c \uacbd\ub85c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uacbd\ub85c", "community": 107, "community_name": "B06_Section \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B06_Section/B06_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_dependencies", "label": "B06_dependencies.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_dependencies.md", "community": 144, "community_name": "B06_Section \u2014 Dependencies", "source_file": "pages/B06_Section/B06_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_dependencies_b06_section_dependencies", "label": "B06_Section \u2014 Dependencies", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section \u2014 Dependencies", "community": 144, "community_name": "B06_Section \u2014 Dependencies", "source_file": "pages/B06_Section/B06_dependencies.md", "file_type": "document", "degree": 2}, {"id": "pages_b06_section_b06_dependencies_\uacf5\ud1b5_\ubaa8\ub4c8", "label": "\uacf5\ud1b5 \ubaa8\ub4c8", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \ubaa8\ub4c8", "community": 144, "community_name": "B06_Section \u2014 Dependencies", "source_file": "pages/B06_Section/B06_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_frontend", "label": "B06_frontend.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_frontend.md", "community": 23, "community_name": "B06_Section \u2014 Frontend", "source_file": "pages/B06_Section/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_frontend_b06_section_frontend", "label": "B06_Section \u2014 Frontend", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 32.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section \u2014 Frontend", "community": 23, "community_name": "B06_Section \u2014 Frontend", "source_file": "pages/B06_Section/B06_frontend.md", "file_type": "document", "degree": 9}, {"id": "pages_b06_section_b06_frontend_\ud30c\uc77c_\uad6c\uc131", "label": "\ud30c\uc77c \uad6c\uc131", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc131", "community": 23, "community_name": "B06_Section \u2014 Frontend", "source_file": "pages/B06_Section/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_frontend_\ud654\uba74_workflow_\uc870\ud68c_\ubc0f_\ud655\uc815_\uc804\uc6a9", "label": "\ud654\uba74\u00b7workflow (\uc870\ud68c \ubc0f \ud655\uc815 \uc804\uc6a9)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud654\uba74\u00b7workflow (\uc870\ud68c \ubc0f \ud655\uc815 \uc804\uc6a9)", "community": 23, "community_name": "B06_Section \u2014 Frontend", "source_file": "pages/B06_Section/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_frontend_svg_\ub80c\ub354\ub7ec_\ubc0f_\uc720\ud2f8\ub9ac\ud2f0", "label": "SVG \ub80c\ub354\ub7ec \ubc0f \uc720\ud2f8\ub9ac\ud2f0", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SVG \ub80c\ub354\ub7ec \ubc0f \uc720\ud2f8\ub9ac\ud2f0", "community": 23, "community_name": "B06_Section \u2014 Frontend", "source_file": "pages/B06_Section/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "label": "API \ud074\ub77c\uc774\uc5b8\ud2b8", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "API \ud074\ub77c\uc774\uc5b8\ud2b8", "community": 23, "community_name": "B06_Section \u2014 Frontend", "source_file": "pages/B06_Section/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_frontend_\uc785\ub825_\uc635\uc158_\ud45c\uc2dc_\uc635\uc158_\ubc0f_\ud6a1\ub2e8_\ubc18\ud3ed_\uc81c\uc5b4", "label": "\uc785\ub825 \uc635\uc158 (\ud45c\uc2dc \uc635\uc158 \ubc0f \ud6a1\ub2e8 \ubc18\ud3ed \uc81c\uc5b4)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc785\ub825 \uc635\uc158 (\ud45c\uc2dc \uc635\uc158 \ubc0f \ud6a1\ub2e8 \ubc18\ud3ed \uc81c\uc5b4)", "community": 23, "community_name": "B06_Section \u2014 Frontend", "source_file": "pages/B06_Section/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_frontend_ui_\ud328\ub110_\ud06c\uae30_\ubc0f_\ub9ac\uc0ac\uc774\uc800_\uaddc\uce59_2026_08_02_\uc2e0\uc124", "label": "UI \ud328\ub110 \ud06c\uae30 \ubc0f \ub9ac\uc0ac\uc774\uc800 \uaddc\uce59 (2026-08-02 \uc2e0\uc124)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UI \ud328\ub110 \ud06c\uae30 \ubc0f \ub9ac\uc0ac\uc774\uc800 \uaddc\uce59 (2026-08-02 \uc2e0\uc124)", "community": 23, "community_name": "B06_Section \u2014 Frontend", "source_file": "pages/B06_Section/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_frontend_\uae30\uc220\ubd80\ucc44_\ud574\uacb0\ub428", "label": "\uae30\uc220\ubd80\ucc44 (\ud574\uacb0\ub428)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\uc220\ubd80\ucc44 (\ud574\uacb0\ub428)", "community": 23, "community_name": "B06_Section \u2014 Frontend", "source_file": "pages/B06_Section/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_frontend_2026_08_22_\ud30c\uc77c_\ud55c\uacc4_\uc815\ub9ac", "label": "2026-08-22 \ud30c\uc77c \ud55c\uacc4 \uc815\ub9ac", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2026-08-22 \ud30c\uc77c \ud55c\uacc4 \uc815\ub9ac", "community": 23, "community_name": "B06_Section \u2014 Frontend", "source_file": "pages/B06_Section/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_masshaul_culvert_2026_09", "label": "B06_masshaul_culvert_2026_09.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_masshaul_culvert_2026_09.md", "community": 159, "community_name": "B03 \ud30c\uc77c \uc785\ub825 \ud654\uba74 \uc815\ub9ac", "source_file": "pages/B06_Section/B06_masshaul_culvert_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_masshaul_culvert_2026_09_b06_\ud6a1\ub2e8_\uad00_\ud615\uc0c1_\uc720\ud1a0\uace1\uc120_\ud6c4\uc18d", "label": "B06 \ud6a1\ub2e8 \uad00 \ud615\uc0c1\u00b7\uc720\ud1a0\uace1\uc120 \ud6c4\uc18d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06 \ud6a1\ub2e8 \uad00 \ud615\uc0c1\u00b7\uc720\ud1a0\uace1\uc120 \ud6c4\uc18d", "community": 159, "community_name": "B03 \ud30c\uc77c \uc785\ub825 \ud654\uba74 \uc815\ub9ac", "source_file": "pages/B06_Section/B06_masshaul_culvert_2026_09.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_b06_masshaul_culvert_2026_09_i\ud615_\uc9d1\uc218\uc815_\uad00_\ud615\uc0c1", "label": "I\ud615 \uc9d1\uc218\uc815 \uad00 \ud615\uc0c1", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "I\ud615 \uc9d1\uc218\uc815 \uad00 \ud615\uc0c1", "community": 159, "community_name": "B03 \ud30c\uc77c \uc785\ub825 \ud654\uba74 \uc815\ub9ac", "source_file": "pages/B06_Section/B06_masshaul_culvert_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_masshaul_culvert_2026_09_\uacc4\uc0b0_\uc0c1\ud0dc\uc640_\uacbd\uace0", "label": "\uacc4\uc0b0 \uc0c1\ud0dc\uc640 \uacbd\uace0", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacc4\uc0b0 \uc0c1\ud0dc\uc640 \uacbd\uace0", "community": 159, "community_name": "B03 \ud30c\uc77c \uc785\ub825 \ud654\uba74 \uc815\ub9ac", "source_file": "pages/B06_Section/B06_masshaul_culvert_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_masshaul_culvert_2026_09_\ud30c\uc77c_\ucc45\uc784_\ubd84\ub9ac", "label": "\ud30c\uc77c \ucc45\uc784 \ubd84\ub9ac", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \ucc45\uc784 \ubd84\ub9ac", "community": 159, "community_name": "B03 \ud30c\uc77c \uc785\ub825 \ud654\uba74 \uc815\ub9ac", "source_file": "pages/B06_Section/B06_masshaul_culvert_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_pavement_revetment", "label": "B06_pavement_revetment.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_pavement_revetment.md", "community": 74, "community_name": "B06 \ubb3c\ub118\uc774\ud3ec\uc7a5\u00b7\ucf58\ud06c\ub9ac\ud2b8 \ud3ec\uc7a5\u00b7\ub3c5\ub9bd \uae30\uc2ad\ub9c9\uc774", "source_file": "pages/B06_Section/B06_pavement_revetment.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_pavement_revetment_b06_\ubb3c\ub118\uc774\ud3ec\uc7a5_\ucf58\ud06c\ub9ac\ud2b8_\ud3ec\uc7a5_\ub3c5\ub9bd_\uae30\uc2ad\ub9c9\uc774", "label": "B06 \ubb3c\ub118\uc774\ud3ec\uc7a5\u00b7\ucf58\ud06c\ub9ac\ud2b8 \ud3ec\uc7a5\u00b7\ub3c5\ub9bd \uae30\uc2ad\ub9c9\uc774", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06 \ubb3c\ub118\uc774\ud3ec\uc7a5\u00b7\ucf58\ud06c\ub9ac\ud2b8 \ud3ec\uc7a5\u00b7\ub3c5\ub9bd \uae30\uc2ad\ub9c9\uc774", "community": 74, "community_name": "B06 \ubb3c\ub118\uc774\ud3ec\uc7a5\u00b7\ucf58\ud06c\ub9ac\ud2b8 \ud3ec\uc7a5\u00b7\ub3c5\ub9bd \uae30\uc2ad\ub9c9\uc774", "source_file": "pages/B06_Section/B06_pavement_revetment.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_b06_pavement_revetment_\ud3ec\uc7a5\uacfc_\ubb3c\ub118\uc774", "label": "\ud3ec\uc7a5\uacfc \ubb3c\ub118\uc774", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud3ec\uc7a5\uacfc \ubb3c\ub118\uc774", "community": 74, "community_name": "B06 \ubb3c\ub118\uc774\ud3ec\uc7a5\u00b7\ucf58\ud06c\ub9ac\ud2b8 \ud3ec\uc7a5\u00b7\ub3c5\ub9bd \uae30\uc2ad\ub9c9\uc774", "source_file": "pages/B06_Section/B06_pavement_revetment.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_pavement_revetment_\ub3c5\ub9bd_\uae30\uc2ad\ub9c9\uc774", "label": "\ub3c5\ub9bd \uae30\uc2ad\ub9c9\uc774", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub3c5\ub9bd \uae30\uc2ad\ub9c9\uc774", "community": 74, "community_name": "B06 \ubb3c\ub118\uc774\ud3ec\uc7a5\u00b7\ucf58\ud06c\ub9ac\ud2b8 \ud3ec\uc7a5\u00b7\ub3c5\ub9bd \uae30\uc2ad\ub9c9\uc774", "source_file": "pages/B06_Section/B06_pavement_revetment.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_pavement_revetment_\uac80\uc99d", "label": "\uac80\uc99d", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d", "community": 74, "community_name": "B06 \ubb3c\ub118\uc774\ud3ec\uc7a5\u00b7\ucf58\ud06c\ub9ac\ud2b8 \ud3ec\uc7a5\u00b7\ub3c5\ub9bd \uae30\uc2ad\ub9c9\uc774", "source_file": "pages/B06_Section/B06_pavement_revetment.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_revetment_link_controls", "label": "B06_revetment_link_controls.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_revetment_link_controls.md", "community": 29, "community_name": "B06 \uae30\uc2ad\ub9c9\uc774 \uc5f0\ub3d9\u00b7\uacbd\uc0ac\u00b7\ub2e8\ubcc4 \uc81c\uc5b4", "source_file": "pages/B06_Section/B06_revetment_link_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_revetment_link_controls_b06_\uae30\uc2ad\ub9c9\uc774_\uc5f0\ub3d9_\uacbd\uc0ac_\ub2e8\ubcc4_\uc81c\uc5b4", "label": "B06 \uae30\uc2ad\ub9c9\uc774 \uc5f0\ub3d9\u00b7\uacbd\uc0ac\u00b7\ub2e8\ubcc4 \uc81c\uc5b4", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 27.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B06 \uae30\uc2ad\ub9c9\uc774 \uc5f0\ub3d9\u00b7\uacbd\uc0ac\u00b7\ub2e8\ubcc4 \uc81c\uc5b4", "community": 29, "community_name": "B06 \uae30\uc2ad\ub9c9\uc774 \uc5f0\ub3d9\u00b7\uacbd\uc0ac\u00b7\ub2e8\ubcc4 \uc81c\uc5b4", "source_file": "pages/B06_Section/B06_revetment_link_controls.md", "file_type": "document", "degree": 7}, {"id": "pages_b06_section_b06_revetment_link_controls_\uc815\ubcf8\uacfc_\uacf5\uc6a9_\ubaa8\ub378", "label": "\uc815\ubcf8\uacfc \uacf5\uc6a9 \ubaa8\ub378", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc815\ubcf8\uacfc \uacf5\uc6a9 \ubaa8\ub378", "community": 29, "community_name": "B06 \uae30\uc2ad\ub9c9\uc774 \uc5f0\ub3d9\u00b7\uacbd\uc0ac\u00b7\ub2e8\ubcc4 \uc81c\uc5b4", "source_file": "pages/B06_Section/B06_revetment_link_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_revetment_link_controls_\ud615\ud0dc\uc640_\uc870\uc815\ucc3d", "label": "\ud615\ud0dc\uc640 \uc870\uc815\ucc3d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud615\ud0dc\uc640 \uc870\uc815\ucc3d", "community": 29, "community_name": "B06 \uae30\uc2ad\ub9c9\uc774 \uc5f0\ub3d9\u00b7\uacbd\uc0ac\u00b7\ub2e8\ubcc4 \uc81c\uc5b4", "source_file": "pages/B06_Section/B06_revetment_link_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_revetment_link_controls_\ub2e8\ubcc4_\uad6c\uac04\uac12", "label": "\ub2e8\ubcc4 \uad6c\uac04\uac12", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub2e8\ubcc4 \uad6c\uac04\uac12", "community": 29, "community_name": "B06 \uae30\uc2ad\ub9c9\uc774 \uc5f0\ub3d9\u00b7\uacbd\uc0ac\u00b7\ub2e8\ubcc4 \uc81c\uc5b4", "source_file": "pages/B06_Section/B06_revetment_link_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_revetment_link_controls_\uc5f0\ub3d9\uacfc_\uacbd\uc0ac", "label": "\uc5f0\ub3d9\uacfc \uacbd\uc0ac", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc5f0\ub3d9\uacfc \uacbd\uc0ac", "community": 29, "community_name": "B06 \uae30\uc2ad\ub9c9\uc774 \uc5f0\ub3d9\u00b7\uacbd\uc0ac\u00b7\ub2e8\ubcc4 \uc81c\uc5b4", "source_file": "pages/B06_Section/B06_revetment_link_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_revetment_link_controls_\uc120\ud0dd\uacfc_\ud558\uc774\ub77c\uc774\ud2b8", "label": "\uc120\ud0dd\uacfc \ud558\uc774\ub77c\uc774\ud2b8", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc120\ud0dd\uacfc \ud558\uc774\ub77c\uc774\ud2b8", "community": 29, "community_name": "B06 \uae30\uc2ad\ub9c9\uc774 \uc5f0\ub3d9\u00b7\uacbd\uc0ac\u00b7\ub2e8\ubcc4 \uc81c\uc5b4", "source_file": "pages/B06_Section/B06_revetment_link_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_b06_revetment_link_controls_\uac80\uc99d", "label": "\uac80\uc99d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d", "community": 29, "community_name": "B06 \uae30\uc2ad\ub9c9\uc774 \uc5f0\ub3d9\u00b7\uacbd\uc0ac\u00b7\ub2e8\ubcc4 \uc81c\uc5b4", "source_file": "pages/B06_Section/B06_revetment_link_controls.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_backend_b06_section_engine_areas", "label": "B06_Section_Engine_Areas.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_Engine_Areas.md", "community": 75, "community_name": "B06_Section_Engine_Areas \u2014 \ud6a1\ub2e8 \uba74\uc801 \uc801\ubd84 \uc5f0\uc0b0 \uc5d4\uc9c4", "source_file": "pages/B06_Section/backend/B06_Section_Engine_Areas.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_backend_b06_section_engine_areas_b06_section_engine_areas_\ud6a1\ub2e8_\uba74\uc801_\uc801\ubd84_\uc5f0\uc0b0_\uc5d4\uc9c4", "label": "B06_Section_Engine_Areas \u2014 \ud6a1\ub2e8 \uba74\uc801 \uc801\ubd84 \uc5f0\uc0b0 \uc5d4\uc9c4", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_Engine_Areas \u2014 \ud6a1\ub2e8 \uba74\uc801 \uc801\ubd84 \uc5f0\uc0b0 \uc5d4\uc9c4", "community": 75, "community_name": "B06_Section_Engine_Areas \u2014 \ud6a1\ub2e8 \uba74\uc801 \uc801\ubd84 \uc5f0\uc0b0 \uc5d4\uc9c4", "source_file": "pages/B06_Section/backend/B06_Section_Engine_Areas.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_backend_b06_section_engine_areas_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 75, "community_name": "B06_Section_Engine_Areas \u2014 \ud6a1\ub2e8 \uba74\uc801 \uc801\ubd84 \uc5f0\uc0b0 \uc5d4\uc9c4", "source_file": "pages/B06_Section/backend/B06_Section_Engine_Areas.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_backend_b06_section_engine_areas_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "community": 75, "community_name": "B06_Section_Engine_Areas \u2014 \ud6a1\ub2e8 \uba74\uc801 \uc801\ubd84 \uc5f0\uc0b0 \uc5d4\uc9c4", "source_file": "pages/B06_Section/backend/B06_Section_Engine_Areas.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_backend_b06_section_engine_areas_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 75, "community_name": "B06_Section_Engine_Areas \u2014 \ud6a1\ub2e8 \uba74\uc801 \uc801\ubd84 \uc5f0\uc0b0 \uc5d4\uc9c4", "source_file": "pages/B06_Section/backend/B06_Section_Engine_Areas.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_backend_b06_section_router", "label": "B06_Section_Router.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_Router.md", "community": 145, "community_name": "B06_Section_Router.md", "source_file": "pages/B06_Section/backend/B06_Section_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_backend_b06_section_router_b06_section_router_py", "label": "B06_Section_Router.py", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_Router.py", "community": 145, "community_name": "B06_Section_Router.md", "source_file": "pages/B06_Section/backend/B06_Section_Router.md", "file_type": "document", "degree": 3}, {"id": "pages_b06_section_backend_b06_section_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \ub77c\uc6b0\ud130 API \ubc0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 145, "community_name": "B06_Section_Router.md", "source_file": "pages/B06_Section/backend/B06_Section_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_backend_b06_section_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd17 \uc5f0\uad00 \uac1c\ub150 \ubc0f \uc758\uc874\uc131", "community": 145, "community_name": "B06_Section_Router.md", "source_file": "pages/B06_Section/backend/B06_Section_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_backend_b06_section_router_confirm", "label": "B06_Section_Router_Confirm.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_Router_Confirm.md", "community": 76, "community_name": "B06_Section_Router_Confirm \u2014 \uc784\uc2dc \uc800\uc7a5 \ubc0f \ud655\uc815 \ub77c\uc6b0\ud130", "source_file": "pages/B06_Section/backend/B06_Section_Router_Confirm.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_backend_b06_section_router_confirm_b06_section_router_confirm_\uc784\uc2dc_\uc800\uc7a5_\ubc0f_\ud655\uc815_\ub77c\uc6b0\ud130", "label": "B06_Section_Router_Confirm \u2014 \uc784\uc2dc \uc800\uc7a5 \ubc0f \ud655\uc815 \ub77c\uc6b0\ud130", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_Router_Confirm \u2014 \uc784\uc2dc \uc800\uc7a5 \ubc0f \ud655\uc815 \ub77c\uc6b0\ud130", "community": 76, "community_name": "B06_Section_Router_Confirm \u2014 \uc784\uc2dc \uc800\uc7a5 \ubc0f \ud655\uc815 \ub77c\uc6b0\ud130", "source_file": "pages/B06_Section/backend/B06_Section_Router_Confirm.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_backend_b06_section_router_confirm_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 76, "community_name": "B06_Section_Router_Confirm \u2014 \uc784\uc2dc \uc800\uc7a5 \ubc0f \ud655\uc815 \ub77c\uc6b0\ud130", "source_file": "pages/B06_Section/backend/B06_Section_Router_Confirm.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_backend_b06_section_router_confirm_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 76, "community_name": "B06_Section_Router_Confirm \u2014 \uc784\uc2dc \uc800\uc7a5 \ubc0f \ud655\uc815 \ub77c\uc6b0\ud130", "source_file": "pages/B06_Section/backend/B06_Section_Router_Confirm.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_backend_b06_section_router_confirm_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 76, "community_name": "B06_Section_Router_Confirm \u2014 \uc784\uc2dc \uc800\uc7a5 \ubc0f \ud655\uc815 \ub77c\uc6b0\ud130", "source_file": "pages/B06_Section/backend/B06_Section_Router_Confirm.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_api_fetch", "label": "B06_Section_Api_Fetch.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_Api_Fetch.md", "community": 108, "community_name": "B06_Section_Api_Fetch \u2014 B06 \ud504\ub860\ud2b8\uc5d4\ub4dc API \ud074\ub77c\uc774\uc5b8\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_Api_Fetch.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_api_fetch_b06_section_api_fetch_b06_\ud504\ub860\ud2b8\uc5d4\ub4dc_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "label": "B06_Section_Api_Fetch \u2014 B06 \ud504\ub860\ud2b8\uc5d4\ub4dc API \ud074\ub77c\uc774\uc5b8\ud2b8", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_Api_Fetch \u2014 B06 \ud504\ub860\ud2b8\uc5d4\ub4dc API \ud074\ub77c\uc774\uc5b8\ud2b8", "community": 108, "community_name": "B06_Section_Api_Fetch \u2014 B06 \ud504\ub860\ud2b8\uc5d4\ub4dc API \ud074\ub77c\uc774\uc5b8\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_Api_Fetch.md", "file_type": "document", "degree": 3}, {"id": "pages_b06_section_frontend_b06_section_api_fetch_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 108, "community_name": "B06_Section_Api_Fetch \u2014 B06 \ud504\ub860\ud2b8\uc5d4\ub4dc API \ud074\ub77c\uc774\uc5b8\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_Api_Fetch.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_api_fetch_2_\uc8fc\uc694_\uc5f0\ub3d9_api_\ud568\uc218", "label": "2. \uc8fc\uc694 \uc5f0\ub3d9 API \ud568\uc218", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uc5f0\ub3d9 API \ud568\uc218", "community": 108, "community_name": "B06_Section_Api_Fetch \u2014 B06 \ud504\ub860\ud2b8\uc5d4\ub4dc API \ud074\ub77c\uc774\uc5b8\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_Api_Fetch.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_cross_areas", "label": "B06_Section_UI_Cross_Areas.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_Cross_Areas.md", "community": 77, "community_name": "B06_Section_UI_Cross_Areas \u2014 \ud6a1\ub2e8 \ub2e8\uba74\uc801 \ud45c\uae30 \ubc0f \ubc34\ub4dc \ud558\uc774\ub77c\uc774\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Cross_Areas.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_cross_areas_b06_section_ui_cross_areas_\ud6a1\ub2e8_\ub2e8\uba74\uc801_\ud45c\uae30_\ubc0f_\ubc34\ub4dc_\ud558\uc774\ub77c\uc774\ud2b8", "label": "B06_Section_UI_Cross_Areas \u2014 \ud6a1\ub2e8 \ub2e8\uba74\uc801 \ud45c\uae30 \ubc0f \ubc34\ub4dc \ud558\uc774\ub77c\uc774\ud2b8", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_Cross_Areas \u2014 \ud6a1\ub2e8 \ub2e8\uba74\uc801 \ud45c\uae30 \ubc0f \ubc34\ub4dc \ud558\uc774\ub77c\uc774\ud2b8", "community": 77, "community_name": "B06_Section_UI_Cross_Areas \u2014 \ud6a1\ub2e8 \ub2e8\uba74\uc801 \ud45c\uae30 \ubc0f \ubc34\ub4dc \ud558\uc774\ub77c\uc774\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Cross_Areas.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_frontend_b06_section_ui_cross_areas_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 77, "community_name": "B06_Section_UI_Cross_Areas \u2014 \ud6a1\ub2e8 \ub2e8\uba74\uc801 \ud45c\uae30 \ubc0f \ubc34\ub4dc \ud558\uc774\ub77c\uc774\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Cross_Areas.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_cross_areas_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "community": 77, "community_name": "B06_Section_UI_Cross_Areas \u2014 \ud6a1\ub2e8 \ub2e8\uba74\uc801 \ud45c\uae30 \ubc0f \ubc34\ub4dc \ud558\uc774\ub77c\uc774\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Cross_Areas.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_cross_areas_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 77, "community_name": "B06_Section_UI_Cross_Areas \u2014 \ud6a1\ub2e8 \ub2e8\uba74\uc801 \ud45c\uae30 \ubc0f \ubc34\ub4dc \ud558\uc774\ub77c\uc774\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Cross_Areas.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_cross_design", "label": "B06_Section_UI_Cross_Design.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_Cross_Design.md", "community": 78, "community_name": "B06_Section_UI_Cross_Design \u2014 \ud6a1\ub2e8 \uce21\uc810\ubcc4 \uc138\ubd80 \uc124\uacc4 \ucee8\ud2b8\ub864", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Cross_Design.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_cross_design_b06_section_ui_cross_design_\ud6a1\ub2e8_\uce21\uc810\ubcc4_\uc138\ubd80_\uc124\uacc4_\ucee8\ud2b8\ub864", "label": "B06_Section_UI_Cross_Design \u2014 \ud6a1\ub2e8 \uce21\uc810\ubcc4 \uc138\ubd80 \uc124\uacc4 \ucee8\ud2b8\ub864", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_Cross_Design \u2014 \ud6a1\ub2e8 \uce21\uc810\ubcc4 \uc138\ubd80 \uc124\uacc4 \ucee8\ud2b8\ub864", "community": 78, "community_name": "B06_Section_UI_Cross_Design \u2014 \ud6a1\ub2e8 \uce21\uc810\ubcc4 \uc138\ubd80 \uc124\uacc4 \ucee8\ud2b8\ub864", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Cross_Design.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_frontend_b06_section_ui_cross_design_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 78, "community_name": "B06_Section_UI_Cross_Design \u2014 \ud6a1\ub2e8 \uce21\uc810\ubcc4 \uc138\ubd80 \uc124\uacc4 \ucee8\ud2b8\ub864", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Cross_Design.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_cross_design_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "community": 78, "community_name": "B06_Section_UI_Cross_Design \u2014 \ud6a1\ub2e8 \uce21\uc810\ubcc4 \uc138\ubd80 \uc124\uacc4 \ucee8\ud2b8\ub864", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Cross_Design.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_cross_design_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 78, "community_name": "B06_Section_UI_Cross_Design \u2014 \ud6a1\ub2e8 \uce21\uc810\ubcc4 \uc138\ubd80 \uc124\uacc4 \ucee8\ud2b8\ub864", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Cross_Design.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul", "label": "B06_Section_UI_MassHaul.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul.md", "community": 79, "community_name": "B06_Section_UI_MassHaul \u2014 \uc720\ud1a0\uace1\uc120 \uc801\ubd84 \uacc4\uc0b0 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_b06_section_ui_masshaul_\uc720\ud1a0\uace1\uc120_\uc801\ubd84_\uacc4\uc0b0_\uc5d4\uc9c4", "label": "B06_Section_UI_MassHaul \u2014 \uc720\ud1a0\uace1\uc120 \uc801\ubd84 \uacc4\uc0b0 \uc5d4\uc9c4", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul \u2014 \uc720\ud1a0\uace1\uc120 \uc801\ubd84 \uacc4\uc0b0 \uc5d4\uc9c4", "community": 79, "community_name": "B06_Section_UI_MassHaul \u2014 \uc720\ud1a0\uace1\uc120 \uc801\ubd84 \uacc4\uc0b0 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 79, "community_name": "B06_Section_UI_MassHaul \u2014 \uc720\ud1a0\uace1\uc120 \uc801\ubd84 \uacc4\uc0b0 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "community": 79, "community_name": "B06_Section_UI_MassHaul \u2014 \uc720\ud1a0\uace1\uc120 \uc801\ubd84 \uacc4\uc0b0 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 79, "community_name": "B06_Section_UI_MassHaul \u2014 \uc720\ud1a0\uace1\uc120 \uc801\ubd84 \uacc4\uc0b0 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balance", "label": "B06_Section_UI_MassHaul_Balance.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul_Balance.md", "community": 80, "community_name": "B06_Section_UI_MassHaul_Balance \u2014 \ud3c9\ud615\uc120 \ubc0f \uc7a5\ube44 \ub760 \ubd84\ud560 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balance.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_b06_section_ui_masshaul_balance_\ud3c9\ud615\uc120_\ubc0f_\uc7a5\ube44_\ub760_\ubd84\ud560_\uc5d4\uc9c4", "label": "B06_Section_UI_MassHaul_Balance \u2014 \ud3c9\ud615\uc120 \ubc0f \uc7a5\ube44 \ub760 \ubd84\ud560 \uc5d4\uc9c4", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul_Balance \u2014 \ud3c9\ud615\uc120 \ubc0f \uc7a5\ube44 \ub760 \ubd84\ud560 \uc5d4\uc9c4", "community": 80, "community_name": "B06_Section_UI_MassHaul_Balance \u2014 \ud3c9\ud615\uc120 \ubc0f \uc7a5\ube44 \ub760 \ubd84\ud560 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balance.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 80, "community_name": "B06_Section_UI_MassHaul_Balance \u2014 \ud3c9\ud615\uc120 \ubc0f \uc7a5\ube44 \ub760 \ubd84\ud560 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balance.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\uc54c\uace0\ub9ac\uc998", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \uc54c\uace0\ub9ac\uc998", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \uc54c\uace0\ub9ac\uc998", "community": 80, "community_name": "B06_Section_UI_MassHaul_Balance \u2014 \ud3c9\ud615\uc120 \ubc0f \uc7a5\ube44 \ub760 \ubd84\ud560 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balance.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 80, "community_name": "B06_Section_UI_MassHaul_Balance \u2014 \ud3c9\ud615\uc120 \ubc0f \uc7a5\ube44 \ub760 \ubd84\ud560 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balance.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view", "label": "B06_Section_UI_MassHaul_Balance_View.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul_Balance_View.md", "community": 81, "community_name": "B06_Section_UI_MassHaul_Balance_View \u2014 \uc6b4\ubc18 \ub760 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balance_View.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view_b06_section_ui_masshaul_balance_view_\uc6b4\ubc18_\ub760_\uc2dc\uac01\ud654_\ub80c\ub354\ub7ec", "label": "B06_Section_UI_MassHaul_Balance_View \u2014 \uc6b4\ubc18 \ub760 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul_Balance_View \u2014 \uc6b4\ubc18 \ub760 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "community": 81, "community_name": "B06_Section_UI_MassHaul_Balance_View \u2014 \uc6b4\ubc18 \ub760 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balance_View.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 81, "community_name": "B06_Section_UI_MassHaul_Balance_View \u2014 \uc6b4\ubc18 \ub760 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balance_View.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ub80c\ub354\ub9c1", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ub80c\ub354\ub9c1", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ub80c\ub354\ub9c1", "community": 81, "community_name": "B06_Section_UI_MassHaul_Balance_View \u2014 \uc6b4\ubc18 \ub760 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balance_View.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 81, "community_name": "B06_Section_UI_MassHaul_Balance_View \u2014 \uc6b4\ubc18 \ub760 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balance_View.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon", "label": "B06_Section_UI_MassHaul_Balloon.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul_Balloon.md", "community": 82, "community_name": "B06_Section_UI_MassHaul_Balloon \u2014 \ubb3c\ub7c9 \ub9d0\ud48d\uc120 \ubc30\uce58 \ubc0f \uc870\uc791", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balloon.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon_b06_section_ui_masshaul_balloon_\ubb3c\ub7c9_\ub9d0\ud48d\uc120_\ubc30\uce58_\ubc0f_\uc870\uc791", "label": "B06_Section_UI_MassHaul_Balloon \u2014 \ubb3c\ub7c9 \ub9d0\ud48d\uc120 \ubc30\uce58 \ubc0f \uc870\uc791", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul_Balloon \u2014 \ubb3c\ub7c9 \ub9d0\ud48d\uc120 \ubc30\uce58 \ubc0f \uc870\uc791", "community": 82, "community_name": "B06_Section_UI_MassHaul_Balloon \u2014 \ubb3c\ub7c9 \ub9d0\ud48d\uc120 \ubc30\uce58 \ubc0f \uc870\uc791", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balloon.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 82, "community_name": "B06_Section_UI_MassHaul_Balloon \u2014 \ubb3c\ub7c9 \ub9d0\ud48d\uc120 \ubc30\uce58 \ubc0f \uc870\uc791", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balloon.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\uc54c\uace0\ub9ac\uc998", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \uc54c\uace0\ub9ac\uc998", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \uc54c\uace0\ub9ac\uc998", "community": 82, "community_name": "B06_Section_UI_MassHaul_Balloon \u2014 \ubb3c\ub7c9 \ub9d0\ud48d\uc120 \ubc30\uce58 \ubc0f \uc870\uc791", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balloon.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 82, "community_name": "B06_Section_UI_MassHaul_Balloon \u2014 \ubb3c\ub7c9 \ub9d0\ud48d\uc120 \ubc30\uce58 \ubc0f \uc870\uc791", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Balloon.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_curve", "label": "B06_Section_UI_MassHaul_Curve.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul_Curve.md", "community": 83, "community_name": "B06_Section_UI_MassHaul_Curve \u2014 \uc720\ud1a0\uace1\uc120 \uada4\uc801 \ubcf4\uac04 \ubc0f \ub80c\ub354\ub9c1", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Curve.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_curve_b06_section_ui_masshaul_curve_\uc720\ud1a0\uace1\uc120_\uada4\uc801_\ubcf4\uac04_\ubc0f_\ub80c\ub354\ub9c1", "label": "B06_Section_UI_MassHaul_Curve \u2014 \uc720\ud1a0\uace1\uc120 \uada4\uc801 \ubcf4\uac04 \ubc0f \ub80c\ub354\ub9c1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul_Curve \u2014 \uc720\ud1a0\uace1\uc120 \uada4\uc801 \ubcf4\uac04 \ubc0f \ub80c\ub354\ub9c1", "community": 83, "community_name": "B06_Section_UI_MassHaul_Curve \u2014 \uc720\ud1a0\uace1\uc120 \uada4\uc801 \ubcf4\uac04 \ubc0f \ub80c\ub354\ub9c1", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Curve.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_curve_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 83, "community_name": "B06_Section_UI_MassHaul_Curve \u2014 \uc720\ud1a0\uace1\uc120 \uada4\uc801 \ubcf4\uac04 \ubc0f \ub80c\ub354\ub9c1", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Curve.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_curve_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\uae30\ud558_\uc218\ud559", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \uae30\ud558 \uc218\ud559", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \uae30\ud558 \uc218\ud559", "community": 83, "community_name": "B06_Section_UI_MassHaul_Curve \u2014 \uc720\ud1a0\uace1\uc120 \uada4\uc801 \ubcf4\uac04 \ubc0f \ub80c\ub354\ub9c1", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Curve.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_curve_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 83, "community_name": "B06_Section_UI_MassHaul_Curve \u2014 \uc720\ud1a0\uace1\uc120 \uada4\uc801 \ubcf4\uac04 \ubc0f \ub80c\ub354\ub9c1", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Curve.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_settle", "label": "B06_Section_UI_MassHaul_Settle.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul_Settle.md", "community": 84, "community_name": "B06_Section_UI_MassHaul_Settle \u2014 \ud1a0\ub7c9 \uc815\uc0b0 \ubc0f \uc7a5\uac70\ub9ac \uc0c1\uc1c4 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Settle.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_settle_b06_section_ui_masshaul_settle_\ud1a0\ub7c9_\uc815\uc0b0_\ubc0f_\uc7a5\uac70\ub9ac_\uc0c1\uc1c4_\uc5d4\uc9c4", "label": "B06_Section_UI_MassHaul_Settle \u2014 \ud1a0\ub7c9 \uc815\uc0b0 \ubc0f \uc7a5\uac70\ub9ac \uc0c1\uc1c4 \uc5d4\uc9c4", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul_Settle \u2014 \ud1a0\ub7c9 \uc815\uc0b0 \ubc0f \uc7a5\uac70\ub9ac \uc0c1\uc1c4 \uc5d4\uc9c4", "community": 84, "community_name": "B06_Section_UI_MassHaul_Settle \u2014 \ud1a0\ub7c9 \uc815\uc0b0 \ubc0f \uc7a5\uac70\ub9ac \uc0c1\uc1c4 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Settle.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_settle_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 84, "community_name": "B06_Section_UI_MassHaul_Settle \u2014 \ud1a0\ub7c9 \uc815\uc0b0 \ubc0f \uc7a5\uac70\ub9ac \uc0c1\uc1c4 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Settle.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_settle_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ub85c\uc9c1", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ub85c\uc9c1", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ub85c\uc9c1", "community": 84, "community_name": "B06_Section_UI_MassHaul_Settle \u2014 \ud1a0\ub7c9 \uc815\uc0b0 \ubc0f \uc7a5\uac70\ub9ac \uc0c1\uc1c4 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Settle.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_settle_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 84, "community_name": "B06_Section_UI_MassHaul_Settle \u2014 \ud1a0\ub7c9 \uc815\uc0b0 \ubc0f \uc7a5\uac70\ub9ac \uc0c1\uc1c4 \uc5d4\uc9c4", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_Settle.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_view", "label": "B06_Section_UI_MassHaul_View.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul_View.md", "community": 85, "community_name": "B06_Section_UI_MassHaul_View \u2014 \uc720\ud1a0\uace1\uc120 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_View.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_view_b06_section_ui_masshaul_view_\uc720\ud1a0\uace1\uc120_\uc2dc\uac01\ud654_\ub80c\ub354\ub7ec", "label": "B06_Section_UI_MassHaul_View \u2014 \uc720\ud1a0\uace1\uc120 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_MassHaul_View \u2014 \uc720\ud1a0\uace1\uc120 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "community": 85, "community_name": "B06_Section_UI_MassHaul_View \u2014 \uc720\ud1a0\uace1\uc120 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_View.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_view_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 85, "community_name": "B06_Section_UI_MassHaul_View \u2014 \uc720\ud1a0\uace1\uc120 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_View.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_view_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "community": 85, "community_name": "B06_Section_UI_MassHaul_View \u2014 \uc720\ud1a0\uace1\uc120 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_View.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_masshaul_view_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 85, "community_name": "B06_Section_UI_MassHaul_View \u2014 \uc720\ud1a0\uace1\uc120 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "source_file": "pages/B06_Section/frontend/B06_Section_UI_MassHaul_View.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_page", "label": "B06_Section_UI_Page.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_Page.md", "community": 86, "community_name": "B06_Section_UI_Page \u2014 B06 \uba54\uc778 \ud398\uc774\uc9c0 \uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_page_b06_section_ui_page_b06_\uba54\uc778_\ud398\uc774\uc9c0_\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "label": "B06_Section_UI_Page \u2014 B06 \uba54\uc778 \ud398\uc774\uc9c0 \uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_Page \u2014 B06 \uba54\uc778 \ud398\uc774\uc9c0 \uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "community": 86, "community_name": "B06_Section_UI_Page \u2014 B06 \uba54\uc778 \ud398\uc774\uc9c0 \uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Page.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_frontend_b06_section_ui_page_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 86, "community_name": "B06_Section_UI_Page \u2014 B06 \uba54\uc778 \ud398\uc774\uc9c0 \uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_page_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "community": 86, "community_name": "B06_Section_UI_Page \u2014 B06 \uba54\uc778 \ud398\uc774\uc9c0 \uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_page_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 86, "community_name": "B06_Section_UI_Page \u2014 B06 \uba54\uc778 \ud398\uc774\uc9c0 \uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_section_view", "label": "B06_Section_UI_Section_View.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_Section_View.md", "community": 87, "community_name": "B06_Section_UI_Section_View \u2014 \uc885/\ud6a1\ub2e8 \ubc0f \uc720\ud1a0\uace1\uc120 \ubdf0 \uc870\ub9bd", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Section_View.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_section_view_b06_section_ui_section_view_\uc885_\ud6a1\ub2e8_\ubc0f_\uc720\ud1a0\uace1\uc120_\ubdf0_\uc870\ub9bd", "label": "B06_Section_UI_Section_View \u2014 \uc885/\ud6a1\ub2e8 \ubc0f \uc720\ud1a0\uace1\uc120 \ubdf0 \uc870\ub9bd", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_Section_View \u2014 \uc885/\ud6a1\ub2e8 \ubc0f \uc720\ud1a0\uace1\uc120 \ubdf0 \uc870\ub9bd", "community": 87, "community_name": "B06_Section_UI_Section_View \u2014 \uc885/\ud6a1\ub2e8 \ubc0f \uc720\ud1a0\uace1\uc120 \ubdf0 \uc870\ub9bd", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Section_View.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_section_frontend_b06_section_ui_section_view_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 87, "community_name": "B06_Section_UI_Section_View \u2014 \uc885/\ud6a1\ub2e8 \ubc0f \uc720\ud1a0\uace1\uc120 \ubdf0 \uc870\ub9bd", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Section_View.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_section_view_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5 \ubc0f \ud568\uc218", "community": 87, "community_name": "B06_Section_UI_Section_View \u2014 \uc885/\ud6a1\ub2e8 \ubc0f \uc720\ud1a0\uace1\uc120 \ubdf0 \uc870\ub9bd", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Section_View.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_section_view_3_\uc758\uc874\uc131", "label": "3. \uc758\uc874\uc131", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \uc758\uc874\uc131", "community": 87, "community_name": "B06_Section_UI_Section_View \u2014 \uc885/\ud6a1\ub2e8 \ubc0f \uc720\ud1a0\uace1\uc120 \ubdf0 \uc870\ub9bd", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Section_View.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_standard_diagram", "label": "B06_Section_UI_Standard_Diagram.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_Standard_Diagram.md", "community": 109, "community_name": "B06_Section_UI_Standard_Diagram \u2014 \ud45c\uc900\ub2e8\uba74 \ubaa8\uc2dd\ub3c4 \ucef4\ud3ec\ub10c\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Standard_Diagram.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_standard_diagram_b06_section_ui_standard_diagram_\ud45c\uc900\ub2e8\uba74_\ubaa8\uc2dd\ub3c4_\ucef4\ud3ec\ub10c\ud2b8", "label": "B06_Section_UI_Standard_Diagram \u2014 \ud45c\uc900\ub2e8\uba74 \ubaa8\uc2dd\ub3c4 \ucef4\ud3ec\ub10c\ud2b8", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_Standard_Diagram \u2014 \ud45c\uc900\ub2e8\uba74 \ubaa8\uc2dd\ub3c4 \ucef4\ud3ec\ub10c\ud2b8", "community": 109, "community_name": "B06_Section_UI_Standard_Diagram \u2014 \ud45c\uc900\ub2e8\uba74 \ubaa8\uc2dd\ub3c4 \ucef4\ud3ec\ub10c\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Standard_Diagram.md", "file_type": "document", "degree": 3}, {"id": "pages_b06_section_frontend_b06_section_ui_standard_diagram_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 109, "community_name": "B06_Section_UI_Standard_Diagram \u2014 \ud45c\uc900\ub2e8\uba74 \ubaa8\uc2dd\ub3c4 \ucef4\ud3ec\ub10c\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Standard_Diagram.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_standard_diagram_2_\uc8fc\uc694_\uae30\ub2a5", "label": "2. \uc8fc\uc694 \uae30\ub2a5", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5", "community": 109, "community_name": "B06_Section_UI_Standard_Diagram \u2014 \ud45c\uc900\ub2e8\uba74 \ubaa8\uc2dd\ub3c4 \ucef4\ud3ec\ub10c\ud2b8", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Standard_Diagram.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_standard_panel", "label": "B06_Section_UI_Standard_Panel.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_Section_UI_Standard_Panel.md", "community": 110, "community_name": "B06_Section_UI_Standard_Panel \u2014 \ud45c\uc900\ub2e8\uba74 \uc785\ub825 \ubc0f \uc81c\uc5b4 \ud328\ub110", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Standard_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_standard_panel_b06_section_ui_standard_panel_\ud45c\uc900\ub2e8\uba74_\uc785\ub825_\ubc0f_\uc81c\uc5b4_\ud328\ub110", "label": "B06_Section_UI_Standard_Panel \u2014 \ud45c\uc900\ub2e8\uba74 \uc785\ub825 \ubc0f \uc81c\uc5b4 \ud328\ub110", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_Section_UI_Standard_Panel \u2014 \ud45c\uc900\ub2e8\uba74 \uc785\ub825 \ubc0f \uc81c\uc5b4 \ud328\ub110", "community": 110, "community_name": "B06_Section_UI_Standard_Panel \u2014 \ud45c\uc900\ub2e8\uba74 \uc785\ub825 \ubc0f \uc81c\uc5b4 \ud328\ub110", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Standard_Panel.md", "file_type": "document", "degree": 3}, {"id": "pages_b06_section_frontend_b06_section_ui_standard_panel_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \uac1c\uc694 \ubc0f \uc5ed\ud560", "community": 110, "community_name": "B06_Section_UI_Standard_Panel \u2014 \ud45c\uc900\ub2e8\uba74 \uc785\ub825 \ubc0f \uc81c\uc5b4 \ud328\ub110", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Standard_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_section_frontend_b06_section_ui_standard_panel_2_\uc8fc\uc694_\uae30\ub2a5", "label": "2. \uc8fc\uc694 \uae30\ub2a5", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \uc8fc\uc694 \uae30\ub2a5", "community": 110, "community_name": "B06_Section_UI_Standard_Panel \u2014 \ud45c\uc900\ub2e8\uba74 \uc785\ub825 \ubc0f \uc81c\uc5b4 \ud328\ub110", "source_file": "pages/B06_Section/frontend/B06_Section_UI_Standard_Panel.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_designdetail_b07_frontend", "label": "B07_frontend.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B07_frontend.md", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "pages/B07_DesignDetail/B07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_designdetail_b07_frontend_b07_designdetail_\ud604\uc7ac_\ucc45\uc784", "label": "B07 DesignDetail \u2014 \ud604\uc7ac \ucc45\uc784", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B07 DesignDetail \u2014 \ud604\uc7ac \ucc45\uc784", "community": 33, "community_name": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "source_file": "pages/B07_DesignDetail/B07_frontend.md", "file_type": "document", "degree": 4}, {"id": "pages_b07_designdetail_b07_standard_drawings_2026_09", "label": "B07_standard_drawings_2026_09.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B07_standard_drawings_2026_09.md", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "pages/B07_DesignDetail/B07_standard_drawings_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_designdetail_b07_standard_drawings_2026_09_b07_\uad6c\uc870\ubb3c_\ud45c\uc900\ub3c4_\uc870\uc0ac_\ud569\uc758\uc640_\ud604\uc7ac_\ud1b5\ub85c", "label": "B07 \uad6c\uc870\ubb3c \ud45c\uc900\ub3c4 \u2014 \uc870\uc0ac\u00b7\ud569\uc758\uc640 \ud604\uc7ac \ud1b5\ub85c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 37.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B07 \uad6c\uc870\ubb3c \ud45c\uc900\ub3c4 \u2014 \uc870\uc0ac\u00b7\ud569\uc758\uc640 \ud604\uc7ac \ud1b5\ub85c", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "pages/B07_DesignDetail/B07_standard_drawings_2026_09.md", "file_type": "document", "degree": 11}, {"id": "pages_b07_designdetail_b07_standard_drawings_2026_09_\ub370\uc774\ud130_\ud750\ub984", "label": "\ub370\uc774\ud130 \ud750\ub984", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub370\uc774\ud130 \ud750\ub984", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "pages/B07_DesignDetail/B07_standard_drawings_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_designdetail_b07_standard_drawings_2026_09_\uad6c\ud604_\uc9c4\uc785\uc810", "label": "\uad6c\ud604 \uc9c4\uc785\uc810", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604 \uc9c4\uc785\uc810", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "pages/B07_DesignDetail/B07_standard_drawings_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_designdetail_b07_standard_drawings_2026_09_\uc870\uc0ac\ub85c_\ud655\uc778\ub41c_\uc124\uacc4_\uc6d0\uce59", "label": "\uc870\uc0ac\ub85c \ud655\uc778\ub41c \uc124\uacc4 \uc6d0\uce59", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc870\uc0ac\ub85c \ud655\uc778\ub41c \uc124\uacc4 \uc6d0\uce59", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "pages/B07_DesignDetail/B07_standard_drawings_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_designdetail_b07_standard_drawings_2026_09_\uadfc\uac70\uc640_\ub0a8\uc740_\ubd88\ud655\uc2e4\uc131", "label": "\uadfc\uac70\uc640 \ub0a8\uc740 \ubd88\ud655\uc2e4\uc131", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uadfc\uac70\uc640 \ub0a8\uc740 \ubd88\ud655\uc2e4\uc131", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "pages/B07_DesignDetail/B07_standard_drawings_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_designdetail_b07_standard_drawings_2026_09_9\uc6d4_9\uc77c_\uad6c\ud604_\uc2e4\uce21_\ubcf4\uac15", "label": "9\uc6d4 9\uc77c \uad6c\ud604\u00b7\uc2e4\uce21 \ubcf4\uac15", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "9\uc6d4 9\uc77c \uad6c\ud604\u00b7\uc2e4\uce21 \ubcf4\uac15", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "pages/B07_DesignDetail/B07_standard_drawings_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_quantity_b07_backend", "label": "B07_backend.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B07_backend.md", "community": 88, "community_name": "B07 Quantity \u2014 Backend", "source_file": "pages/B07_Quantity/B07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_quantity_b07_backend_b07_quantity_backend", "label": "B07 Quantity \u2014 Backend", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B07 Quantity \u2014 Backend", "community": 88, "community_name": "B07 Quantity \u2014 Backend", "source_file": "pages/B07_Quantity/B07_backend.md", "file_type": "document", "degree": 4}, {"id": "pages_b07_quantity_b07_backend_\uad6c\ud604\ub41c_\ud56d\ubaa9", "label": "\uad6c\ud604\ub41c \ud56d\ubaa9", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604\ub41c \ud56d\ubaa9", "community": 88, "community_name": "B07 Quantity \u2014 Backend", "source_file": "pages/B07_Quantity/B07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_quantity_b07_backend_\uad6c\ud604\ub418\uc9c0_\uc54a\uc740_\ud56d\ubaa9", "label": "\uad6c\ud604\ub418\uc9c0 \uc54a\uc740 \ud56d\ubaa9", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604\ub418\uc9c0 \uc54a\uc740 \ud56d\ubaa9", "community": 88, "community_name": "B07 Quantity \u2014 Backend", "source_file": "pages/B07_Quantity/B07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_quantity_b07_backend_\ucc45\uc784_\uacbd\uacc4_\ubbf8\uacb0", "label": "\ucc45\uc784 \uacbd\uacc4 \ubbf8\uacb0", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc45\uc784 \uacbd\uacc4 \ubbf8\uacb0", "community": 88, "community_name": "B07 Quantity \u2014 Backend", "source_file": "pages/B07_Quantity/B07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_quantity_b07_db", "label": "B07_db.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B07_db.md", "community": 153, "community_name": "B07_db.md", "source_file": "pages/B07_Quantity/B07_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_quantity_b07_db_b07_quantity_db", "label": "B07 Quantity \u2014 DB", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B07 Quantity \u2014 DB", "community": 153, "community_name": "B07_db.md", "source_file": "pages/B07_Quantity/B07_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_quantity_b07_frontend", "label": "B07_frontend.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B07_frontend.md", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "pages/B07_Quantity/B07_frontend.md", "file_type": "document", "degree": 2}, {"id": "pages_b07_quantity_b07_frontend_b07_quantity_frontend", "label": "B07 Quantity \u2014 Frontend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B07 Quantity \u2014 Frontend", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "pages/B07_Quantity/B07_frontend.md", "file_type": "document", "degree": 2}, {"id": "pages_b07_quantity_b07_frontend_\ud604\uc7ac_\uc0ac\uc6a9\uc790_\ub3d9\uc791", "label": "\ud604\uc7ac \uc0ac\uc6a9\uc790 \ub3d9\uc791", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud604\uc7ac \uc0ac\uc6a9\uc790 \ub3d9\uc791", "community": 57, "community_name": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "source_file": "pages/B07_Quantity/B07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_quantity_backend_b07_quantity_router", "label": "B07_Quantity_Router.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B07_Quantity_Router.md", "community": 191, "community_name": "B07_Quantity_Router.md", "source_file": "pages/B07_Quantity/backend/B07_Quantity_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_quantity_backend_b07_quantity_router_b07_quantity_router_py", "label": "B07_Quantity_Router.py", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B07_Quantity_Router.py", "community": 191, "community_name": "B07_Quantity_Router.md", "source_file": "pages/B07_Quantity/backend/B07_Quantity_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_blocks", "label": "B08_CAD_blocks.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_CAD_blocks.md", "community": 89, "community_name": "B08 CAD \ube14\ub85d \ub77c\uc774\ube0c\ub7ec\ub9ac\u00b7\uc0ac\uc9c4", "source_file": "pages/B08_DesignDetail/B08_CAD_blocks.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_blocks_b08_cad_\ube14\ub85d_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc0ac\uc9c4", "label": "B08 CAD \ube14\ub85d \ub77c\uc774\ube0c\ub7ec\ub9ac\u00b7\uc0ac\uc9c4", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B08 CAD \ube14\ub85d \ub77c\uc774\ube0c\ub7ec\ub9ac\u00b7\uc0ac\uc9c4", "community": 89, "community_name": "B08 CAD \ube14\ub85d \ub77c\uc774\ube0c\ub7ec\ub9ac\u00b7\uc0ac\uc9c4", "source_file": "pages/B08_DesignDetail/B08_CAD_blocks.md", "file_type": "document", "degree": 4}, {"id": "pages_b08_designdetail_b08_cad_blocks_\uad6c\ud604", "label": "\uad6c\ud604", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604", "community": 89, "community_name": "B08 CAD \ube14\ub85d \ub77c\uc774\ube0c\ub7ec\ub9ac\u00b7\uc0ac\uc9c4", "source_file": "pages/B08_DesignDetail/B08_CAD_blocks.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_blocks_\ubc94\uc704_\uacb0\uc815", "label": "\ubc94\uc704 \uacb0\uc815", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc94\uc704 \uacb0\uc815", "community": 89, "community_name": "B08 CAD \ube14\ub85d \ub77c\uc774\ube0c\ub7ec\ub9ac\u00b7\uc0ac\uc9c4", "source_file": "pages/B08_DesignDetail/B08_CAD_blocks.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_blocks_\uac80\uc99d", "label": "\uac80\uc99d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d", "community": 89, "community_name": "B08 CAD \ube14\ub85d \ub77c\uc774\ube0c\ub7ec\ub9ac\u00b7\uc0ac\uc9c4", "source_file": "pages/B08_DesignDetail/B08_CAD_blocks.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_commands", "label": "B08_CAD_commands.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_CAD_commands.md", "community": 90, "community_name": "B08 OpenWebCAD \uba85\ub839 \uccb4\uacc4", "source_file": "pages/B08_DesignDetail/B08_CAD_commands.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_commands_b08_openwebcad_\uba85\ub839_\uccb4\uacc4", "label": "B08 OpenWebCAD \uba85\ub839 \uccb4\uacc4", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B08 OpenWebCAD \uba85\ub839 \uccb4\uacc4", "community": 90, "community_name": "B08 OpenWebCAD \uba85\ub839 \uccb4\uacc4", "source_file": "pages/B08_DesignDetail/B08_CAD_commands.md", "file_type": "document", "degree": 4}, {"id": "pages_b08_designdetail_b08_cad_commands_\uad6c\ud604_\ubc94\uc704", "label": "\uad6c\ud604 \ubc94\uc704", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604 \ubc94\uc704", "community": 90, "community_name": "B08 OpenWebCAD \uba85\ub839 \uccb4\uacc4", "source_file": "pages/B08_DesignDetail/B08_CAD_commands.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_commands_\ud575\uc2ec_\uad6c\uc131", "label": "\ud575\uc2ec \uad6c\uc131", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud575\uc2ec \uad6c\uc131", "community": 90, "community_name": "B08 OpenWebCAD \uba85\ub839 \uccb4\uacc4", "source_file": "pages/B08_DesignDetail/B08_CAD_commands.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_commands_\uac80\uc99d_\uc81c\ud55c", "label": "\uac80\uc99d\u00b7\uc81c\ud55c", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d\u00b7\uc81c\ud55c", "community": 90, "community_name": "B08 OpenWebCAD \uba85\ub839 \uccb4\uacc4", "source_file": "pages/B08_DesignDetail/B08_CAD_commands.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_interaction", "label": "B08_CAD_interaction.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_CAD_interaction.md", "community": 160, "community_name": "B04 3D \ubc29\uc704\u00b7\uc88c\ud45c\uacc4 \ucd5c\uc2e0 \uacb0\uc815", "source_file": "pages/B08_DesignDetail/B08_CAD_interaction.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_interaction_b08_cad_\uae30\ubcf8_\uc870\uc791", "label": "B08 CAD \uae30\ubcf8 \uc870\uc791", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B08 CAD \uae30\ubcf8 \uc870\uc791", "community": 160, "community_name": "B04 3D \ubc29\uc704\u00b7\uc88c\ud45c\uacc4 \ucd5c\uc2e0 \uacb0\uc815", "source_file": "pages/B08_DesignDetail/B08_CAD_interaction.md", "file_type": "document", "degree": 4}, {"id": "pages_b08_designdetail_b08_cad_interaction_\uc785\ub825_\uc0c1\ud0dc", "label": "\uc785\ub825\u00b7\uc0c1\ud0dc", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc785\ub825\u00b7\uc0c1\ud0dc", "community": 160, "community_name": "B04 3D \ubc29\uc704\u00b7\uc88c\ud45c\uacc4 \ucd5c\uc2e0 \uacb0\uc815", "source_file": "pages/B08_DesignDetail/B08_CAD_interaction.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_interaction_\uc120\ud0dd_\ud3b8\uc9d1", "label": "\uc120\ud0dd\u00b7\ud3b8\uc9d1", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc120\ud0dd\u00b7\ud3b8\uc9d1", "community": 160, "community_name": "B04 3D \ubc29\uc704\u00b7\uc88c\ud45c\uacc4 \ucd5c\uc2e0 \uacb0\uc815", "source_file": "pages/B08_DesignDetail/B08_CAD_interaction.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_interaction_\uac80\uc99d_\uc81c\uc678", "label": "\uac80\uc99d\u00b7\uc81c\uc678", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d\u00b7\uc81c\uc678", "community": 160, "community_name": "B04 3D \ubc29\uc704\u00b7\uc88c\ud45c\uacc4 \ucd5c\uc2e0 \uacb0\uc815", "source_file": "pages/B08_DesignDetail/B08_CAD_interaction.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_table_entity", "label": "B08_CAD_table_entity.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_CAD_table_entity.md", "community": 91, "community_name": "B08_CAD_table_entity.md", "source_file": "pages/B08_DesignDetail/B08_CAD_table_entity.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_table_entity_b08_cad_tableentity", "label": "B08 CAD TableEntity", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B08 CAD TableEntity", "community": 91, "community_name": "B08_CAD_table_entity.md", "source_file": "pages/B08_DesignDetail/B08_CAD_table_entity.md", "file_type": "document", "degree": 5}, {"id": "pages_b08_designdetail_b08_cad_table_entity_\ubaa8\ub378", "label": "\ubaa8\ub378", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubaa8\ub378", "community": 91, "community_name": "B08_CAD_table_entity.md", "source_file": "pages/B08_DesignDetail/B08_CAD_table_entity.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_table_entity_\uae30\ub2a5", "label": "\uae30\ub2a5", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\ub2a5", "community": 91, "community_name": "B08_CAD_table_entity.md", "source_file": "pages/B08_DesignDetail/B08_CAD_table_entity.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_table_entity_\uc774\uad00_\ubc94\uc704", "label": "\uc774\uad00 \ubc94\uc704", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\uad00 \ubc94\uc704", "community": 91, "community_name": "B08_CAD_table_entity.md", "source_file": "pages/B08_DesignDetail/B08_CAD_table_entity.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_table_entity_\uac80\uc99d_\ud6c4\uc18d", "label": "\uac80\uc99d\u00b7\ud6c4\uc18d", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d\u00b7\ud6c4\uc18d", "community": 91, "community_name": "B08_CAD_table_entity.md", "source_file": "pages/B08_DesignDetail/B08_CAD_table_entity.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_title_block", "label": "B08_CAD_title_block.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_CAD_title_block.md", "community": 161, "community_name": "B04 \uc138\ubd80\uc720\uc5ed\u00b7\ubc29\uc704\u00b7\uc88c\ud45c\uacc4", "source_file": "pages/B08_DesignDetail/B08_CAD_title_block.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_title_block_b08_cad_\ub3c4\uac01_\ud45c\uc81c\ub780", "label": "B08 CAD \ub3c4\uac01\u00b7\ud45c\uc81c\ub780", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B08 CAD \ub3c4\uac01\u00b7\ud45c\uc81c\ub780", "community": 161, "community_name": "B04 \uc138\ubd80\uc720\uc5ed\u00b7\ubc29\uc704\u00b7\uc88c\ud45c\uacc4", "source_file": "pages/B08_DesignDetail/B08_CAD_title_block.md", "file_type": "document", "degree": 4}, {"id": "pages_b08_designdetail_b08_cad_title_block_\uac12_\uacf5\uae09", "label": "\uac12 \uacf5\uae09", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac12 \uacf5\uae09", "community": 161, "community_name": "B04 \uc138\ubd80\uc720\uc5ed\u00b7\ubc29\uc704\u00b7\uc88c\ud45c\uacc4", "source_file": "pages/B08_DesignDetail/B08_CAD_title_block.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_title_block_\ud68c\uc0ac_\uc790\uc0b0\uacfc_\ub2f4\ub2f9\uc790", "label": "\ud68c\uc0ac \uc790\uc0b0\uacfc \ub2f4\ub2f9\uc790", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud68c\uc0ac \uc790\uc0b0\uacfc \ub2f4\ub2f9\uc790", "community": 161, "community_name": "B04 \uc138\ubd80\uc720\uc5ed\u00b7\ubc29\uc704\u00b7\uc88c\ud45c\uacc4", "source_file": "pages/B08_DesignDetail/B08_CAD_title_block.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_title_block_\ub3c4\uac01_\ud3b8\uc9d1_\ubcf4\uc874", "label": "\ub3c4\uac01 \ud3b8\uc9d1\u00b7\ubcf4\uc874", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub3c4\uac01 \ud3b8\uc9d1\u00b7\ubcf4\uc874", "community": 161, "community_name": "B04 \uc138\ubd80\uc720\uc5ed\u00b7\ubc29\uc704\u00b7\uc88c\ud45c\uacc4", "source_file": "pages/B08_DesignDetail/B08_CAD_title_block.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_usability_2026_09_01", "label": "B08_CAD_usability_2026-09-01.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_CAD_usability_2026-09-01.md", "community": 162, "community_name": "B05 \uad6c\uc870\ubb3c \uad6c\uac04 \uc808\ucde8\u00b7\uce21\ubcbd\u00b7\uc131\ud1a0 \ud328\uce58", "source_file": "pages/B08_DesignDetail/B08_CAD_usability_2026-09-01.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_usability_2026_09_01_b08_cad_\uc0ac\uc6a9\uc790_\ud3b8\uc758\uc131_\uc815\ub9ac", "label": "B08 CAD \uc0ac\uc6a9\uc790 \ud3b8\uc758\uc131 \uc815\ub9ac", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B08 CAD \uc0ac\uc6a9\uc790 \ud3b8\uc758\uc131 \uc815\ub9ac", "community": 162, "community_name": "B05 \uad6c\uc870\ubb3c \uad6c\uac04 \uc808\ucde8\u00b7\uce21\ubcbd\u00b7\uc131\ud1a0 \ud328\uce58", "source_file": "pages/B08_DesignDetail/B08_CAD_usability_2026-09-01.md", "file_type": "document", "degree": 4}, {"id": "pages_b08_designdetail_b08_cad_usability_2026_09_01_\uad6c\ud604_\uae30\ub85d", "label": "\uad6c\ud604 \uae30\ub85d", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604 \uae30\ub85d", "community": 162, "community_name": "B05 \uad6c\uc870\ubb3c \uad6c\uac04 \uc808\ucde8\u00b7\uce21\ubcbd\u00b7\uc131\ud1a0 \ud328\uce58", "source_file": "pages/B08_DesignDetail/B08_CAD_usability_2026-09-01.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_usability_2026_09_01_\uc0ac\uc6a9\uc790_\ud750\ub984", "label": "\uc0ac\uc6a9\uc790 \ud750\ub984", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\uc790 \ud750\ub984", "community": 162, "community_name": "B05 \uad6c\uc870\ubb3c \uad6c\uac04 \uc808\ucde8\u00b7\uce21\ubcbd\u00b7\uc131\ud1a0 \ud328\uce58", "source_file": "pages/B08_DesignDetail/B08_CAD_usability_2026-09-01.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_usability_2026_09_01_\uac80\uc99d_\uc0c1\ud0dc", "label": "\uac80\uc99d \uc0c1\ud0dc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d \uc0c1\ud0dc", "community": 162, "community_name": "B05 \uad6c\uc870\ubb3c \uad6c\uac04 \uc808\ucde8\u00b7\uce21\ubcbd\u00b7\uc131\ud1a0 \ud328\uce58", "source_file": "pages/B08_DesignDetail/B08_CAD_usability_2026-09-01.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_api", "label": "B08_api.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_api.md", "community": 147, "community_name": "B08_DesignDetail \u2014 API", "source_file": "pages/B08_DesignDetail/B08_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_api_b08_designdetail_api", "label": "B08_DesignDetail \u2014 API", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B08_DesignDetail \u2014 API", "community": 147, "community_name": "B08_DesignDetail \u2014 API", "source_file": "pages/B08_DesignDetail/B08_api.md", "file_type": "document", "degree": 2}, {"id": "pages_b08_designdetail_b08_api_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 147, "community_name": "B08_DesignDetail \u2014 API", "source_file": "pages/B08_DesignDetail/B08_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_backend", "label": "B08_backend.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_backend.md", "community": 30, "community_name": "B08_DesignDetail \u2014 Backend", "source_file": "pages/B08_DesignDetail/B08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_backend_b08_designdetail_backend", "label": "B08_DesignDetail \u2014 Backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 27.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B08_DesignDetail \u2014 Backend", "community": 30, "community_name": "B08_DesignDetail \u2014 Backend", "source_file": "pages/B08_DesignDetail/B08_backend.md", "file_type": "document", "degree": 7}, {"id": "pages_b08_designdetail_b08_backend_\ub3c4\uba74_\uad00\ub9ac_\uc885\ub2e8_30\uce21\uc810_\ubd84\ud560_cad_\uc218\ub7c9\uc0b0\ucd9c\ud45c_\ubc0f_\ub3c4\uba74_\ud15c\ud50c\ub9bf_\ud30c\uc774\ud504\ub77c\uc778", "label": "\ub3c4\uba74 \uad00\ub9ac, \uc885\ub2e8 30\uce21\uc810 \ubd84\ud560, CAD \uc218\ub7c9\uc0b0\ucd9c\ud45c \ubc0f \ub3c4\uba74 \ud15c\ud50c\ub9bf \ud30c\uc774\ud504\ub77c\uc778", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub3c4\uba74 \uad00\ub9ac, \uc885\ub2e8 30\uce21\uc810 \ubd84\ud560, CAD \uc218\ub7c9\uc0b0\ucd9c\ud45c \ubc0f \ub3c4\uba74 \ud15c\ud50c\ub9bf \ud30c\uc774\ud504\ub77c\uc778", "community": 30, "community_name": "B08_DesignDetail \u2014 Backend", "source_file": "pages/B08_DesignDetail/B08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_backend_\ub3c4\uac01_\ud15c\ud50c\ub9bf_\ubcc0\ud658_\ubc0f_\uc885\ub2e8\ub3c4_a1_\ub3c4\uac01_\ubcd1\ud569_2026_07_26", "label": "\ub3c4\uac01 \ud15c\ud50c\ub9bf \ubcc0\ud658 \ubc0f \uc885\ub2e8\ub3c4 A1 \ub3c4\uac01 \ubcd1\ud569 (2026-07-26)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub3c4\uac01 \ud15c\ud50c\ub9bf \ubcc0\ud658 \ubc0f \uc885\ub2e8\ub3c4 A1 \ub3c4\uac01 \ubcd1\ud569 (2026-07-26)", "community": 30, "community_name": "B08_DesignDetail \u2014 Backend", "source_file": "pages/B08_DesignDetail/B08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_backend_\uc885\ub2e8\ub3c4_30\uce21\uc810_n\ubd84\ud560_\ubc0f_\ub0a9\ud488_\uc591\uc2dd_\uce21\uc810_\ud14c\uc774\ube14_2026_07_25_n_1_1", "label": "\uc885\ub2e8\ub3c4 30\uce21\uc810 N\ubd84\ud560 \ubc0f \ub0a9\ud488 \uc591\uc2dd \uce21\uc810 \ud14c\uc774\ube14 (2026-07-25 N-1-1)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc885\ub2e8\ub3c4 30\uce21\uc810 N\ubd84\ud560 \ubc0f \ub0a9\ud488 \uc591\uc2dd \uce21\uc810 \ud14c\uc774\ube14 (2026-07-25 N-1-1)", "community": 30, "community_name": "B08_DesignDetail \u2014 Backend", "source_file": "pages/B08_DesignDetail/B08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_backend_\ud6a1\ub2e8\ub3c4_4\uac1c_\uc120\ubcc4_\ub808\uc774\uc5b4_\ubc0f_cad_\uc218\ub7c9\uc0b0\ucd9c\ud45c_2026_07_25_n_1_2_n_1_3", "label": "\ud6a1\ub2e8\ub3c4 4\uac1c \uc120\ubcc4 \ub808\uc774\uc5b4 \ubc0f CAD \uc218\ub7c9\uc0b0\ucd9c\ud45c (2026-07-25 N-1-2/N-1-3)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud6a1\ub2e8\ub3c4 4\uac1c \uc120\ubcc4 \ub808\uc774\uc5b4 \ubc0f CAD \uc218\ub7c9\uc0b0\ucd9c\ud45c (2026-07-25 N-1-2/N-1-3)", "community": 30, "community_name": "B08_DesignDetail \u2014 Backend", "source_file": "pages/B08_DesignDetail/B08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_backend_\uc6cc\ud06c\ud50c\ub85c\uc6b0_\uac8c\uc774\ud305_\uc5f0\ub3d9", "label": "\uc6cc\ud06c\ud50c\ub85c\uc6b0 \uac8c\uc774\ud305 \uc5f0\ub3d9", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6cc\ud06c\ud50c\ub85c\uc6b0 \uac8c\uc774\ud305 \uc5f0\ub3d9", "community": 30, "community_name": "B08_DesignDetail \u2014 Backend", "source_file": "pages/B08_DesignDetail/B08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_backend_\ud604\uc7ac_\ucc45\uc784_\uacbd\uacc4", "label": "\ud604\uc7ac \ucc45\uc784 \uacbd\uacc4", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud604\uc7ac \ucc45\uc784 \uacbd\uacc4", "community": 30, "community_name": "B08_DesignDetail \u2014 Backend", "source_file": "pages/B08_DesignDetail/B08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_delivery_2026_09", "label": "B08_cad_delivery_2026_09.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_cad_delivery_2026_09.md", "community": 171, "community_name": "B08 CAD\u00b7\ub0a9\ud488 \ub3c4\uba74 \ud6c4\uc18d", "source_file": "pages/B08_DesignDetail/B08_cad_delivery_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_delivery_2026_09_b08_cad_\ub0a9\ud488_\ub3c4\uba74_\ud6c4\uc18d", "label": "B08 CAD\u00b7\ub0a9\ud488 \ub3c4\uba74 \ud6c4\uc18d", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B08 CAD\u00b7\ub0a9\ud488 \ub3c4\uba74 \ud6c4\uc18d", "community": 171, "community_name": "B08 CAD\u00b7\ub0a9\ud488 \ub3c4\uba74 \ud6c4\uc18d", "source_file": "pages/B08_DesignDetail/B08_cad_delivery_2026_09.md", "file_type": "document", "degree": 3}, {"id": "pages_b08_designdetail_b08_cad_delivery_2026_09_cad_\ud3b8\uc9d1_\ud655\uc815", "label": "CAD \ud3b8\uc9d1\u00b7\ud655\uc815", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CAD \ud3b8\uc9d1\u00b7\ud655\uc815", "community": 171, "community_name": "B08 CAD\u00b7\ub0a9\ud488 \ub3c4\uba74 \ud6c4\uc18d", "source_file": "pages/B08_DesignDetail/B08_cad_delivery_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cad_delivery_2026_09_\ud1a0\uc801\ub3c4_\uc720\uc5ed\ub3c4", "label": "\ud1a0\uc801\ub3c4\u00b7\uc720\uc5ed\ub3c4", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud1a0\uc801\ub3c4\u00b7\uc720\uc5ed\ub3c4", "community": 171, "community_name": "B08 CAD\u00b7\ub0a9\ud488 \ub3c4\uba74 \ud6c4\uc18d", "source_file": "pages/B08_DesignDetail/B08_cad_delivery_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cross_structure_sheets", "label": "B08_cross_structure_sheets.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_cross_structure_sheets.md", "community": 56, "community_name": "B08 \ud6a1\ub2e8\ub3c4 \uad6c\uc870\ubb3c\u00b7\uc7a5 \ubc30\uce58", "source_file": "pages/B08_DesignDetail/B08_cross_structure_sheets.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cross_structure_sheets_b08_\ud6a1\ub2e8\ub3c4_\uad6c\uc870\ubb3c_\uc7a5_\ubc30\uce58", "label": "B08 \ud6a1\ub2e8\ub3c4 \uad6c\uc870\ubb3c\u00b7\uc7a5 \ubc30\uce58", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B08 \ud6a1\ub2e8\ub3c4 \uad6c\uc870\ubb3c\u00b7\uc7a5 \ubc30\uce58", "community": 56, "community_name": "B08 \ud6a1\ub2e8\ub3c4 \uad6c\uc870\ubb3c\u00b7\uc7a5 \ubc30\uce58", "source_file": "pages/B08_DesignDetail/B08_cross_structure_sheets.md", "file_type": "document", "degree": 5}, {"id": "pages_b08_designdetail_b08_cross_structure_sheets_\ubb38\uc81c\uc640_\uacb0\uc815", "label": "\ubb38\uc81c\uc640 \uacb0\uc815", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubb38\uc81c\uc640 \uacb0\uc815", "community": 56, "community_name": "B08 \ud6a1\ub2e8\ub3c4 \uad6c\uc870\ubb3c\u00b7\uc7a5 \ubc30\uce58", "source_file": "pages/B08_DesignDetail/B08_cross_structure_sheets.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cross_structure_sheets_\ub370\uc774\ud130_\uad6c\ud604_\ud750\ub984", "label": "\ub370\uc774\ud130\u00b7\uad6c\ud604 \ud750\ub984", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub370\uc774\ud130\u00b7\uad6c\ud604 \ud750\ub984", "community": 56, "community_name": "B08 \ud6a1\ub2e8\ub3c4 \uad6c\uc870\ubb3c\u00b7\uc7a5 \ubc30\uce58", "source_file": "pages/B08_DesignDetail/B08_cross_structure_sheets.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cross_structure_sheets_\uacb0\uacfc", "label": "\uacb0\uacfc", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacb0\uacfc", "community": 56, "community_name": "B08 \ud6a1\ub2e8\ub3c4 \uad6c\uc870\ubb3c\u00b7\uc7a5 \ubc30\uce58", "source_file": "pages/B08_DesignDetail/B08_cross_structure_sheets.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_cross_structure_sheets_\ud55c\uacc4", "label": "\ud55c\uacc4", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud55c\uacc4", "community": 56, "community_name": "B08 \ud6a1\ub2e8\ub3c4 \uad6c\uc870\ubb3c\u00b7\uc7a5 \ubc30\uce58", "source_file": "pages/B08_DesignDetail/B08_cross_structure_sheets.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_dependencies", "label": "B08_dependencies.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_dependencies.md", "community": 111, "community_name": "B08_DesignDetail \u2014 Dependencies", "source_file": "pages/B08_DesignDetail/B08_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_dependencies_b08_designdetail_dependencies", "label": "B08_DesignDetail \u2014 Dependencies", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B08_DesignDetail \u2014 Dependencies", "community": 111, "community_name": "B08_DesignDetail \u2014 Dependencies", "source_file": "pages/B08_DesignDetail/B08_dependencies.md", "file_type": "document", "degree": 3}, {"id": "pages_b08_designdetail_b08_dependencies_frontend_package_json_tsconfig_json", "label": "Frontend (package.json / tsconfig.json)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend (package.json / tsconfig.json)", "community": 111, "community_name": "B08_DesignDetail \u2014 Dependencies", "source_file": "pages/B08_DesignDetail/B08_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_dependencies_backend_requirements_txt", "label": "Backend (requirements.txt)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend (requirements.txt)", "community": 111, "community_name": "B08_DesignDetail \u2014 Dependencies", "source_file": "pages/B08_DesignDetail/B08_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_drawing_masshaul_watershed", "label": "B08_drawing_masshaul_watershed.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_drawing_masshaul_watershed.md", "community": 31, "community_name": "B08 \ud1a0\uc801\ub3c4\u00b7\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_drawing_masshaul_watershed_b08_\ud1a0\uc801\ub3c4_\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "label": "B08 \ud1a0\uc801\ub3c4\u00b7\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 27.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B08 \ud1a0\uc801\ub3c4\u00b7\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "community": 31, "community_name": "B08 \ud1a0\uc801\ub3c4\u00b7\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "document", "degree": 7}, {"id": "pages_b08_designdetail_b08_drawing_masshaul_watershed_\ub3c4\uba74_\uae30\uc900", "label": "\ub3c4\uba74 \uae30\uc900", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub3c4\uba74 \uae30\uc900", "community": 31, "community_name": "B08 \ud1a0\uc801\ub3c4\u00b7\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_drawing_masshaul_watershed_\ub370\uc774\ud130_\ud750\ub984", "label": "\ub370\uc774\ud130 \ud750\ub984", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub370\uc774\ud130 \ud750\ub984", "community": 31, "community_name": "B08 \ud1a0\uc801\ub3c4\u00b7\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_drawing_masshaul_watershed_\uc720\uc5ed_\uc815\ubcf4\ud45c", "label": "\uc720\uc5ed \uc815\ubcf4\ud45c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc720\uc5ed \uc815\ubcf4\ud45c", "community": 31, "community_name": "B08 \ud1a0\uc801\ub3c4\u00b7\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_drawing_masshaul_watershed_\uad6c\ud604_\uac80\uc99d_\uc644\ub8cc", "label": "\uad6c\ud604\u00b7\uac80\uc99d \uc644\ub8cc", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604\u00b7\uac80\uc99d \uc644\ub8cc", "community": 31, "community_name": "B08 \ud1a0\uc801\ub3c4\u00b7\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_drawing_masshaul_watershed_\uac80\uc99d_\ud55c\uacc4", "label": "\uac80\uc99d \ud55c\uacc4", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d \ud55c\uacc4", "community": 31, "community_name": "B08 \ud1a0\uc801\ub3c4\u00b7\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_drawing_masshaul_watershed_\ub0a8\uc740_\uacb0\uc815", "label": "\ub0a8\uc740 \uacb0\uc815", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub0a8\uc740 \uacb0\uc815", "community": 31, "community_name": "B08 \ud1a0\uc801\ub3c4\u00b7\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_frontend", "label": "B08_frontend.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_frontend.md", "community": 4, "community_name": "\ubc30\uc218\uc720\uc5ed \ud574\uc11d \ubc0f \uc138\ubd80\uc124\uacc4 (Drainage Watershed)", "source_file": "pages/B08_DesignDetail/B08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_frontend_b08_designdetail_frontend", "label": "B08_DesignDetail \u2014 Frontend", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 27.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B08_DesignDetail \u2014 Frontend", "community": 4, "community_name": "\ubc30\uc218\uc720\uc5ed \ud574\uc11d \ubc0f \uc138\ubd80\uc124\uacc4 (Drainage Watershed)", "source_file": "pages/B08_DesignDetail/B08_frontend.md", "file_type": "document", "degree": 7}, {"id": "pages_b08_designdetail_b08_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 4, "community_name": "\ubc30\uc218\uc720\uc5ed \ud574\uc11d \ubc0f \uc138\ubd80\uc124\uacc4 (Drainage Watershed)", "source_file": "pages/B08_DesignDetail/B08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_frontend_\ub3c5\ub9bd\ud615_cad_\uc784\ubca0\ub4dc_\ubc0f_\ub370\uc774\ud130_\uc5f0\ub3d9_\uc544\ud0a4\ud14d\ucc98", "label": "\ub3c5\ub9bd\ud615 CAD \uc784\ubca0\ub4dc \ubc0f \ub370\uc774\ud130 \uc5f0\ub3d9 \uc544\ud0a4\ud14d\ucc98", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub3c5\ub9bd\ud615 CAD \uc784\ubca0\ub4dc \ubc0f \ub370\uc774\ud130 \uc5f0\ub3d9 \uc544\ud0a4\ud14d\ucc98", "community": 4, "community_name": "\ubc30\uc218\uc720\uc5ed \ud574\uc11d \ubc0f \uc138\ubd80\uc124\uacc4 (Drainage Watershed)", "source_file": "pages/B08_DesignDetail/B08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_frontend_openwebcad_\ub2e8\uc704_\uc815\ud569_\uc120_\ud2b9\uc131_\ud3f0\ud2b8_ui_\ubc0f_fit_in_all_2026_07_20", "label": "openwebcad \ub2e8\uc704 \uc815\ud569, \uc120 \ud2b9\uc131/\ud3f0\ud2b8 UI \ubc0f Fit-in-all (2026-07-20)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "openwebcad \ub2e8\uc704 \uc815\ud569, \uc120 \ud2b9\uc131/\ud3f0\ud2b8 UI \ubc0f Fit-in-all (2026-07-20)", "community": 4, "community_name": "\ubc30\uc218\uc720\uc5ed \ud574\uc11d \ubc0f \uc138\ubd80\uc124\uacc4 (Drainage Watershed)", "source_file": "pages/B08_DesignDetail/B08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_frontend_cad_\uacc4\ud68d\uc120_\ub808\uc774\uc5b4_\uc5f0\ub3d9_\ubc0f_\ud3b8\uc9d1_\uc9c0\uc6d0_2026_07_22", "label": "CAD \uacc4\ud68d\uc120 \ub808\uc774\uc5b4 \uc5f0\ub3d9 \ubc0f \ud3b8\uc9d1 \uc9c0\uc6d0 (2026-07-22)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CAD \uacc4\ud68d\uc120 \ub808\uc774\uc5b4 \uc5f0\ub3d9 \ubc0f \ud3b8\uc9d1 \uc9c0\uc6d0 (2026-07-22)", "community": 4, "community_name": "\ubc30\uc218\uc720\uc5ed \ud574\uc11d \ubc0f \uc138\ubd80\uc124\uacc4 (Drainage Watershed)", "source_file": "pages/B08_DesignDetail/B08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_frontend_\uc8fc\uc694_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\uc8fc\uc694 \ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc8fc\uc694 \ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 4, "community_name": "\ubc30\uc218\uc720\uc5ed \ud574\uc11d \ubc0f \uc138\ubd80\uc124\uacc4 (Drainage Watershed)", "source_file": "pages/B08_DesignDetail/B08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_b08_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 4, "community_name": "\ubc30\uc218\uc720\uc5ed \ud574\uc11d \ubc0f \uc138\ubd80\uc124\uacc4 (Drainage Watershed)", "source_file": "pages/B08_DesignDetail/B08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_backend_b08_designdetail_router", "label": "B08_DesignDetail_Router.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_DesignDetail_Router.md", "community": 154, "community_name": "B08_DesignDetail_Router.md", "source_file": "pages/B08_DesignDetail/backend/B08_DesignDetail_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_designdetail_backend_b08_designdetail_router_b08_designdetail_router_py", "label": "B08_DesignDetail_Router.py", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B08_DesignDetail_Router.py", "community": 154, "community_name": "B08_DesignDetail_Router.md", "source_file": "pages/B08_DesignDetail/backend/B08_DesignDetail_Router.md", "file_type": "document", "degree": 2}, {"id": "pages_b08_designdetail_backend_b08_designdetail_router_\uc2e4\uc81c_api", "label": "\uc2e4\uc81c API", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2e4\uc81c API", "community": 154, "community_name": "B08_DesignDetail_Router.md", "source_file": "pages/B08_DesignDetail/backend/B08_DesignDetail_Router.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_quantity_b08_2026_09_09_completion", "label": "B08_2026_09_09_completion.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_2026_09_09_completion.md", "community": 93, "community_name": "\uacf5\uc720 \uc790\uc6d0 \uc601\ud5a5 \uc9c0\ub3c4", "source_file": "pages/B08_Quantity/B08_2026_09_09_completion.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_quantity_b08_2026_09_09_completion_b08_\uc218\ub7c9\uc0b0\ucd9c_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "label": "B08 \uc218\ub7c9\uc0b0\ucd9c \u2014 2026-09-09 \uc644\ub8cc \uadfc\uac70", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B08 \uc218\ub7c9\uc0b0\ucd9c \u2014 2026-09-09 \uc644\ub8cc \uadfc\uac70", "community": 93, "community_name": "\uacf5\uc720 \uc790\uc6d0 \uc601\ud5a5 \uc9c0\ub3c4", "source_file": "pages/B08_Quantity/B08_2026_09_09_completion.md", "file_type": "document", "degree": 5}, {"id": "pages_b08_quantity_b08_2026_09_09_completion_\ubc11\uc218\uc640_\uc778\uacc4", "label": "\ubc11\uc218\uc640 \uc778\uacc4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc11\uc218\uc640 \uc778\uacc4", "community": 93, "community_name": "\uacf5\uc720 \uc790\uc6d0 \uc601\ud5a5 \uc9c0\ub3c4", "source_file": "pages/B08_Quantity/B08_2026_09_09_completion.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_quantity_b08_2026_09_09_completion_\uad6c\uc870\ubb3c_\uc218\ub7c9_\ud45c\uc2dc", "label": "\uad6c\uc870\ubb3c\u00b7\uc218\ub7c9 \ud45c\uc2dc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\uc870\ubb3c\u00b7\uc218\ub7c9 \ud45c\uc2dc", "community": 93, "community_name": "\uacf5\uc720 \uc790\uc6d0 \uc601\ud5a5 \uc9c0\ub3c4", "source_file": "pages/B08_Quantity/B08_2026_09_09_completion.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_quantity_b08_2026_09_09_completion_\uac80\uc99d_\uae30\ub85d", "label": "\uac80\uc99d \uae30\ub85d", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d \uae30\ub85d", "community": 93, "community_name": "\uacf5\uc720 \uc790\uc6d0 \uc601\ud5a5 \uc9c0\ub3c4", "source_file": "pages/B08_Quantity/B08_2026_09_09_completion.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_quantity_b08_2026_09_09_completion_\ub0a8\uc740_\uacbd\uacc4", "label": "\ub0a8\uc740 \uacbd\uacc4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub0a8\uc740 \uacbd\uacc4", "community": 93, "community_name": "\uacf5\uc720 \uc790\uc6d0 \uc601\ud5a5 \uc9c0\ub3c4", "source_file": "pages/B08_Quantity/B08_2026_09_09_completion.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_quantity_b08_overview_2026_09", "label": "B08_overview_2026_09.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_overview_2026_09.md", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "pages/B08_Quantity/B08_overview_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_quantity_b08_overview_2026_09_b08_quantity_2026_09_\uc218\ub7c9\uc0b0\ucd9c", "label": "B08 Quantity \u2014 2026-09 \uc218\ub7c9\uc0b0\ucd9c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B08 Quantity \u2014 2026-09 \uc218\ub7c9\uc0b0\ucd9c", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "pages/B08_Quantity/B08_overview_2026_09.md", "file_type": "document", "degree": 6}, {"id": "pages_b08_quantity_b08_overview_2026_09_\uad6c\ud604_\uad6c\uc131", "label": "\uad6c\ud604 \uad6c\uc131", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604 \uad6c\uc131", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "pages/B08_Quantity/B08_overview_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_quantity_b08_overview_2026_09_\uac80\uc99d\ub41c_\ud750\ub984", "label": "\uac80\uc99d\ub41c \ud750\ub984", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d\ub41c \ud750\ub984", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "pages/B08_Quantity/B08_overview_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_quantity_b08_overview_2026_09_\uc644\ub8cc_\uc81c\ud55c", "label": "\uc644\ub8cc\u00b7\uc81c\ud55c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc644\ub8cc\u00b7\uc81c\ud55c", "community": 26, "community_name": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "source_file": "pages/B08_Quantity/B08_overview_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_2026_09_09_completion", "label": "B09_2026_09_09_completion.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B09_2026_09_09_completion.md", "community": 92, "community_name": "\uacf5\uac1c\u00b7\uc778\uc99d\u00b7\uad00\ub9ac \uc601\uc5ed \uc9c0\ub3c4", "source_file": "pages/B09_Estimation/B09_2026_09_09_completion.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_2026_09_09_completion_b09_\uc6d0\uac00\uacc4\uc0b0_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "label": "B09 \uc6d0\uac00\uacc4\uc0b0 \u2014 2026-09-09 \uc644\ub8cc \uadfc\uac70", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B09 \uc6d0\uac00\uacc4\uc0b0 \u2014 2026-09-09 \uc644\ub8cc \uadfc\uac70", "community": 92, "community_name": "\uacf5\uac1c\u00b7\uc778\uc99d\u00b7\uad00\ub9ac \uc601\uc5ed \uc9c0\ub3c4", "source_file": "pages/B09_Estimation/B09_2026_09_09_completion.md", "file_type": "document", "degree": 6}, {"id": "pages_b09_estimation_b09_2026_09_09_completion_\ub2e8\uac00_\ubc11\uc218_\uc644\uc131", "label": "\ub2e8\uac00\u00b7\ubc11\uc218 \uc644\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub2e8\uac00\u00b7\ubc11\uc218 \uc644\uc131", "community": 92, "community_name": "\uacf5\uac1c\u00b7\uc778\uc99d\u00b7\uad00\ub9ac \uc601\uc5ed \uc9c0\ub3c4", "source_file": "pages/B09_Estimation/B09_2026_09_09_completion.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_2026_09_09_completion_\uac00\uaca9_\uc870\uac74_\uc785\ub825", "label": "\uac00\uaca9\u00b7\uc870\uac74 \uc785\ub825", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac00\uaca9\u00b7\uc870\uac74 \uc785\ub825", "community": 92, "community_name": "\uacf5\uac1c\u00b7\uc778\uc99d\u00b7\uad00\ub9ac \uc601\uc5ed \uc9c0\ub3c4", "source_file": "pages/B09_Estimation/B09_2026_09_09_completion.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_2026_09_09_completion_\uae30\uacc4_\uc81c\ube44\uc728_\uc0b0\ucd9c\ubb3c", "label": "\uae30\uacc4\u00b7\uc81c\ube44\uc728\u00b7\uc0b0\ucd9c\ubb3c", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\uacc4\u00b7\uc81c\ube44\uc728\u00b7\uc0b0\ucd9c\ubb3c", "community": 92, "community_name": "\uacf5\uac1c\u00b7\uc778\uc99d\u00b7\uad00\ub9ac \uc601\uc5ed \uc9c0\ub3c4", "source_file": "pages/B09_Estimation/B09_2026_09_09_completion.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_2026_09_09_completion_\uac80\uc99d_\uae30\ub85d", "label": "\uac80\uc99d \uae30\ub85d", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d \uae30\ub85d", "community": 92, "community_name": "\uacf5\uac1c\u00b7\uc778\uc99d\u00b7\uad00\ub9ac \uc601\uc5ed \uc9c0\ub3c4", "source_file": "pages/B09_Estimation/B09_2026_09_09_completion.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_2026_09_09_completion_\ub0a8\uc740_\uacbd\uacc4", "label": "\ub0a8\uc740 \uacbd\uacc4", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub0a8\uc740 \uacbd\uacc4", "community": 92, "community_name": "\uacf5\uac1c\u00b7\uc778\uc99d\u00b7\uad00\ub9ac \uc601\uc5ed \uc9c0\ub3c4", "source_file": "pages/B09_Estimation/B09_2026_09_09_completion.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_frontend", "label": "B09_frontend.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B09_frontend.md", "community": 32, "community_name": "B09_Estimation \u2014 Frontend", "source_file": "pages/B09_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_frontend_b09_estimation_frontend", "label": "B09_Estimation \u2014 Frontend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 27.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B09_Estimation \u2014 Frontend", "community": 32, "community_name": "B09_Estimation \u2014 Frontend", "source_file": "pages/B09_Estimation/B09_frontend.md", "file_type": "document", "degree": 7}, {"id": "pages_b09_estimation_b09_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 32, "community_name": "B09_Estimation \u2014 Frontend", "source_file": "pages/B09_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 32, "community_name": "B09_Estimation \u2014 Frontend", "source_file": "pages/B09_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 32, "community_name": "B09_Estimation \u2014 Frontend", "source_file": "pages/B09_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 32, "community_name": "B09_Estimation \u2014 Frontend", "source_file": "pages/B09_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_frontend_\ubc31\uc5d4\ub4dc_db_\ubbf8\ucc29\uc218", "label": "\ubc31\uc5d4\ub4dc/DB \u2014 \ubbf8\ucc29\uc218", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc31\uc5d4\ub4dc/DB \u2014 \ubbf8\ucc29\uc218", "community": 32, "community_name": "B09_Estimation \u2014 Frontend", "source_file": "pages/B09_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_frontend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 32, "community_name": "B09_Estimation \u2014 Frontend", "source_file": "pages/B09_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_overview_2026_09", "label": "B09_overview_2026_09.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B09_overview_2026_09.md", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "pages/B09_Estimation/B09_overview_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_overview_2026_09_b09_estimation_2026_09_\uc6d0\uac00\uacc4\uc0b0", "label": "B09 Estimation \u2014 2026-09 \uc6d0\uac00\uacc4\uc0b0", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B09 Estimation \u2014 2026-09 \uc6d0\uac00\uacc4\uc0b0", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "pages/B09_Estimation/B09_overview_2026_09.md", "file_type": "document", "degree": 5}, {"id": "pages_b09_estimation_b09_overview_2026_09_\uad6c\ud604_\uad6c\uc131", "label": "\uad6c\ud604 \uad6c\uc131", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604 \uad6c\uc131", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "pages/B09_Estimation/B09_overview_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_overview_2026_09_\ub9c8\uac10_\uae30\ub85d", "label": "\ub9c8\uac10 \uae30\ub85d", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub9c8\uac10 \uae30\ub85d", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "pages/B09_Estimation/B09_overview_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_b09_overview_2026_09_\uc644\ub8cc_\uacbd\uacc4", "label": "\uc644\ub8cc \uacbd\uacc4", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc644\ub8cc \uacbd\uacc4", "community": 46, "community_name": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "source_file": "pages/B09_Estimation/B09_overview_2026_09.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_frontend_b09_estimation_ui_page", "label": "B09_Estimation_UI_Page.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B09_Estimation_UI_Page.md", "community": 155, "community_name": "B09_Estimation_UI_Page.md", "source_file": "pages/B09_Estimation/frontend/B09_Estimation_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_estimation_frontend_b09_estimation_ui_page_b09_estimation_ui_page_ts", "label": "B09_Estimation_UI_Page.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B09_Estimation_UI_Page.ts", "community": 155, "community_name": "B09_Estimation_UI_Page.md", "source_file": "pages/B09_Estimation/frontend/B09_Estimation_UI_Page.md", "file_type": "document", "degree": 2}, {"id": "pages_b09_estimation_frontend_b09_estimation_ui_page_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 155, "community_name": "B09_Estimation_UI_Page.md", "source_file": "pages/B09_Estimation/frontend/B09_Estimation_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b10_payment_b10_frontend", "label": "B10_frontend.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B10_frontend.md", "community": 42, "community_name": "B10_Payment \u2014 Frontend", "source_file": "pages/B10_Payment/B10_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b10_payment_b10_frontend_b10_payment_frontend", "label": "B10_Payment \u2014 Frontend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B10_Payment \u2014 Frontend", "community": 42, "community_name": "B10_Payment \u2014 Frontend", "source_file": "pages/B10_Payment/B10_frontend.md", "file_type": "document", "degree": 6}, {"id": "pages_b10_payment_b10_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 42, "community_name": "B10_Payment \u2014 Frontend", "source_file": "pages/B10_Payment/B10_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b10_payment_b10_frontend_\uc8fc\uc694_\ucef4\ud3ec\ub10c\ud2b8_\ubc0f_\ud568\uc218_mockup", "label": "\uc8fc\uc694 \ucef4\ud3ec\ub10c\ud2b8 \ubc0f \ud568\uc218 (Mockup)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc8fc\uc694 \ucef4\ud3ec\ub10c\ud2b8 \ubc0f \ud568\uc218 (Mockup)", "community": 42, "community_name": "B10_Payment \u2014 Frontend", "source_file": "pages/B10_Payment/B10_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b10_payment_b10_frontend_\ube44\uc988\ub2c8\uc2a4_\ub85c\uc9c1_\uc804\uc81c_\ubaa9\uc5c5", "label": "\ube44\uc988\ub2c8\uc2a4 \ub85c\uc9c1 \uc804\uc81c (\ubaa9\uc5c5)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ube44\uc988\ub2c8\uc2a4 \ub85c\uc9c1 \uc804\uc81c (\ubaa9\uc5c5)", "community": 42, "community_name": "B10_Payment \u2014 Frontend", "source_file": "pages/B10_Payment/B10_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b10_payment_b10_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 42, "community_name": "B10_Payment \u2014 Frontend", "source_file": "pages/B10_Payment/B10_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b10_payment_b10_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 42, "community_name": "B10_Payment \u2014 Frontend", "source_file": "pages/B10_Payment/B10_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b10_payment_frontend_b10_payment_ui_page", "label": "B10_Payment_UI_Page.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B10_Payment_UI_Page.md", "community": 156, "community_name": "B10_Payment_UI_Page.md", "source_file": "pages/B10_Payment/frontend/B10_Payment_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b10_payment_frontend_b10_payment_ui_page_b10_payment_ui_page_ts", "label": "B10_Payment_UI_Page.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B10_Payment_UI_Page.ts", "community": 156, "community_name": "B10_Payment_UI_Page.md", "source_file": "pages/B10_Payment/frontend/B10_Payment_UI_Page.md", "file_type": "document", "degree": 2}, {"id": "pages_b10_payment_frontend_b10_payment_ui_page_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 156, "community_name": "B10_Payment_UI_Page.md", "source_file": "pages/B10_Payment/frontend/B10_Payment_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b11_status_b11_frontend", "label": "B11_frontend.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B11_frontend.md", "community": 43, "community_name": "B11_Status \u2014 Frontend", "source_file": "pages/B11_Status/B11_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b11_status_b11_frontend_b11_status_frontend", "label": "B11_Status \u2014 Frontend", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B11_Status \u2014 Frontend", "community": 43, "community_name": "B11_Status \u2014 Frontend", "source_file": "pages/B11_Status/B11_frontend.md", "file_type": "document", "degree": 6}, {"id": "pages_b11_status_b11_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 43, "community_name": "B11_Status \u2014 Frontend", "source_file": "pages/B11_Status/B11_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b11_status_b11_frontend_\uc8fc\uc694_\ucef4\ud3ec\ub10c\ud2b8_\ubc0f_\uae30\ub2a5_mockup", "label": "\uc8fc\uc694 \ucef4\ud3ec\ub10c\ud2b8 \ubc0f \uae30\ub2a5 (Mockup)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc8fc\uc694 \ucef4\ud3ec\ub10c\ud2b8 \ubc0f \uae30\ub2a5 (Mockup)", "community": 43, "community_name": "B11_Status \u2014 Frontend", "source_file": "pages/B11_Status/B11_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b11_status_b11_frontend_\uacb0\uc7ac_\uc0c1\ud0dc_\ud750\ub984_payment_flow_status", "label": "\uacb0\uc7ac \uc0c1\ud0dc \ud750\ub984 (Payment Flow Status)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacb0\uc7ac \uc0c1\ud0dc \ud750\ub984 (Payment Flow Status)", "community": 43, "community_name": "B11_Status \u2014 Frontend", "source_file": "pages/B11_Status/B11_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b11_status_b11_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 43, "community_name": "B11_Status \u2014 Frontend", "source_file": "pages/B11_Status/B11_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b11_status_b11_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 43, "community_name": "B11_Status \u2014 Frontend", "source_file": "pages/B11_Status/B11_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b11_status_frontend_b11_status_ui_page", "label": "B11_Status_UI_Page.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "B11_Status_UI_Page.md", "community": 157, "community_name": "B11_Status_UI_Page.md", "source_file": "pages/B11_Status/frontend/B11_Status_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "pages_b11_status_frontend_b11_status_ui_page_b11_status_ui_page_ts", "label": "B11_Status_UI_Page.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B11_Status_UI_Page.ts", "community": 157, "community_name": "B11_Status_UI_Page.md", "source_file": "pages/B11_Status/frontend/B11_Status_UI_Page.md", "file_type": "document", "degree": 2}, {"id": "pages_b11_status_frontend_b11_status_ui_page_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udee0\ufe0f \uc8fc\uc694 \ud568\uc218 \ubaa9\ub85d", "community": 157, "community_name": "B11_Status_UI_Page.md", "source_file": "pages/B11_Status/frontend/B11_Status_UI_Page.md", "file_type": "document", "degree": 1}, {"id": "query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918__\uc784\ub3c4_md_query", "label": "Query: \ubc30\uc218\uad00 \ub9e4\uc124 \uac01\ub3c4 \uc81c\uc57d\uc870\uac74 (\uc784\ub3c4)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Query: \ubc30\uc218\uad00 \ub9e4\uc124 \uac01\ub3c4 \uc81c\uc57d\uc870\uac74 (\uc784\ub3c4)", "community": 195, "community_name": "Query: \ubc30\uc218\uad00 \ub9e4\uc124 \uac01\ub3c4 \uc81c\uc57d\uc870\uac74 (\uc784\ub3c4)", "source_file": "graphify-out/memory/query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918__\uc784\ub3c4\uc5d0\uc11c.md", "file_type": "document", "degree": 0}, {"id": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_md_query", "label": "Query: \uc784\ub3c4 \uc9d1\uc218\uc815 \ud615\ud0dc\uc815\ubcf4", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Query: \uc784\ub3c4 \uc9d1\uc218\uc815 \ud615\ud0dc\uc815\ubcf4", "community": 185, "community_name": "Query: \uc784\ub3c4 \uc9d1\uc218\uc815 \ud615\ud0dc\uc815\ubcf4", "source_file": "graphify-out/memory/query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918.md", "file_type": "document", "degree": 0}, {"id": "b08_designdetail_b08_designdetail_engine_cad_masshaul_py", "label": "B08_DesignDetail_Engine_Cad_MassHaul.py", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_DesignDetail_Engine_Cad_MassHaul.py", "community": 170, "community_name": "B08_DesignDetail_Engine_Cad_MassHaul.py", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "code", "degree": 0}, {"id": "b08_designdetail_b08_designdetail_engine_cad_basin_py", "label": "B08_DesignDetail_Engine_Cad_Basin.py", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_DesignDetail_Engine_Cad_Basin.py", "community": 169, "community_name": "B08_DesignDetail_Engine_Cad_Basin.py", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "code", "degree": 0}, {"id": "common_util_common_util_mass_haul_settle_ts", "label": "common_util_mass_haul_settle.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "common_util_mass_haul_settle.ts", "community": 177, "community_name": "common_util_mass_haul_settle.ts", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "code", "degree": 0}, {"id": "concept_mass_haul_diagram", "label": "Mass Haul Diagram (\ud1a0\uc801\ub3c4)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Mass Haul Diagram (\ud1a0\uc801\ub3c4)", "community": 179, "community_name": "Mass Haul Diagram (\ud1a0\uc801\ub3c4)", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "concept", "degree": 0}, {"id": "concept_drainage_watershed", "label": "Drainage Watershed (\uc720\uc5ed\ub3c4)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Drainage Watershed (\uc720\uc5ed\ub3c4)", "community": 178, "community_name": "Drainage Watershed (\uc720\uc5ed\ub3c4)", "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md", "file_type": "concept", "degree": 0}, {"id": "b08_designdetail_openwebcad_app", "label": "OpenWebCAD Core", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "OpenWebCAD Core", "community": 176, "community_name": "OpenWebCAD Core", "source_file": "B08_DesignDetail/openwebcad", "file_type": "code", "degree": 0}, {"id": "pages_b03_fileinput_backend", "label": "B03 File Input Backend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "B03 File Input Backend", "community": 187, "community_name": "B03 File Input Backend", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "code", "degree": 0}, {"id": "pages_b03_fileinput_frontend", "label": "B03 File Input Frontend", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "B03 File Input Frontend", "community": 188, "community_name": "B03 File Input Frontend", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "code", "degree": 0}, {"id": "pages_b04_preprocess_backend", "label": "B04 PreProcess Backend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "B04 PreProcess Backend", "community": 189, "community_name": "B04 PreProcess Backend", "source_file": "pages/B04_PreProcess/B04_backend.md", "file_type": "code", "degree": 0}, {"id": "pages_b04_preprocess_frontend", "label": "B04 PreProcess Frontend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "B04 PreProcess Frontend", "community": 190, "community_name": "B04 PreProcess Frontend", "source_file": "pages/B04_PreProcess/B04_frontend.md", "file_type": "code", "degree": 0}, {"id": "pages_b08_designdetail_cad_blocks", "label": "B08 CAD Blocks Library", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "B08 CAD Blocks Library", "community": 192, "community_name": "B08 CAD Blocks Library", "source_file": "pages/B08_DesignDetail/B08_CAD_blocks.md", "file_type": "code", "degree": 0}, {"id": "pages_b08_designdetail_cad_table_entity", "label": "B08 CAD Table Entity", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "B08 CAD Table Entity", "community": 193, "community_name": "B08 CAD Table Entity", "source_file": "pages/B08_DesignDetail/B08_CAD_table_entity.md", "file_type": "code", "degree": 0}, {"id": "pages_b08_designdetail_cross_structure_sheets", "label": "B08 Cross Section Structure Sheets", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "B08 Cross Section Structure Sheets", "community": 194, "community_name": "B08 Cross Section Structure Sheets", "source_file": "pages/B08_DesignDetail/B08_cross_structure_sheets.md", "file_type": "code", "degree": 0}];
|
|
const RAW_EDGES = [{"from": "architecture_implementation_status", "to": "architecture_implementation_status_\ud604\uc7ac_\uad6c\ud604_\ud604\ud669_\uc18c\uc2a4_\uc77d\uae30_\uac10\uc0ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index", "to": "architecture_implementation_status", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_implementation_status_\ud604\uc7ac_\uad6c\ud604_\ud604\ud669_\uc18c\uc2a4_\uc77d\uae30_\uac10\uc0ac", "to": "architecture_implementation_status_\uad6c\ud604_\uc0c1\ud0dc_\uc6a9\uc5b4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_implementation_status_\ud604\uc7ac_\uad6c\ud604_\ud604\ud669_\uc18c\uc2a4_\uc77d\uae30_\uac10\uc0ac", "to": "architecture_implementation_status_\ub2e8\uacc4\ubcc4_\ud310\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_implementation_status_\ud604\uc7ac_\uad6c\ud604_\ud604\ud669_\uc18c\uc2a4_\uc77d\uae30_\uac10\uc0ac", "to": "architecture_implementation_status_\ubbf8\uacb0_\uc124\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_implementation_status_\ud604\uc7ac_\uad6c\ud604_\ud604\ud669_\uc18c\uc2a4_\uc77d\uae30_\uac10\uc0ac", "to": "architecture_implementation_status_\ubc18\ub4dc\uc2dc_\uc720\uc9c0\ud560_\uad6c\ubd84", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_implementation_status_\ud604\uc7ac_\uad6c\ud604_\ud604\ud669_\uc18c\uc2a4_\uc77d\uae30_\uac10\uc0ac", "to": "architecture_implementation_status_\ube44\uc6cc\ud06c\ud50c\ub85c_\uc601\uc5ed_\ud310\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_project_map", "to": "architecture_project_map_aislo_\ud504\ub85c\uc81d\ud2b8_\uc9c0\ub3c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index", "to": "architecture_project_map", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_frontend_b07_designdetail_\ud604\uc7ac_\ucc45\uc784", "to": "architecture_project_map", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_project_map_aislo_\ud504\ub85c\uc81d\ud2b8_\uc9c0\ub3c4", "to": "architecture_project_map_\uba85\uce6d_\ud310\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_project_map_aislo_\ud504\ub85c\uc81d\ud2b8_\uc9c0\ub3c4", "to": "architecture_project_map_\ud0d0\uc0c9_\uc21c\uc11c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_project_map_aislo_\ud504\ub85c\uc81d\ud2b8_\uc9c0\ub3c4", "to": "architecture_project_map_\ud604\uc7ac_\uba85\uce6d\uacfc_\ucc45\uc784", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_public_admin_map", "to": "architecture_public_admin_map_\uacf5\uac1c_\uc778\uc99d_\uad00\ub9ac_\uc601\uc5ed_\uc9c0\ub3c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index", "to": "architecture_public_admin_map", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_public_admin_map_\uacf5\uac1c_\uc778\uc99d_\uad00\ub9ac_\uc601\uc5ed_\uc9c0\ub3c4", "to": "architecture_public_admin_map_\uacf5\ud1b5_\uc758\uc874", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_public_admin_map_\uacf5\uac1c_\uc778\uc99d_\uad00\ub9ac_\uc601\uc5ed_\uc9c0\ub3c4", "to": "architecture_public_admin_map_\uc9c1\uc811_\uad6c\ud604_\uad00\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_shared_resources", "to": "architecture_shared_resources_\uacf5\uc720_\uc790\uc6d0_\uc601\ud5a5_\uc9c0\ub3c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index", "to": "architecture_shared_resources", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_shared_resources_\uacf5\uc720_\uc790\uc6d0_\uc601\ud5a5_\uc9c0\ub3c4", "to": "architecture_shared_resources_\ub2e8\uacc4\ubcc4_\uc9c1\uc811_\uc5f0\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_shared_resources_\uacf5\uc720_\uc790\uc6d0_\uc601\ud5a5_\uc9c0\ub3c4", "to": "architecture_shared_resources_\uc601\ud5a5_\ubd84\uc11d_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_workflow_data_flow", "to": "architecture_workflow_data_flow_b01_b09_workflow_\ub370\uc774\ud130_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_07", "to": "architecture_workflow_data_flow", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_quantity_cost_contract", "to": "architecture_workflow_data_flow", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index", "to": "architecture_workflow_data_flow", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_frontend_b07_designdetail_\ud604\uc7ac_\ucc45\uc784", "to": "architecture_workflow_data_flow", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_workflow_data_flow_b01_b09_workflow_\ub370\uc774\ud130_\ud750\ub984", "to": "architecture_workflow_data_flow_b04_b06_\uc790\ub3d9_\uacc4\uc0b0\uacfc_\uc7ac\uc124\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_workflow_data_flow_b01_b09_workflow_\ub370\uc774\ud130_\ud750\ub984", "to": "architecture_workflow_data_flow_\ub2e8\uacc4_\uad00\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_workflow_data_flow_b01_b09_workflow_\ub370\uc774\ud130_\ud750\ub984", "to": "architecture_workflow_data_flow_\uc0c1\ud0dc\uc640_\uc0b0\ucd9c\ubb3c_\ubb34\ud6a8\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "architecture_workflow_data_flow_b01_b09_workflow_\ub370\uc774\ud130_\ud750\ub984", "to": "architecture_workflow_data_flow_\uc815\ubcf8_\uc704\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework", "to": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework", "to": "concepts_a00_app_shell_framework_scaffold", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_dependencies", "to": "concepts_a00_app_shell_framework", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "to": "concepts_a00_app_shell_framework_app_shell_\uad6c\uc131\uc694\uc18c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "to": "concepts_a00_app_shell_framework_router_\ub77c\uc6b0\ud305_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "to": "concepts_a00_app_shell_framework_\uc138\ubd80_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "to": "concepts_a00_app_shell_framework_\uc778\uc99d_\uac00\ub4dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "to": "concepts_a00_app_shell_framework_\ud30c\uc77c_\uad6c\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_app_shell_\uad6c\uc131\uc694\uc18c", "to": "concepts_a00_app_shell_framework_\ud14c\ub9c8_\uc5b8\uc5b4_\uad00\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_app_shell_\uad6c\uc131\uc694\uc18c", "to": "concepts_a00_app_shell_framework_\ud5e4\ub354_\uad6c\uc131_64px_\ub192\uc774_sticky", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_scaffold", "to": "concepts_a00_app_shell_framework_scaffold_a00_common_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_scaffold_a00_common_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "to": "concepts_a00_app_shell_framework_scaffold_b_page_scaffold", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_scaffold_a00_common_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "to": "concepts_a00_app_shell_framework_scaffold_css_\uc778\uc81d\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_scaffold_a00_common_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "to": "concepts_a00_app_shell_framework_scaffold_\uc0ac\uc6a9\ucc98", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_scaffold_a00_common_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "to": "concepts_a00_app_shell_framework_scaffold_\uc885\uc18d\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_api_common", "to": "concepts_api_common_api_\uacf5\ud1b5_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_api_common", "to": "concepts_schema_common", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_api_common", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_api_common_api_\uacf5\ud1b5_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "to": "concepts_api_common_\uacf5\ud1b5_\uc624\ub958_\uc751\ub2f5_\ud3ec\ub9f7_\uc804_\ub77c\uc6b0\ud130", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_api_common_api_\uacf5\ud1b5_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "to": "concepts_api_common_\uc6cc\ud06c\ud50c\ub85c\uc6b0_\uc0c1\ud0dc_\uc870\ud68c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_api_common_api_\uacf5\ud1b5_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "to": "concepts_api_common_\ud3f4\ub9c1_\ud328\ud134_legacy_workflow_json_\uc124\uacc4_\ud604\uc7ac_\uad6c\ud604\uc740_workflow_state_api_\uc0ac\uc6a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac", "to": "concepts_auth_rbac_\uc778\uc99d_rbac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac", "to": "concepts_db_schema_users_auth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util", "to": "concepts_auth_rbac", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_otp_\ube44\ubc00\ubc88\ud638_\ubc0f_\ub514\ubc14\uc774\uc2a4_\uc2e0\ub8b0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uad8c\ud55c_\uac80\uc99d_\ud5ec\ud37c_b01_dashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\ub77c\uc6b0\ud305_\uac00\ub4dc_frontend_md_5_2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uc0ac\uc6a9\uc790_\uc0c1\ud0dc_\uc0dd\uba85\uc8fc\uae30", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uc0ac\uc6a9\ucc98_\uc5ed\ucc38\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uc138\uc158_\uc778\uc99d_backend_md_6_3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uc5ed\ud560_users_role", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uc778\uc99d_\uac31\uc2e0_\ubc0f_\ub9cc\ub8cc_\uc77c\uc6d0\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_b07_external_webcad_demos", "to": "concepts_b07_external_webcad_demos_b07_\uc678\ubd80_webcad_\ube44\uad50_\uc2e4\ud589\ud658\uacbd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_b07_external_webcad_demos_b07_\uc678\ubd80_webcad_\ube44\uad50_\uc2e4\ud589\ud658\uacbd", "to": "concepts_b07_external_webcad_demos_\uac80\uc99d_\uc0c1\ud0dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_b07_external_webcad_demos_b07_\uc678\ubd80_webcad_\ube44\uad50_\uc2e4\ud589\ud658\uacbd", "to": "concepts_b07_external_webcad_demos_\ub77c\uc774\uc120\uc2a4_\uc8fc\uc758", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_b07_external_webcad_demos_b07_\uc678\ubd80_webcad_\ube44\uad50_\uc2e4\ud589\ud658\uacbd", "to": "concepts_b07_external_webcad_demos_\uc2e4\ud589\uacfc_\uc885\ub8cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util", "to": "concepts_common_util_\uacf5\ud1b5_\uc720\ud2f8_common_util", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util", "to": "concepts_storage_paths", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_04", "to": "concepts_common_util", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_\uacf5\ud1b5_\uc720\ud2f8_common_util", "to": "concepts_common_util_\ub9ac\uc18c\uc2a4_\ubaa8\ub2c8\ud130\ub9c1_common_util_resource_monitor_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_\uacf5\ud1b5_\uc720\ud2f8_common_util", "to": "concepts_common_util_\uc774\uba54\uc77c_\ubc1c\uc1a1_common_util_email_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_common_util_project_delete", "to": "concepts_common_util_common_util_project_delete_common_util_project_delete_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_common_util_project_delete_common_util_project_delete_py", "to": "concepts_common_util_common_util_project_delete_\uc5ed\ucc38\uc870_\uc0ac\uc6a9\ucc98", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_common_util_project_delete_common_util_project_delete_py", "to": "concepts_common_util_common_util_project_delete_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_common_util_storage", "to": "concepts_common_util_common_util_storage_common_util_storage_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_common_util_storage_common_util_storage_py", "to": "concepts_common_util_common_util_storage_\uc5ed\ucc38\uc870_\uc0ac\uc6a9\ucc98", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_common_util_storage_common_util_storage_py", "to": "concepts_common_util_common_util_storage_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_common_util_workflow_state", "to": "concepts_common_util_common_util_workflow_state_common_util_workflow_state_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_common_util_workflow_state_common_util_workflow_state_py", "to": "concepts_common_util_common_util_workflow_state_\uc5ed\ucc38\uc870_\uc0ac\uc6a9\ucc98", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_common_util_workflow_state_common_util_workflow_state_py", "to": "concepts_common_util_common_util_workflow_state_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_08_29", "to": "concepts_completed_2026_08_29_2026_08_29_\uc644\ub8cc_\ubc18\uc601", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_01_followups", "to": "concepts_completed_2026_08_29", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_08_29_2026_08_29_\uc644\ub8cc_\ubc18\uc601", "to": "concepts_completed_2026_08_29_b03_\uc7ac\uc5c5\ub85c\ub4dc_b05_\ucd5c\uc2e0_\uc870\ud68c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_08_29_2026_08_29_\uc644\ub8cc_\ubc18\uc601", "to": "concepts_completed_2026_08_29_b05_b06_\uad6c\uc870\ubb3c_ui_\ud1b5\ud569", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_08_29_2026_08_29_\uc644\ub8cc_\ubc18\uc601", "to": "concepts_completed_2026_08_29_b07_b08_\uc21c\uc11c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_08_29_2026_08_29_\uc644\ub8cc_\ubc18\uc601", "to": "concepts_completed_2026_08_29_b07_cad_\uace0\uc815_\ucc99\ub3c4_\ud6a1\ub2e8_\uc7a5_\ubc30\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_08_29_2026_08_29_\uc644\ub8cc_\ubc18\uc601", "to": "concepts_completed_2026_08_29_b07_cad_\ud14c\ub9c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_08_29_2026_08_29_\uc644\ub8cc_\ubc18\uc601", "to": "concepts_completed_2026_08_29_b07_cad_\ud655\ub300_\ud32c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_08_29_2026_08_29_\uc644\ub8cc_\ubc18\uc601", "to": "concepts_completed_2026_08_29_\ubc30\uc218\uc2dc\uc124_\ucd94\ucc9c_\uae30\uc900", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_08_29_2026_08_29_\uc644\ub8cc_\ubc18\uc601", "to": "concepts_completed_2026_08_29_\ucd08\uae30\uac12_\ubcf4\uc804", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_08_29_2026_08_29_\uc644\ub8cc_\ubc18\uc601", "to": "concepts_completed_2026_08_29_\ucd08\uae30\ud654_\ubcf5\uc6d0_\uc2e4\uce21", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_01", "to": "concepts_completed_2026_09_01_2026_09_01_\uc644\ub8cc_b04_\uc9c0\uba74_\ucc98\ub9ac_b05_b06_\ubc30\uc218_\uc81c\uc5b4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_01_followups", "to": "concepts_completed_2026_09_01", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_01_2026_09_01_\uc644\ub8cc_b04_\uc9c0\uba74_\ucc98\ub9ac_b05_b06_\ubc30\uc218_\uc81c\uc5b4", "to": "concepts_completed_2026_09_01_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_01_2026_09_01_\uc644\ub8cc_b04_\uc9c0\uba74_\ucc98\ub9ac_b05_b06_\ubc30\uc218_\uc81c\uc5b4", "to": "concepts_completed_2026_09_01_\uc644\ub8cc_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_01_2026_09_01_\uc644\ub8cc_b04_\uc9c0\uba74_\ucc98\ub9ac_b05_b06_\ubc30\uc218_\uc81c\uc5b4", "to": "concepts_completed_2026_09_01_\uc800\uc7a5_\ud638\ud658_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_01_followups", "to": "concepts_completed_2026_09_01_followups_2026_09_01_\uc794\uc5ec_\uc644\ub8cc_\uccb4\ud06c_\uc815\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_01_followups", "to": "concepts_crs_metadata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_01_followups", "to": "concepts_drainage_watershed", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_01_followups_2026_09_01_\uc794\uc5ec_\uc644\ub8cc_\uccb4\ud06c_\uc815\ub9ac", "to": "concepts_completed_2026_09_01_followups_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_01_followups_2026_09_01_\uc794\uc5ec_\uc644\ub8cc_\uccb4\ud06c_\uc815\ub9ac", "to": "concepts_completed_2026_09_01_followups_\ubcf4\ub958_\uad6c\ubd84", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_02", "to": "concepts_completed_2026_09_02_2026_09_02_\uc644\ub8cc_\ud56d\ubaa9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_02_2026_09_02_\uc644\ub8cc_\ud56d\ubaa9", "to": "concepts_completed_2026_09_02_b05_\uad6c\uc870\ubb3c_3d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_02_2026_09_02_\uc644\ub8cc_\ud56d\ubaa9", "to": "concepts_completed_2026_09_02_b05_\uc885\ub2e8_\ud3b8\uc9d1_\ud6c4\uc18d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_02_2026_09_02_\uc644\ub8cc_\ud56d\ubaa9", "to": "concepts_completed_2026_09_02_cad", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_02_2026_09_02_\uc644\ub8cc_\ud56d\ubaa9", "to": "concepts_completed_2026_09_02_\ub178\uc120_\uc9c0\ud45c\uba74", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_02_2026_09_02_\uc644\ub8cc_\ud56d\ubaa9", "to": "concepts_completed_2026_09_02_\uc791\uc5c5_\ud658\uacbd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_02_2026_09_02_\uc644\ub8cc_\ud56d\ubaa9", "to": "concepts_completed_2026_09_02_\ud68c\uadc0_\uc0c1\ud0dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_03", "to": "concepts_completed_2026_09_03_2026_09_03_\uc644\ub8cc_\uc785\ub825_\ubc30\uc218_\uc885\ud6a1\ub2e8_cad", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_03_2026_09_03_\uc644\ub8cc_\uc785\ub825_\ubc30\uc218_\uc885\ud6a1\ub2e8_cad", "to": "concepts_completed_2026_09_03_\uacf5\ud1b5_\uacb0\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_03_2026_09_03_\uc644\ub8cc_\uc785\ub825_\ubc30\uc218_\uc885\ud6a1\ub2e8_cad", "to": "concepts_completed_2026_09_03_\uc644\ub8cc_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_03_additional", "to": "concepts_completed_2026_09_03_additional_2026_09_03_\ucd94\uac00_\uc644\ub8cc_\ud654\uba74_\uc885\ub2e8_\ud6a1\ub2e8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_03_additional_2026_09_03_\ucd94\uac00_\uc644\ub8cc_\ud654\uba74_\uc885\ub2e8_\ud6a1\ub2e8", "to": "concepts_completed_2026_09_03_additional_\uc644\ub8cc_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_03_additional_2026_09_03_\ucd94\uac00_\uc644\ub8cc_\ud654\uba74_\uc885\ub2e8_\ud6a1\ub2e8", "to": "concepts_completed_2026_09_03_additional_\ucd5c\uc2e0_\uacb0\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_04", "to": "concepts_completed_2026_09_04_2026_09_04_\uc644\ub8cc_\ud56d\ubaa9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_04", "to": "concepts_drainage_watershed", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_04", "to": "concepts_ui_templates", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_04_2026_09_04_\uc644\ub8cc_\ud56d\ubaa9", "to": "concepts_completed_2026_09_04_700\uc904_\uc81c\ud55c_\ubd84\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_04_2026_09_04_\uc644\ub8cc_\ud56d\ubaa9", "to": "concepts_completed_2026_09_04_\ubcf4\uc874\ub41c_\ubbf8\uc644\ub8cc_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_04_2026_09_04_\uc644\ub8cc_\ud56d\ubaa9", "to": "concepts_completed_2026_09_04_\uc0c1\uc2dc\uacc4\ud68d\uc11c_\ucd94\uac00_\uc644\ub8cc_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_04_2026_09_04_\uc644\ub8cc_\ud56d\ubaa9", "to": "concepts_completed_2026_09_04_\uc644\ub8cc_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_04_2026_09_04_\uc644\ub8cc_\ud56d\ubaa9", "to": "concepts_completed_2026_09_04_\ucd94\uac00_\uc644\ub8cc_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_07", "to": "concepts_completed_2026_09_07_2026_09_07_\uc644\ub8cc_\ubcf4\ub958_\uc694\uc57d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_07", "to": "concepts_quantity_cost_contract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_07", "to": "pages_b06_section_b06_backend", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_07", "to": "pages_b07_quantity_b07_frontend", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_07_2026_09_07_\uc644\ub8cc_\ubcf4\ub958_\uc694\uc57d", "to": "concepts_completed_2026_09_07_\uc131\ub2a5_\uc6b4\uc601_\uacb0\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_07_2026_09_07_\uc644\ub8cc_\ubcf4\ub958_\uc694\uc57d", "to": "concepts_completed_2026_09_07_\uc644\ub8cc_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_07_2026_09_07_\uc644\ub8cc_\ubcf4\ub958_\uc694\uc57d", "to": "concepts_completed_2026_09_07_\uc8fc\uc758", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_09", "to": "concepts_completed_2026_09_09_2026_09_09_\uc644\ub8cc_\uad6c\ud604_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_09", "to": "concepts_quantity_cost_contract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_09", "to": "concepts_standard_quantity_open_2026_09_09", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_09_2026_09_09_\uc644\ub8cc_\uad6c\ud604_\uac80\uc99d", "to": "concepts_completed_2026_09_09_b05_b06_\uc885\ud6a1\ub2e8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_09_2026_09_09_\uc644\ub8cc_\uad6c\ud604_\uac80\uc99d", "to": "concepts_completed_2026_09_09_b07_\ud45c\uc900\ub3c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_09_2026_09_09_\uc644\ub8cc_\uad6c\ud604_\uac80\uc99d", "to": "concepts_completed_2026_09_09_b08_\uc218\ub7c9\uc0b0\ucd9c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_09_2026_09_09_\uc644\ub8cc_\uad6c\ud604_\uac80\uc99d", "to": "concepts_completed_2026_09_09_b09_\uc6d0\uac00\uacc4\uc0b0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_completed_2026_09_09_2026_09_09_\uc644\ub8cc_\uad6c\ud604_\uac80\uc99d", "to": "concepts_completed_2026_09_09_\uac80\uc99d_\uacbd\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_crs_metadata", "to": "concepts_crs_metadata_crs_\uba54\ud0c0\ub370\uc774\ud130_\uc815\uc0c1\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_crs_metadata", "to": "concepts_dependencies", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_crs_metadata_crs_\uba54\ud0c0\ub370\uc774\ud130_\uc815\uc0c1\ud654", "to": "concepts_crs_metadata_\uac80\uc99d_\ubc94\uc704\uc640_\ubaa8\uc21c_\uc774\ub825", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_crs_metadata_crs_\uba54\ud0c0\ub370\uc774\ud130_\uc815\uc0c1\ud654", "to": "concepts_crs_metadata_\uac80\uc99d\ub41c_\ud310\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_crs_metadata_crs_\uba54\ud0c0\ub370\uc774\ud130_\uc815\uc0c1\ud654", "to": "concepts_crs_metadata_\ub370\uc774\ud130_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_crs_metadata_crs_\uba54\ud0c0\ub370\uc774\ud130_\uc815\uc0c1\ud654", "to": "concepts_crs_metadata_\uc0ac\uc6a9\ucc98", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface", "to": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_input_files_status_\uac12", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_input_files_\uc785\ub825_\uc6d0\ubcf8_\ud30c\uc77c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_processed_point_cloud_status_\uac12", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_processed_point_cloud_\ud544\ud130_\ubcc0\ud658_\ud3ec\uc778\ud2b8\ud074\ub77c\uc6b0\ub4dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_surface_models_status_\uac12", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_surface_models_\uc9c0\ud45c\uba74_\ubaa8\ub378_\ubc0f_\ub4f1\uace0\uc120", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_terrain_layers_\uc9c0\ud615_\ub808\uc774\uc5b4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_upload_chunks_\uc5c5\ub85c\ub4dc_\uccad\ud06c_\ub370\uc774\ud130", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_upload_sessions_\uc5c5\ub85c\ub4dc_\uc138\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring", "to": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_activity_logs_\uc0ac\uc6a9\uc790_\ud65c\ub3d9_\ub85c\uadf8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_audit_logs_\uac10\uc0ac_\ub85c\uadf8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_change_logs_\uc124\uacc4_\ubcc0\uacbd_\uc774\ub825", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_login_logs_\ub85c\uadf8\uc778_\uc2dc\ub3c4_\ub85c\uadf8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_support_requests_\uae30\uc220_\uc9c0\uc6d0_\uc694\uccad", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_system_admin_logs_\uc2dc\uc2a4\ud15c_\uad00\ub9ac\uc790_\ud589\uc704_\ub85c\uadf8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_system_audit_logs_\uc0ac\uc6a9\ucc98_b01_b02", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_system_audit_logs_\ud504\ub85c\uc81d\ud2b8_\uc870\uc9c1_\ubcc0\uacbd_\uac10\uc0ac_\ub85c\uadf8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_system_resources_\uc2dc\uc2a4\ud15c_\uc790\uc6d0_\uacc4\uce21", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_\ub9ac\uc18c\uc2a4_api_system_admin_\uc804\uc6a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview", "to": "concepts_db_schema_overview_db_\uc2a4\ud0a4\ub9c8_\uac1c\uc694", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths", "to": "concepts_db_schema_overview", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview_db_\uc2a4\ud0a4\ub9c8_\uac1c\uc694", "to": "concepts_db_schema_overview_\uc124\uacc4_\uc6d0\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview_db_\uc2a4\ud0a4\ub9c8_\uac1c\uc694", "to": "concepts_db_schema_overview_\ud14c\uc774\ube14_\uad00\uacc4_\ud575\uc2ec_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview_db_\uc2a4\ud0a4\ub9c8_\uac1c\uc694", "to": "concepts_db_schema_overview_\ud14c\uc774\ube14_\uadf8\ub8f9_9\uac1c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview_db_\uc2a4\ud0a4\ub9c8_\uac1c\uc694", "to": "concepts_db_schema_overview_\ud30c\uc77c_\uacbd\ub85c_\ucd94\uc801_\uceec\ub7fc_db\uc5d0_\uacbd\ub85c\ub9cc_\uae30\ub85d_\uc2e4_\ud30c\uc77c\uc740_\ud30c\uc77c\uc2dc\uc2a4\ud15c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_projects", "to": "concepts_db_schema_projects_db_\ud504\ub85c\uc81d\ud2b8_\uad00\ub9ac_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_projects_db_\ud504\ub85c\uc81d\ud2b8_\uad00\ub9ac_\ud14c\uc774\ube14", "to": "concepts_db_schema_projects_project_automations_\ud504\ub85c\uc81d\ud2b8_\uc790\ub3d9\ud654_\uc815\ucc45", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_projects_db_\ud504\ub85c\uc81d\ud2b8_\uad00\ub9ac_\ud14c\uc774\ube14", "to": "concepts_db_schema_projects_project_versions_\ud504\ub85c\uc81d\ud2b8_\ubc84\uc804_\uc2a4\ub0c5\uc0f7", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_projects_db_\ud504\ub85c\uc81d\ud2b8_\uad00\ub9ac_\ud14c\uc774\ube14", "to": "concepts_db_schema_projects_project_workflow_stages_\ub2e8\uacc4\ubcc4_\uc0c1\uc138_\uc0c1\ud0dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_projects_db_\ud504\ub85c\uc81d\ud2b8_\uad00\ub9ac_\ud14c\uc774\ube14", "to": "concepts_db_schema_projects_projects_\ud504\ub85c\uc81d\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile", "to": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_cross_sections_data_structures", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_cross_sections_\ud6a1\ub2e8\uba74_\uc124\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_longitudinal_sections_\uc885\ub2e8\uba74_\uc124\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_route_points_\uacbd\ub85c_\uc88c\ud45c\uc810", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_route_statistics_\ub178\uc120_\ud1b5\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_routes_status_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_routes_\ub178\uc120_\uacbd\ub85c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_longitudinal_sections_\uc885\ub2e8\uba74_\uc124\uacc4", "to": "concepts_db_schema_route_profile_data_\uceec\ub7fc_\ub0b4_options_\uc2a4\ub0c5\uc0f7_\uad6c\uc870_2026_07_19_\ub3c4\uc785", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_longitudinal_sections_\uc885\ub2e8\uba74_\uc124\uacc4", "to": "concepts_db_schema_route_profile_data_\uceec\ub7fc_\ub0b4_profile_alignment_\uad6c\uc870_2026_07_23_\ub3c4\uc785", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_longitudinal_alignment", "to": "concepts_db_schema_route_profile_longitudinal_alignment_db_longitudinal_sections_data_profile_alignment_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_structure_output", "to": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "to": "concepts_db_schema_structure_output_output_files_\uac1c\ubcc4_\uc0b0\ucd9c_\ud30c\uc77c_\ub9ac\uc2a4\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "to": "concepts_db_schema_structure_output_outputs_\ucd5c\uc885_\uacac\uc801_\ub3c4\uba74_\uc0b0\ucd9c_\uc138\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "to": "concepts_db_schema_structure_output_quantity_items_\uc218\ub7c9_\uc0b0\ucd9c_\ud56d\ubaa9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "to": "concepts_db_schema_structure_output_quantity_items_\ucd1d\ube44\uc6a9_\uacc4\uc0b0_\uc608", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "to": "concepts_db_schema_structure_output_structures_\ubc30\uce58_\uad6c\uc870\ubb3c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_unconfirmed_readme", "to": "concepts_db_schema_unconfirmed_readme_\ubbf8\ud655\uc815_\ud14c\uc774\ube14_\ubcf4\uad00\uc18c_unconfirmed_db_schemas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_unconfirmed_readme_\ubbf8\ud655\uc815_\ud14c\uc774\ube14_\ubcf4\uad00\uc18c_unconfirmed_db_schemas", "to": "concepts_db_schema_unconfirmed_readme_\uc6b4\uc601_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth", "to": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_companies_\ud68c\uc0ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_email_otps_\uc774\uba54\uc77c_otp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_join_requests_\ud68c\uc0ac_\uac00\uc785_\uc2e0\uccad", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_sessions_\uc138\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_trusted_devices_\uc2e0\ub8b0_\uae30\uae30", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_user_consents_\uc57d\uad00_\ub3d9\uc758", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_users_\uc0ac\uc6a9\uc790", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_dependencies", "to": "concepts_dependencies_\uc678\ubd80_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_dependencies", "to": "concepts_ui_templates", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_dependencies_\uc678\ubd80_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc758\uc874\uc131", "to": "concepts_dependencies_\ubc31\uc5d4\ub4dc_python_3_12_7", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_dependencies_\uc678\ubd80_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc758\uc874\uc131", "to": "concepts_dependencies_\uc120\uc815_\uc6d0\uce59_agent_md_3\uc808", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_dependencies_\uc678\ubd80_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc758\uc874\uc131", "to": "concepts_dependencies_\ud504\ub860\ud2b8\uc5d4\ub4dc_typescript_node_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design", "to": "concepts_design_\ub514\uc790\uc778_\uc2dc\uc2a4\ud15c_design_system", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design", "to": "concepts_ui_templates", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design_\ub514\uc790\uc778_\uc2dc\uc2a4\ud15c_design_system", "to": "concepts_design_\ub808\uc774\uc544\uc6c3_\ubc0f_\ub465\uadfc_\ud14c\ub450\ub9ac_radius_spacing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design_\ub514\uc790\uc778_\uc2dc\uc2a4\ud15c_design_system", "to": "concepts_design_\ube44\uc8fc\uc5bc_\ud14c\ub9c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design_\ub514\uc790\uc778_\uc2dc\uc2a4\ud15c_design_system", "to": "concepts_design_\uc804\uc5ed_\uc2a4\ud06c\ub864\ubc14_\ub514\uc790\uc778_scrollbars", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design_\ub514\uc790\uc778_\uc2dc\uc2a4\ud15c_design_system", "to": "concepts_design_\ud0c0\uc774\ud3ec\uadf8\ub798\ud53c_typography", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design_\ub514\uc790\uc778_\uc2dc\uc2a4\ud15c_design_system", "to": "concepts_design_\ud575\uc2ec_\uc0c9\uc0c1_\ud1a0\ud070_colors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design_data_lifecycle", "to": "concepts_design_data_lifecycle_\uc124\uacc4_\ub370\uc774\ud130_\uc0dd\uba85\uc8fc\uae30", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design_data_lifecycle", "to": "concepts_multi_environment_safety", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design_data_lifecycle", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design_data_lifecycle_\uc124\uacc4_\ub370\uc774\ud130_\uc0dd\uba85\uc8fc\uae30", "to": "concepts_design_data_lifecycle_\uacc4\uc0b0_\uad6c\ud604_\uc6d0\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design_data_lifecycle_\uc124\uacc4_\ub370\uc774\ud130_\uc0dd\uba85\uc8fc\uae30", "to": "concepts_design_data_lifecycle_\uacc4\ud68d\ub178\uc120_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_design_data_lifecycle_\uc124\uacc4_\ub370\uc774\ud130_\uc0dd\uba85\uc8fc\uae30", "to": "concepts_design_data_lifecycle_\uc815\ubcf8_\uc138_\ubc8c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_drainage_watershed", "to": "concepts_drainage_watershed_\ubc30\uc218\uc720\uc5ed_\ud574\uc11d_\ubc0f_\uc138\ubd80\uc124\uacc4_drainage_watershed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_las_free_sheet_surface", "to": "concepts_drainage_watershed", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_drainage_watershed_\ubc30\uc218\uc720\uc5ed_\ud574\uc11d_\ubc0f_\uc138\ubd80\uc124\uacc4_drainage_watershed", "to": "concepts_drainage_watershed_1_b04_vs_b05_\uc5ed\ud560_\ubd84\ub2f4_\ubc0f_\uc77c\uc6d0\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_drainage_watershed_\ubc30\uc218\uc720\uc5ed_\ud574\uc11d_\ubc0f_\uc138\ubd80\uc124\uacc4_drainage_watershed", "to": "concepts_drainage_watershed_2_\uacf5\uc6a9_\ubc30\uc218_\uc5d4\uc9c4_\ubc0f_wamis_\uac15\uc6b0\ub7c9_\uc5f0\ub3d9_phase_1_2_2026_08_13_\uad00\uce21\uc18c_\uc804\ud658", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_drainage_watershed_\ubc30\uc218\uc720\uc5ed_\ud574\uc11d_\ubc0f_\uc138\ubd80\uc124\uacc4_drainage_watershed", "to": "concepts_drainage_watershed_3_\uad6c\uc870\ubb3c_3\ub2e8_\uc635\uc158_\uccb4\uacc4_ui_phase_3_5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_drainage_watershed_\ubc30\uc218\uc720\uc5ed_\ud574\uc11d_\ubc0f_\uc138\ubd80\uc124\uacc4_drainage_watershed", "to": "concepts_drainage_watershed_4_\ud574\uc11d_\uc54c\uace0\ub9ac\uc998_\ub4f1\uace0\uc120_\ud558\uac15_contour_descent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_drainage_watershed_\ubc30\uc218\uc720\uc5ed_\ud574\uc11d_\ubc0f_\uc138\ubd80\uc124\uacc4_drainage_watershed", "to": "concepts_drainage_watershed_5_\uc801\uc0c9_\uccad\uc0c9_\ud310\uc815_\ubc0f_\uc720\uc5ed_\ud655\uc7a5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_drainage_watershed_\ubc30\uc218\uc720\uc5ed_\ud574\uc11d_\ubc0f_\uc138\ubd80\uc124\uacc4_drainage_watershed", "to": "concepts_drainage_watershed_6_\ud3c9\uade0_\ud750\ub984_\ud654\uc0b4\ud45c_flow_arrows_\ubc0f_\ud750\ub984\uac15\ub3c4_\ub7a8\ud504", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_drainage_watershed_\ubc30\uc218\uc720\uc5ed_\ud574\uc11d_\ubc0f_\uc138\ubd80\uc124\uacc4_drainage_watershed", "to": "concepts_drainage_watershed_7_\uc601\uad6c\uc800\uc7a5\uc18c_\uc0b0\ucd9c\ubb3c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_drainage_watershed_\ubc30\uc218\uc720\uc5ed_\ud574\uc11d_\ubc0f_\uc138\ubd80\uc124\uacc4_drainage_watershed", "to": "concepts_drainage_watershed_8_b08_\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_las_free_sheet_surface", "to": "concepts_las_free_sheet_surface_las_\uc5c6\ub294_\ub3c4\uc5fd\ub4f1\uace0\uc120_\uc11c\ud53c\uc2a4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_las_free_sheet_surface_las_\uc5c6\ub294_\ub3c4\uc5fd\ub4f1\uace0\uc120_\uc11c\ud53c\uc2a4", "to": "concepts_las_free_sheet_surface_e2e_\uacb0\uacfc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_las_free_sheet_surface_las_\uc5c6\ub294_\ub3c4\uc5fd\ub4f1\uace0\uc120_\uc11c\ud53c\uc2a4", "to": "concepts_las_free_sheet_surface_\uacc4\uc57d\uacfc_\ud655\uc815\uac12", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_las_free_sheet_surface_las_\uc5c6\ub294_\ub3c4\uc5fd\ub4f1\uace0\uc120_\uc11c\ud53c\uc2a4", "to": "concepts_las_free_sheet_surface_\ubbf8\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_las_free_sheet_surface_las_\uc5c6\ub294_\ub3c4\uc5fd\ub4f1\uace0\uc120_\uc11c\ud53c\uc2a4", "to": "concepts_las_free_sheet_surface_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_law_source_quality", "to": "concepts_law_source_quality_\uc784\ub3c4\uae30\uc220\uad50\ubcf8_\uc6d0\ubb38_md_\ucd94\ucd9c_\ud488\uc9c8_\uacb0\ud568", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_standard_drawing_cost_inputs", "to": "concepts_law_source_quality", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_law_source_quality_\uc784\ub3c4\uae30\uc220\uad50\ubcf8_\uc6d0\ubb38_md_\ucd94\ucd9c_\ud488\uc9c8_\uacb0\ud568", "to": "concepts_law_source_quality_\uacb0\ud568_\uc720\ud615_\uc608\uc2dc_\uc704_\ud30c\uc77c_\uae30\uc900_\uc904\ubc88\ud638", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_law_source_quality_\uc784\ub3c4\uae30\uc220\uad50\ubcf8_\uc6d0\ubb38_md_\ucd94\ucd9c_\ud488\uc9c8_\uacb0\ud568", "to": "concepts_law_source_quality_\uc6d0\uc778_\ucd94\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_law_source_quality_\uc784\ub3c4\uae30\uc220\uad50\ubcf8_\uc6d0\ubb38_md_\ucd94\ucd9c_\ud488\uc9c8_\uacb0\ud568", "to": "concepts_law_source_quality_\uc870\uce58_\uc0c1\ud0dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_law_source_quality_\uc784\ub3c4\uae30\uc220\uad50\ubcf8_\uc6d0\ubb38_md_\ucd94\ucd9c_\ud488\uc9c8_\uacb0\ud568", "to": "concepts_law_source_quality_\ud655\uc778_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_mass_haul_diagram", "to": "concepts_mass_haul_diagram_\uc720\ud1a0\uace1\uc120_mass_haul_diagram_\uacc4\uc0b0_\uba85\uc138", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_quantity_b08_overview_2026_09_b08_quantity_2026_09_\uc218\ub7c9\uc0b0\ucd9c", "to": "concepts_mass_haul_diagram", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_mass_haul_diagram_\uc720\ud1a0\uace1\uc120_mass_haul_diagram_\uacc4\uc0b0_\uba85\uc138", "to": "concepts_mass_haul_diagram_1_\uac1c\uc694_\ubc0f_\ubd84\uc11d_\ubaa9\uc801", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_mass_haul_diagram_\uc720\ud1a0\uace1\uc120_mass_haul_diagram_\uacc4\uc0b0_\uba85\uc138", "to": "concepts_mass_haul_diagram_2_\uc8fc\uc694_\uacc4\uc0b0_\uc218\uc2dd_\ubc0f_\uc6d0\ub9ac_\uc2e4\ubb34_\uad00\ub840_\ubc18\uc601", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_mass_haul_diagram_\uc720\ud1a0\uace1\uc120_mass_haul_diagram_\uacc4\uc0b0_\uba85\uc138", "to": "concepts_mass_haul_diagram_3_\uc9c0\ubc18\uc720\ud615\ubcc4_\ud1a0\ub7c9\ud658\uc0b0\uacc4\uc218_\uae30\ubcf8\uac12_config_system_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_mass_haul_diagram_\uc720\ud1a0\uace1\uc120_mass_haul_diagram_\uacc4\uc0b0_\uba85\uc138", "to": "concepts_mass_haul_diagram_4_\ud1a0\uacf5_\uc6b4\ubc18\uc7a5\ube44_\uc120\uc815\uac70\ub9ac_\ubc0f_\ubd84\ubc30_\uae30\uc900_config_system_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_mass_haul_diagram_\uc720\ud1a0\uace1\uc120_mass_haul_diagram_\uacc4\uc0b0_\uba85\uc138", "to": "concepts_mass_haul_diagram_5_\uc720\ud1a0\uace1\uc120_\uace1\uc120_\uc0ac\uc591_b06_\uad6c\ud604_v2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_mass_haul_diagram_\uc720\ud1a0\uace1\uc120_mass_haul_diagram_\uacc4\uc0b0_\uba85\uc138", "to": "concepts_mass_haul_diagram_6_\uc6f9\uc571_\uc5f0\ub3d9_\ubc0f_\uc2dc\uac01\ud654_\uba85\uc138_2026_08_02_\ud655\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_multi_environment_safety", "to": "concepts_multi_environment_safety_\ub2e4\uc911_\ud658\uacbd_\uc800\uc7a5\uc18c_\uacf5\uc6a9_db_\uc548\uc804", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_multi_environment_safety", "to": "concepts_storage_paths", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_multi_environment_safety", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_multi_environment_safety_\ub2e4\uc911_\ud658\uacbd_\uc800\uc7a5\uc18c_\uacf5\uc6a9_db_\uc548\uc804", "to": "concepts_multi_environment_safety_\uc5ec\uc12f_\uc6cc\ud06c\ud2b8\ub9ac_\uc6b4\uc601_\ud655\uc815\ud310", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_multi_environment_safety_\ub2e4\uc911_\ud658\uacbd_\uc800\uc7a5\uc18c_\uacf5\uc6a9_db_\uc548\uc804", "to": "concepts_multi_environment_safety_\uc644\ub8cc_\ud310\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_multi_environment_safety_\ub2e4\uc911_\ud658\uacbd_\uc800\uc7a5\uc18c_\uacf5\uc6a9_db_\uc548\uc804", "to": "concepts_multi_environment_safety_\uc6b4\uc601_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_multi_environment_safety_\ub2e4\uc911_\ud658\uacbd_\uc800\uc7a5\uc18c_\uacf5\uc6a9_db_\uc548\uc804", "to": "concepts_multi_environment_safety_\uc7ac\uacc4\uc0b0_\uc601\ud5a5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_multi_environment_safety_\ub2e4\uc911_\ud658\uacbd_\uc800\uc7a5\uc18c_\uacf5\uc6a9_db_\uc548\uc804", "to": "concepts_multi_environment_safety_\ud655\uc778\ub41c_\uc704\ud5d8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_quantity_cost_contract", "to": "concepts_quantity_cost_contract_b08_\uc218\ub7c9_b09_\uc6d0\uac00_\uacc4\uc57d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_standard_drawing_cost_inputs", "to": "concepts_quantity_cost_contract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_standard_drawings_2026_09_b07_\uad6c\uc870\ubb3c_\ud45c\uc900\ub3c4_\uc870\uc0ac_\ud569\uc758\uc640_\ud604\uc7ac_\ud1b5\ub85c", "to": "concepts_quantity_cost_contract", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_quantity_cost_contract_b08_\uc218\ub7c9_b09_\uc6d0\uac00_\uacc4\uc57d", "to": "concepts_quantity_cost_contract_\uae08\uc9c0_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_quantity_cost_contract_b08_\uc218\ub7c9_b09_\uc6d0\uac00_\uacc4\uc57d", "to": "concepts_quantity_cost_contract_\uc800\uc7a5_\uc778\uacc4_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_quantity_cost_contract_b08_\uc218\ub7c9_b09_\uc6d0\uac00_\uacc4\uc57d", "to": "concepts_quantity_cost_contract_\ucc45\uc784_\uacbd\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_schema_common", "to": "concepts_schema_common_\uacf5\ud1b5_\uc2a4\ud0a4\ub9c8_pydantic_\uc694\uccad_\uc751\ub2f5_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_schema_common_\uacf5\ud1b5_\uc2a4\ud0a4\ub9c8_pydantic_\uc694\uccad_\uc751\ub2f5_\uaddc\uce59", "to": "concepts_schema_common_\uac80\uc99d_\uc6d0\uce59_backend_md_4\uc808", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_schema_common_\uacf5\ud1b5_\uc2a4\ud0a4\ub9c8_pydantic_\uc694\uccad_\uc751\ub2f5_\uaddc\uce59", "to": "concepts_schema_common_\uba85\uba85_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_standard_drawing_cost_inputs", "to": "concepts_standard_drawing_cost_inputs_\ud45c\uc900\ub3c4_\uc218\ub7c9_\uc6d0\uac00_\uc785\ub825\uc758_\ubbf8\uacb0_\uacbd\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_standard_quantity_open_2026_09_09", "to": "concepts_standard_drawing_cost_inputs", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_standard_drawings_2026_09_b07_\uad6c\uc870\ubb3c_\ud45c\uc900\ub3c4_\uc870\uc0ac_\ud569\uc758\uc640_\ud604\uc7ac_\ud1b5\ub85c", "to": "concepts_standard_drawing_cost_inputs", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_standard_drawing_cost_inputs_\ud45c\uc900\ub3c4_\uc218\ub7c9_\uc6d0\uac00_\uc785\ub825\uc758_\ubbf8\uacb0_\uacbd\uacc4", "to": "concepts_standard_drawing_cost_inputs_\uc0ac\uc6a9\uc790_\uc790\ub8cc_\ub300\uae30", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_standard_drawing_cost_inputs_\ud45c\uc900\ub3c4_\uc218\ub7c9_\uc6d0\uac00_\uc785\ub825\uc758_\ubbf8\uacb0_\uacbd\uacc4", "to": "concepts_standard_drawing_cost_inputs_\uc7ac\uc870\uc0ac\ub85c_\ubc14\ub010_\ud310\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_standard_drawing_cost_inputs_\ud45c\uc900\ub3c4_\uc218\ub7c9_\uc6d0\uac00_\uc785\ub825\uc758_\ubbf8\uacb0_\uacbd\uacc4", "to": "concepts_standard_drawing_cost_inputs_\ud655\uc778\ub41c_\ubd84\ub958", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_standard_quantity_open_2026_09_09", "to": "concepts_standard_quantity_open_2026_09_09_2026_09_09_\ud45c\uc900\ub3c4_\uc218\ub7c9_\ubbf8\uacb0_\uadfc\uac70", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_standard_quantity_open_2026_09_09_2026_09_09_\ud45c\uc900\ub3c4_\uc218\ub7c9_\ubbf8\uacb0_\uadfc\uac70", "to": "concepts_standard_quantity_open_2026_09_09_\uc5f0\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_standard_quantity_open_2026_09_09_2026_09_09_\ud45c\uc900\ub3c4_\uc218\ub7c9_\ubbf8\uacb0_\uadfc\uac70", "to": "concepts_standard_quantity_open_2026_09_09_\uc801\uc6a9_\uc6d0\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_standard_quantity_open_2026_09_09_2026_09_09_\ud45c\uc900\ub3c4_\uc218\ub7c9_\ubbf8\uacb0_\uadfc\uac70", "to": "concepts_standard_quantity_open_2026_09_09_\uc8fc\uc694_\ubbf8\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths", "to": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "to": "concepts_storage_paths_db_\uceec\ub7fc_\uc2e4\uc81c_\uacbd\ub85c_\ub9e4\ud551", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "to": "concepts_storage_paths_\uacbd\ub85c_\ud328\ud134", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "to": "concepts_storage_paths_\uc6d0\uce59_backend_md_3\uc808", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "to": "concepts_storage_paths_\ucf54\ub4dc_\uac10\uc0ac_\uc8fc\uc758\uc0ac\ud56d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "to": "concepts_storage_paths_\ud30c\uc77c\uba85_\uaddc\uce59_structure_md_1\uc808", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_temp_upload", "to": "concepts_temp_upload_temp_upload_\ud504\ub85c\uc81d\ud2b8_\uc0dd\uc131_\uc804_\uc784\uc2dc_\ubcf4\uad00\ud568", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_temp_upload_temp_upload_\ud504\ub85c\uc81d\ud2b8_\uc0dd\uc131_\uc804_\uc784\uc2dc_\ubcf4\uad00\ud568", "to": "concepts_temp_upload_\uc0ac\uc6a9\ucc98", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_temp_upload_temp_upload_\ud504\ub85c\uc81d\ud2b8_\uc0dd\uc131_\uc804_\uc784\uc2dc_\ubcf4\uad00\ud568", "to": "concepts_temp_upload_\uc8fc\uc694_\uac1c\ub150_\ubc0f_\uc2a4\ud399", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_temp_upload_temp_upload_\ud504\ub85c\uc81d\ud2b8_\uc0dd\uc131_\uc804_\uc784\uc2dc_\ubcf4\uad00\ud568", "to": "concepts_temp_upload_\uc8fc\uc694_\uad6c\uc131_\uc694\uc18c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates", "to": "concepts_ui_templates_ui_templates_localization_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_theme_css_\uc2a4\ud0c0\uc77c_\ubcc0\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_ui_template_elements_ts_\uacf5\ud1b5_\uc5d8\ub9ac\uba3c\ud2b8_\ud15c\ud50c\ub9bf", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_ui_template_general_blocks_ts_\uc77c\ubc18\uc5c5\ubb34_\uacf5\uc6a9_\ube14\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_ui_template_general_layout_ts_\uc77c\ubc18\uc5c5\ubb34_\ub808\uc774\uc544\uc6c3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_ui_template_locale_ts_\ub2e4\uad6d\uc5b4_\uad00\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_ui_template_overlay_ts_\uc624\ubc84\ub808\uc774_\ucef4\ud3ec\ub10c\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_ui_template_palette_ts_\uc9c0\ub3c4_\ud314\ub808\ud2b8_\uce90\uc2f1_\uc720\ud2f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_ui_template_resizer_ts_\ud328\ub110_\ub9ac\uc0ac\uc774\uc800_\ud15c\ud50c\ub9bf", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_ui_template_workflow_layout_ts_\uc5d4\uc9c0\ub2c8\uc5b4\ub9c1_\ub808\uc774\uc544\uc6c3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_\ub0a8\uc740_\ud30c\uc77c_\ud55c\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_\uc81c\uc57d_backend_md_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state", "to": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac", "to": "concepts_workflow_state_r1_\uc6cc\ud06c\ud50c\ub85c\uc6b0_\ub2e8\uacc4_\uc7ac\ud3b8_2026_08_08_\ubc18\uc601", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac", "to": "concepts_workflow_state_ssot_project_workflow_stages_\ud14c\uc774\ube14_\uc2e4_db_\ud655\uc778", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac", "to": "concepts_workflow_state_\uacf5\ud1b5_\uc720\ud2f8_common_util_common_util_workflow_state_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac", "to": "concepts_workflow_state_\ubb34\ud6a8\ud654\uc758_\uc2e4\uc81c_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac", "to": "concepts_workflow_state_\ubc31\uadf8\ub77c\uc6b4\ub4dc_\uc790\ub3d9_\uacc4\uc0b0_\uccb4\uc778_\ubc0f_\uc0ac\uc6a9\uc790_\uc124\uc815_\uc774\uc6d4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac", "to": "concepts_workflow_state_\uc870\ud68c_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac", "to": "concepts_workflow_state_\ud504\ub860\ud2b8\uc5d4\ub4dc_\uac8c\uc774\ud305_\ubc0f_\uc2a4\ud15d\ubc14_\uc5f0\ub3d9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c", "to": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c_q_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c_q_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c", "to": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c_answer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c_q_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c", "to": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c_outcome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c_q_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c", "to": "graphify_out_memory_query_20260821_070423_\ubc30\uc218\uad00_\ub9e4\uc124\uc2dc_\uac01\ub3c4\uc758_\uc81c\uc57d\uc870\uac74\uc774_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_\uc784\ub3c4\uc5d0\uc11c_source_nodes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918", "to": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_q_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_q_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918", "to": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_answer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_q_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918", "to": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_outcome", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_q_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918", "to": "graphify_out_memory_query_20260821_101018_\uc784\ub3c4_\uae30\uc220\uc815\ubcf4db\uc5d0\uc11c_\uc9d1\uc218\uc815\uc758_\ud615\ud0dc\uc815\ubcf4\ub294_\uc5b4\ub5a4\uac8c_\uc788\ub294\uc9c0_\ud655\uc778\ud574\uc918_source_nodes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index", "to": "index_wiki_index", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_wiki_index", "to": "index_\uacf5\ud1b5_\uac1c\ub150", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_wiki_index", "to": "index_\ub85c\uadf8\uc778_\uc804_\uad00\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_wiki_index", "to": "index_\ub85c\uadf8\uc778_\ud6c4_\uae30\ub2a5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_wiki_index", "to": "index_\uc6b0\uc120_\uc9c4\uc785\uc810", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_wiki_index", "to": "index_\ud604\uc7ac_\uc8fc\uc758\uc0ac\ud56d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a00_common_a00_common", "to": "pages_a00_common_a00_common_a00_common_\uacf5\ud1b5_\ud504\ub808\uc784\uc6cc\ud06c_\uc720\ud2f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a00_common_a00_common_a00_common_\uacf5\ud1b5_\ud504\ub808\uc784\uc6cc\ud06c_\uc720\ud2f8", "to": "pages_a00_common_a00_common_\uac1c\uc694", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a00_common_a00_common_a00_common_\uacf5\ud1b5_\ud504\ub808\uc784\uc6cc\ud06c_\uc720\ud2f8", "to": "pages_a00_common_a00_common_\uc138\ubd84\ud654_\ub9c8\ud06c\ub2e4\uc6b4_\ubb38\uc11c_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a00_common_frontend_a00_common_appshell", "to": "pages_a00_common_frontend_a00_common_appshell_app_shell_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a00_common_frontend_a00_common_appshell_app_shell_ts", "to": "pages_a00_common_frontend_a00_common_appshell_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a00_common_frontend_a00_common_appshell_app_shell_ts", "to": "pages_a00_common_frontend_a00_common_appshell_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a00_common_frontend_a00_common_router", "to": "pages_a00_common_frontend_a00_common_router_router_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a00_common_frontend_a00_common_router_router_ts", "to": "pages_a00_common_frontend_a00_common_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a00_common_frontend_a00_common_router_router_ts", "to": "pages_a00_common_frontend_a00_common_router_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_components", "to": "pages_a01_home_a01_components_a01_home_\uc138\ubd80_\uad6c\ud604", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_components_a01_home_\uc138\ubd80_\uad6c\ud604", "to": "pages_a01_home_a01_components_\ub370\uc774\ud130_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_components_a01_home_\uc138\ubd80_\uad6c\ud604", "to": "pages_a01_home_a01_components_\ubbf8\ud574\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_components_a01_home_\uc138\ubd80_\uad6c\ud604", "to": "pages_a01_home_a01_components_\uc2a4\ud0c0\uc77c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_components_a01_home_\uc138\ubd80_\uad6c\ud604", "to": "pages_a01_home_a01_components_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend", "to": "pages_a01_home_a01_frontend_a01_home_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_a01_home_frontend", "to": "pages_a01_home_a01_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_a01_home_frontend", "to": "pages_a01_home_a01_frontend_\uc138\ubd80_\uad6c\ud604", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_a01_home_frontend", "to": "pages_a01_home_a01_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_a01_home_frontend", "to": "pages_a01_home_a01_frontend_\ucef4\ud3ec\ub10c\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_a01_home_frontend", "to": "pages_a01_home_a01_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_\ucef4\ud3ec\ub10c\ud2b8", "to": "pages_a01_home_a01_frontend_hero_\uc139\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_\ucef4\ud3ec\ub10c\ud2b8", "to": "pages_a01_home_a01_frontend_\uc8fc\uc694_\uae30\ub2a5_\uc139\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_\ucef4\ud3ec\ub10c\ud2b8", "to": "pages_a01_home_a01_frontend_\ucd5c\uc2e0_\uc18c\uc2dd_\uc139\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_frontend_a01_home_ui_page", "to": "pages_a01_home_frontend_a01_home_ui_page_a01_home_ui_page_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_frontend_a01_home_ui_page_a01_home_ui_page_ts", "to": "pages_a01_home_frontend_a01_home_ui_page_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_frontend_a01_home_ui_page_a01_home_ui_page_ts", "to": "pages_a01_home_frontend_a01_home_ui_page_\uc8fc\uc694_\ud568\uc218_\ubc0f_\uc778\ud130\ud398\uc774\uc2a4_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_components", "to": "pages_a02_progdetail_a02_components_a02_progdetail_\uc138\ubd80_\uad6c\ud604", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_components_a02_progdetail_\uc138\ubd80_\uad6c\ud604", "to": "pages_a02_progdetail_a02_components_\ub370\uc774\ud130_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_components_a02_progdetail_\uc138\ubd80_\uad6c\ud604", "to": "pages_a02_progdetail_a02_components_\ubbf8\ud574\uacb0_\ud2b9\uc774\uc0ac\ud56d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_components_a02_progdetail_\uc138\ubd80_\uad6c\ud604", "to": "pages_a02_progdetail_a02_components_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_components_a02_progdetail_\uc138\ubd80_\uad6c\ud604", "to": "pages_a02_progdetail_a02_components_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_frontend", "to": "pages_a02_progdetail_a02_frontend_a02_progdetail_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_frontend_a02_progdetail_frontend", "to": "pages_a02_progdetail_a02_frontend_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_frontend_a02_progdetail_frontend", "to": "pages_a02_progdetail_a02_frontend_\uc138\ubd80_\uad6c\ud604", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_frontend_a02_progdetail_frontend", "to": "pages_a02_progdetail_a02_frontend_\uc81c\uc57d_\uc900\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_frontend_a02_progdetail_frontend", "to": "pages_a02_progdetail_a02_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ubd84\uc11d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_frontend_a02_progdetail_ui_page", "to": "pages_a02_progdetail_frontend_a02_progdetail_ui_page_a02_progdetail_ui_page_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_frontend_a02_progdetail_ui_page_a02_progdetail_ui_page_ts", "to": "pages_a02_progdetail_frontend_a02_progdetail_ui_page_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_frontend_a02_progdetail_ui_page_a02_progdetail_ui_page_ts", "to": "pages_a02_progdetail_frontend_a02_progdetail_ui_page_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend", "to": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "to": "pages_a03_compdetail_a03_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "to": "pages_a03_compdetail_a03_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "to": "pages_a03_compdetail_a03_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "to": "pages_a03_compdetail_a03_frontend_\ucef4\ud3ec\ub10c\ud2b8_\uc139\uc158_\ube4c\ub354", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "to": "pages_a03_compdetail_a03_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_\uc2a4\ud0c0\uc77c_css", "to": "pages_a03_compdetail_a03_frontend_css_\ud074\ub798\uc2a4_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_\uc2a4\ud0c0\uc77c_css", "to": "pages_a03_compdetail_a03_frontend_\ubc18\uc751\ud615", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend", "to": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_mock_\ub370\uc774\ud130_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_\ubbf8\ud574\uacb0_\uc0ac\ud56d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_\ucef4\ud3ec\ub10c\ud2b8_\uc139\uc158_\ube4c\ub354", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_\uc2a4\ud0c0\uc77c_css", "to": "pages_a04_newshistory_a04_frontend_css_\ud074\ub798\uc2a4_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_\uc2a4\ud0c0\uc77c_css", "to": "pages_a04_newshistory_a04_frontend_\ubc18\uc751\ud615", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend", "to": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "to": "pages_a05_edudetail_a05_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "to": "pages_a05_edudetail_a05_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "to": "pages_a05_edudetail_a05_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "to": "pages_a05_edudetail_a05_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "to": "pages_a05_edudetail_a05_frontend_\ucef4\ud3ec\ub10c\ud2b8_\uc139\uc158_\ube4c\ub354", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "to": "pages_a05_edudetail_a05_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_\uc2a4\ud0c0\uc77c_css", "to": "pages_a05_edudetail_a05_frontend_css_\ud074\ub798\uc2a4_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_\uc2a4\ud0c0\uc77c_css", "to": "pages_a05_edudetail_a05_frontend_\ubc18\uc751\ud615", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend", "to": "pages_a06_login_a06_backend_a06_login_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\ub0b4\ubd80_\ud5ec\ud37c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\ub85c\uadf8\uc778_\ub85c\uc9c1_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\ubcf4\uc548_\uc815\ucc45_\uc2e4_\ucf54\ub4dc_\uae30\uc900", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend", "to": "pages_a06_login_a06_frontend_a06_login_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\uc81c\ucd9c_\ubc0f_otp_\uc81c\uc5b4_\ub85c\uc9c1_2\ub2e8\uacc4_\ud3fc_\uc804\ud658", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_backend_a06_login_router", "to": "pages_a06_login_backend_a06_login_router_a06_login_router_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_backend_a06_login_router_a06_login_router_py", "to": "pages_a06_login_backend_a06_login_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud5ec\ud37c_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_backend_a06_login_router_a06_login_router_py", "to": "pages_a06_login_backend_a06_login_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend", "to": "pages_a07_register_a07_backend_a07_register_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend_a07_register_backend", "to": "pages_a07_register_a07_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend_a07_register_backend", "to": "pages_a07_register_a07_backend_\uac00\uc785_\ub85c\uc9c1_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend_a07_register_backend", "to": "pages_a07_register_a07_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend_a07_register_backend", "to": "pages_a07_register_a07_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend_a07_register_backend", "to": "pages_a07_register_a07_backend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend_a07_register_backend", "to": "pages_a07_register_a07_backend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend", "to": "pages_a07_register_a07_frontend_a07_register_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\uc57d\uad00_\ub3d9\uc758_\uc544\ucf54\ub514\uc5b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\uc81c\ucd9c_\ub85c\uc9c1_2\ub2e8\uacc4_\ud3fc_\uc804\ud658", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218_ui_auth_page_\uc2e4\uc0ac\uc6a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_backend_a07_register_router", "to": "pages_a07_register_backend_a07_register_router_a07_register_router_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_backend_a07_register_router_a07_register_router_py", "to": "pages_a07_register_backend_a07_register_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_backend_a07_register_router_a07_register_router_py", "to": "pages_a07_register_backend_a07_register_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend", "to": "pages_a08_support_a08_backend_a08_support_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_db_\uc800\uc7a5_\uceec\ub7fc_\uc2e4_\ucf54\ub4dc_insert_\uae30\uc900", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_\ub0b4\ubd80_\ud5ec\ud37c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_\uc811\uc218_\ub85c\uc9c1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_\ud2b9\uc9d5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend", "to": "pages_a08_support_a08_frontend_a08_support_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\uc138\uc158_\uc790\ub3d9_\ucc44\uc6c0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\uc81c\ucd9c_\ub85c\uc9c1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_backend_a08_support_router", "to": "pages_a08_support_backend_a08_support_router_a08_support_router_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_backend_a08_support_router_a08_support_router_py", "to": "pages_a08_support_backend_a08_support_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_backend_a08_support_router_a08_support_router_py", "to": "pages_a08_support_backend_a08_support_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend", "to": "pages_a09_security_a09_backend_a09_security_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_db_\uc800\uc7a5_activity_logs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_\uad8c\ud55c_\ud5ec\ud37c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "to": "pages_a09_security_a09_backend_\ub9c8\uc2a4\ud130_\ud68c\uc0ac_\uad00\ub9ac\uc790_\uc804\uc6a9_require_master", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "to": "pages_a09_security_a09_backend_\uc2dc\uc2a4\ud15c_\uad00\ub9ac\uc790_\uc804\uc6a9_require_system_admin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "to": "pages_a09_security_a09_backend_\uc778\uc99d_\uc0ac\uc6a9\uc790_\uacf5\ud1b5_verify_session", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend", "to": "pages_a09_security_a09_frontend_a09_security_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218_\ubbf8\uc0ac\uc6a9_\uc815\uc758\ub9cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\uc57d\uad00_\ub370\uc774\ud130_a09_security_terms_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\uc57d\uad00_\ud14d\uc2a4\ud2b8\uc640_\uc2e4_\ucf54\ub4dc_\ubd88\uc77c\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_backend_a09_security_router", "to": "pages_a09_security_backend_a09_security_router_a09_security_router_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_backend_a09_security_router_a09_security_router_py", "to": "pages_a09_security_backend_a09_security_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_backend_a09_security_router_a09_security_router_py", "to": "pages_a09_security_backend_a09_security_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_api", "to": "pages_b01_dashboard_b01_api_b01_dashboard_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_api_b01_dashboard_api", "to": "pages_b01_dashboard_b01_api_\uc0ac\uc6a9\uc790_\ud68c\uc0ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_api_b01_dashboard_api", "to": "pages_b01_dashboard_b01_api_\uc2dc\uc2a4\ud15c_\uad00\ub9ac\uc790", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_api_b01_dashboard_api", "to": "pages_b01_dashboard_b01_api_\ud504\ub85c\uc81d\ud2b8_\uc790\ub3d9\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_api_b01_dashboard_api", "to": "pages_b01_dashboard_b01_api_\ud68c\uc0ac_\uad00\ub9ac\uc790", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_backend", "to": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "to": "pages_b01_dashboard_b01_backend_\uae30\uc220\ubd80\ucc44", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "to": "pages_b01_dashboard_b01_backend_\ub77c\uc6b0\ud130_\uad8c\ud55c_\ud5ec\ud37c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "to": "pages_b01_dashboard_b01_backend_\uc138\ubd84\ud654_\ubc31\uc5d4\ub4dc_\uc704\ud0a4_\uba85\uc138", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "to": "pages_b01_dashboard_b01_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "to": "pages_b01_dashboard_b01_backend_\uc800\uc7a5\uc18c_\ubc0f_\uc0ad\uc81c_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_db", "to": "pages_b01_dashboard_b01_db_b01_dashboard_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_db_b01_dashboard_db_\uc0ac\uc6a9_\uad00\uacc4", "to": "pages_b01_dashboard_b01_db_\ud2b8\ub79c\uc7ad\uc158_\uacbd\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_dependencies", "to": "pages_b01_dashboard_b01_dependencies_b01_dashboard_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_dependencies_b01_dashboard_dependencies", "to": "pages_b01_dashboard_b01_dependencies_\ud504\ub85c\uc81d\ud2b8_\uacf5\ud1b5_\ubaa8\ub4c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend", "to": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "to": "pages_b01_dashboard_b01_frontend_ui_\uad8c\ud55c_\ud5ec\ud37c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "to": "pages_b01_dashboard_b01_frontend_\uacf5\uc720_\uc790\uc6d0_\uc5f0\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "to": "pages_b01_dashboard_b01_frontend_\ubaa8\ub2ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "to": "pages_b01_dashboard_b01_frontend_\ubd84\ud560\ub41c_ui_\ucef4\ud3ec\ub10c\ud2b8_\ud30c\uc77c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "to": "pages_b01_dashboard_b01_frontend_\ud30c\uc77c\uacfc_\uc9c4\uc785\uc810", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_backend_b01_dashboard_router", "to": "pages_b01_dashboard_backend_b01_dashboard_router_b01_dashboard_router_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_backend_b01_dashboard_router_b01_dashboard_router_py", "to": "pages_b01_dashboard_backend_b01_dashboard_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_backend_b01_dashboard_router_b01_dashboard_router_py", "to": "pages_b01_dashboard_backend_b01_dashboard_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_frontend_b01_dashboard_ui_page", "to": "pages_b01_dashboard_frontend_b01_dashboard_ui_page_b01_dashboard_ui_page_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_frontend_b01_dashboard_ui_page_b01_dashboard_ui_page_ts", "to": "pages_b01_dashboard_frontend_b01_dashboard_ui_page_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_frontend_b01_dashboard_ui_page_b01_dashboard_ui_page_ts", "to": "pages_b01_dashboard_frontend_b01_dashboard_ui_page_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend", "to": "pages_b02_projregister_b02_backend_b02_projregister_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_db_\uc800\uc7a5_\uceec\ub7fc_projects_insert", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_\uc0dd\uc131_\ub85c\uc9c1_create_project_\ud2b8\ub79c\uc7ad\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_\uc694\uccad_\uc751\ub2f5_\uc2a4\ud0a4\ub9c8_pydantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_db", "to": "pages_b02_projregister_b02_db_b02_projregister_db", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_db_b02_projregister_db", "to": "pages_b02_projregister_b02_db_\uc4f0\ub294_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_db_b02_projregister_db", "to": "pages_b02_projregister_b02_db_\uc800\uc7a5\uc18c_\ud30c\uc77c\uc2dc\uc2a4\ud15c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_db_b02_projregister_db", "to": "pages_b02_projregister_b02_db_\ucc38\uace0_\uacc4\ud68d_\ub2f9\uc2dc_\uc758\ub3c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend", "to": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\uc785\ub825_\ud544\ub4dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\uc81c\ucd9c_\ub85c\uc9c1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_backend_b02_projregister_router", "to": "pages_b02_projregister_backend_b02_projregister_router_b02_projregister_router_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_backend_b02_projregister_router_b02_projregister_router_py", "to": "pages_b02_projregister_backend_b02_projregister_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_backend_b02_projregister_router_b02_projregister_router_py", "to": "pages_b02_projregister_backend_b02_projregister_router_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_fileinput_plan_lidar_multi_file", "to": "pages_b03_fileinput_b03_fileinput_plan_lidar_multi_file_b03_\ub2e4\uc911_\ub77c\uc774\ub2e4_\ud30c\uc77c_\ub300\uc6a9\ub7c9_\ucc98\ub9ac_\ubcf4\ub958_\uacc4\ud68d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_api", "to": "pages_b03_fileinput_b03_api_b03_fileinput_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_api_b03_fileinput_api", "to": "pages_b03_fileinput_b03_api_workflow_\uc870\ud68c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_api_b03_fileinput_api", "to": "pages_b03_fileinput_b03_api_\uc77c\ubc18_\uc5c5\ub85c\ub4dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_api_b03_fileinput_api", "to": "pages_b03_fileinput_b03_api_\uccad\ud06c_\uc5c5\ub85c\ub4dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend", "to": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "to": "pages_b03_fileinput_b03_backend_workflow_\uc54c\ub9bc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "to": "pages_b03_fileinput_b03_backend_\uba54\ud0c0\ub370\uc774\ud130_\ubd84\uc11d_\ubc0f_\ud30c\uc77c_\uc9c0\ubb38", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "to": "pages_b03_fileinput_b03_backend_\uc784\uc2dc_\ubcf4\uad00\ud568_r2_temp_upload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "to": "pages_b03_fileinput_b03_backend_\uc785\ub825_\uac80\uc99d_\ud30c\uc77c_\ucc98\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "to": "pages_b03_fileinput_b03_backend_\uc800\uc7a5\uc18c_\ubc0f_\ucd08\uae30\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_db", "to": "pages_b03_fileinput_b03_db_b03_fileinput_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_db_b03_fileinput_db_\uc0ac\uc6a9_\uad00\uacc4", "to": "pages_b03_fileinput_b03_db_\ud30c\uc77c_\uacbd\ub85c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_dependencies", "to": "pages_b03_fileinput_b03_dependencies_b03_fileinput_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_dependencies_b03_fileinput_dependencies", "to": "pages_b03_fileinput_b03_dependencies_\uacf5\ud1b5_\ubaa8\ub4c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_frontend", "to": "pages_b03_fileinput_b03_frontend_b03_fileinput_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_frontend_b03_fileinput_frontend", "to": "pages_b03_fileinput_b03_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_frontend_b03_fileinput_frontend", "to": "pages_b03_fileinput_b03_frontend_ui_\uc9c0\uc6d0_\uc720\ud2f8\ub9ac\ud2f0_\ubd84\ud560_\uc644\ub8cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_frontend_b03_fileinput_frontend", "to": "pages_b03_fileinput_b03_frontend_\ube0c\ub77c\uc6b0\uc800_\uc0c1\ud0dc_\uc624\ud504\ub77c\uc778_\ubcf4\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_frontend_b03_fileinput_frontend", "to": "pages_b03_fileinput_b03_frontend_\ud398\uc774\uc9c0_\uc5c5\ub85c\ub4dc_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_route_snapshot_crs", "to": "pages_b03_fileinput_b03_route_snapshot_crs_b03_\uacc4\ud68d\ub178\uc120_\uc815\ubcf8_\uc88c\ud45c\uacc4_\ud6c4\uc18d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_route_snapshot_crs_b03_\uacc4\ud68d\ub178\uc120_\uc815\ubcf8_\uc88c\ud45c\uacc4_\ud6c4\uc18d", "to": "pages_b03_fileinput_b03_route_snapshot_crs_las_\uc5c6\ub294_\uc124\uacc4\uc640_\uc5c5\ub85c\ub4dc_\uc0c1\ud0dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_route_snapshot_crs_b03_\uacc4\ud68d\ub178\uc120_\uc815\ubcf8_\uc88c\ud45c\uacc4_\ud6c4\uc18d", "to": "pages_b03_fileinput_b03_route_snapshot_crs_\uacc4\ud68d\ub178\uc120_\uc815\ubcf8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_upload_ui_2026_09", "to": "pages_b03_fileinput_b03_upload_ui_2026_09_b03_\ud30c\uc77c_\uc785\ub825_\ud654\uba74_\uc815\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_upload_ui_2026_09_b03_\ud30c\uc77c_\uc785\ub825_\ud654\uba74_\uc815\ub9ac", "to": "pages_b03_fileinput_b03_upload_ui_2026_09_\uc785\ub825_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_upload_ui_2026_09_b03_\ud30c\uc77c_\uc785\ub825_\ud654\uba74_\uc815\ub9ac", "to": "pages_b03_fileinput_b03_upload_ui_2026_09_\ud654\uba74_\uad6c\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_backend_b03_fileinput_router", "to": "pages_b03_fileinput_backend_b03_fileinput_router_b03_fileinput_router_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_backend_b03_fileinput_router_b03_fileinput_router_py", "to": "pages_b03_fileinput_backend_b03_fileinput_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_backend_b03_fileinput_router_b03_fileinput_router_py", "to": "pages_b03_fileinput_backend_b03_fileinput_router_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_api", "to": "pages_b04_preprocess_b04_api_b04_preprocess_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_api_b04_preprocess_api", "to": "pages_b04_preprocess_b04_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_api_b04_preprocess_api", "to": "pages_b04_preprocess_b04_api_\uc694\uccad_\uc751\ub2f5_\uc2a4\ud0a4\ub9c8_pydantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_backend", "to": "pages_b04_preprocess_b04_backend_b04_preprocess_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_backend_b04_preprocess_backend", "to": "pages_b04_preprocess_b04_backend_2d_gis_\ubbf8\ud45c\uc2dc_\uc6d0\uc778_\ubd84\uc11d_\ubc0f_\uc870\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_backend_b04_preprocess_backend", "to": "pages_b04_preprocess_b04_backend_\uad6c\ud604_\uc608\uc678_\ucc98\ub9ac_\uac80\ud1a0_\ud56d\ubaa9_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_backend_b04_preprocess_backend", "to": "pages_b04_preprocess_b04_backend_\uc124\uc815_\ubc0f_\ud658\uacbd_\ud30c\uc77c_\uc815\ud569\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_backend_b04_preprocess_backend", "to": "pages_b04_preprocess_b04_backend_\uc218\uce58\uc9c0\ud615\ub3c4_\ub3c4\uc5fd_\uc624\ubc84\ub808\uc774_\uc544\ud0a4\ud14d\ucc98_2026_07_26_2026_08_01_s8_\uac1c\ud3b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_backend_b04_preprocess_backend", "to": "pages_b04_preprocess_b04_backend_\uc5d4\uc9c4_\uc11c\ube0c\ubaa8\ub4c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_backend_b04_preprocess_backend", "to": "pages_b04_preprocess_b04_backend_\uc6cc\ud06c\ud50c\ub85c\uc6b0_\uc0c1\ud0dc_\uc804\uc774_\ubc0f_\uc790\ub3d9_\ud655\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_backend_b04_preprocess_backend", "to": "pages_b04_preprocess_b04_backend_\uc8fc\uc694_\ud568\uc218_router_repository_engine_utility", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_backend_b04_preprocess_backend", "to": "pages_b04_preprocess_b04_backend_\ud30c\uc77c_\uad6c\uc131_\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130_\uc800\uc7a5\uc18c_\ub77c\uc6b0\ud130", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_compass_crs_2026_09", "to": "pages_b04_preprocess_b04_compass_crs_2026_09_b04_3d_\ubc29\uc704_\uc88c\ud45c\uacc4_\ucd5c\uc2e0_\uacb0\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_compass_crs_2026_09_b04_3d_\ubc29\uc704_\uc88c\ud45c\uacc4_\ucd5c\uc2e0_\uacb0\uc815", "to": "pages_b04_preprocess_b04_compass_crs_2026_09_3d_\ubc29\uc704_\uc704\uc82f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_compass_crs_2026_09_b04_3d_\ubc29\uc704_\uc88c\ud45c\uacc4_\ucd5c\uc2e0_\uacb0\uc815", "to": "pages_b04_preprocess_b04_compass_crs_2026_09_\uc791\uc5c5_\uc88c\ud45c\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_db", "to": "pages_b04_preprocess_b04_db_b04_preprocess_db", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_db_b04_preprocess_db", "to": "pages_b04_preprocess_b04_db_repository_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_db_b04_preprocess_db", "to": "pages_b04_preprocess_b04_db_\uc4f0\ub294_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_db_b04_preprocess_db", "to": "pages_b04_preprocess_b04_db_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_dependencies", "to": "pages_b04_preprocess_b04_dependencies_b04_preprocess_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_dependencies_b04_preprocess_dependencies", "to": "pages_b04_preprocess_b04_dependencies_\ubc31\uc5d4\ub4dc_python", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_dependencies_b04_preprocess_dependencies", "to": "pages_b04_preprocess_b04_dependencies_\ud504\ub860\ud2b8\uc5d4\ub4dc_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_drainage_compass_crs", "to": "pages_b04_preprocess_b04_drainage_compass_crs_b04_\uc138\ubd80\uc720\uc5ed_\ubc29\uc704_\uc88c\ud45c\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_drainage_compass_crs_b04_\uc138\ubd80\uc720\uc5ed_\ubc29\uc704_\uc88c\ud45c\uacc4", "to": "pages_b04_preprocess_b04_drainage_compass_crs_3d_\ubc29\uc704\uc640_\uc88c\ud45c\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_drainage_compass_crs_b04_\uc138\ubd80\uc720\uc5ed_\ubc29\uc704_\uc88c\ud45c\uacc4", "to": "pages_b04_preprocess_b04_drainage_compass_crs_\uc138\ubd80\uc720\uc5ed_\ud615\uc0c1_\ubcf4\uc874", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_drainage_compass_crs_b04_\uc138\ubd80\uc720\uc5ed_\ubc29\uc704_\uc88c\ud45c\uacc4", "to": "pages_b04_preprocess_b04_drainage_compass_crs_\uc885\ub2e8_\ub192\ub0ae\uc774_\uae30\ubc18_\ubc30\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_frontend", "to": "pages_b04_preprocess_b04_frontend_b04_preprocess_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_frontend_b04_preprocess_frontend", "to": "pages_b04_preprocess_b04_frontend_3d_\ubdf0\uc5b4_dom_\ub9c8\uc6b4\ud2b8_\ubc84\uadf8_\uc218\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_frontend_b04_preprocess_frontend", "to": "pages_b04_preprocess_b04_frontend_3d_\ubdf0\uc5b4_\ud14c\ub9c8_\uc5f0\ub3d9_\ubc0f_\uac00\ub3c5\uc131_\uac1c\uc120", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_frontend_b04_preprocess_frontend", "to": "pages_b04_preprocess_b04_frontend_3d_\uce74\uba54\ub77c_\ucee4\uc11c_\ud53c\ubd07_2d_\uc624\ubc84\ub808\uc774_ui_\uac1c\uc120_2026_08_01_02_\uc77c\uc6d0\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_frontend_b04_preprocess_frontend", "to": "pages_b04_preprocess_b04_frontend_\uacc4\ud68d\uc11c\uc640_\uc2e4_\ucf54\ub4dc_\ubd88\uc77c\uce58_3d_\ubdf0\uc5b4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_frontend_b04_preprocess_frontend", "to": "pages_b04_preprocess_b04_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_frontend_b04_preprocess_frontend", "to": "pages_b04_preprocess_b04_frontend_\ucc98\ub9ac_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_frontend_b04_preprocess_frontend", "to": "pages_b04_preprocess_b04_frontend_\ucef4\ud3ec\ub10c\ud2b8_api_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_b04_frontend_b04_preprocess_frontend", "to": "pages_b04_preprocess_b04_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_backend_b04_preprocess_router", "to": "pages_b04_preprocess_backend_b04_preprocess_router_b04_preprocess_router_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_backend_b04_preprocess_router_b04_preprocess_router_py", "to": "pages_b04_preprocess_backend_b04_preprocess_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_preprocess_backend_b04_preprocess_router_b04_preprocess_router_py", "to": "pages_b04_preprocess_backend_b04_preprocess_router_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_plan_2026_08_18", "to": "pages_b05_profile_b05_profile_plan_2026_08_18_b05_\uad6c\uc870\ubb3c_ui_\ud604\uc7ac_\uacc4\ud68d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_plan_2026_08_18_b05_\uad6c\uc870\ubb3c_ui_\ud604\uc7ac_\uacc4\ud68d", "to": "pages_b05_profile_b05_profile_plan_2026_08_18_2026_08_18_b05_\ud398\uc774\uc9c0_\uac1c\uc120_2\ucc28_\uacc4\ud68d_\uae30\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_plan_2026_08_18_b05_\uad6c\uc870\ubb3c_ui_\ud604\uc7ac_\uacc4\ud68d", "to": "pages_b05_profile_b05_profile_plan_2026_08_18_2026_08_18_\uc0ac\uc774\ub4dc_\ud328\ub110_\uc785\ub825_\ub85c\uc9c1_\uacc4\ud68d_\uae30\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_plan_2026_08_18_b05_\uad6c\uc870\ubb3c_ui_\ud604\uc7ac_\uacc4\ud68d", "to": "pages_b05_profile_b05_profile_plan_2026_08_18_b05_b06_\uad6c\uc870\ubb3c_\uc801\uc6a9_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_plan_2026_08_18_b05_\uad6c\uc870\ubb3c_ui_\ud604\uc7ac_\uacc4\ud68d", "to": "pages_b05_profile_b05_profile_plan_2026_08_18_\ud6c4\uc18d_\uacb0\uc815_\ub300\uae30", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_plan_2026_08_19", "to": "pages_b05_profile_b05_profile_plan_2026_08_19_b05_\uad6c\uc870\ubb3c_\uc785\ub825_\uc885\ub2e8_\ud45c\uc2dc_\uc815\ube44_2026_08_19", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_plan_2026_08_19_b05_\uad6c\uc870\ubb3c_\uc785\ub825_\uc885\ub2e8_\ud45c\uc2dc_\uc815\ube44_2026_08_19", "to": "pages_b05_profile_b05_profile_plan_2026_08_19_\uae30\ub85d\ub41c_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_plan_2026_08_19_b05_\uad6c\uc870\ubb3c_\uc785\ub825_\uc885\ub2e8_\ud45c\uc2dc_\uc815\ube44_2026_08_19", "to": "pages_b05_profile_b05_profile_plan_2026_08_19_\uae30\uc900_\ud574\uc11d_\ubcf4\ub958", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_plan_2026_08_19_b05_\uad6c\uc870\ubb3c_\uc785\ub825_\uc885\ub2e8_\ud45c\uc2dc_\uc815\ube44_2026_08_19", "to": "pages_b05_profile_b05_profile_plan_2026_08_19_\uc644\ub8cc_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_plan_2026_08_19_b05_\uad6c\uc870\ubb3c_\uc785\ub825_\uc885\ub2e8_\ud45c\uc2dc_\uc815\ube44_2026_08_19", "to": "pages_b05_profile_b05_profile_plan_2026_08_19_\uc8fc\uc694_\ud56d\ubaa9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_api", "to": "pages_b05_profile_b05_api_b05_profile_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_api_b05_profile_api", "to": "pages_b05_profile_b05_api_api_\uc2a4\ud0a4\ub9c8_\ubc0f_\ubc18\ud658_\ud544\ub4dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_api_b05_profile_api", "to": "pages_b05_profile_b05_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_api_api_\uc2a4\ud0a4\ub9c8_\ubc0f_\ubc18\ud658_\ud544\ub4dc", "to": "pages_b05_profile_b05_api_post_project_id_route_confirm_\uc694\uccad_routeconfirmrequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_backend", "to": "pages_b05_profile_b05_backend_b05_profile_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_backend_b05_profile_backend", "to": "pages_b05_profile_b05_backend_\uc18c\uc2a4\ucf54\ub4dc_1_1_\uc138\ubd84\ud654_\uc704\ud0a4_\ud30c\uc77c_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_backend_b05_profile_backend", "to": "pages_b05_profile_b05_backend_\ud575\uc2ec_\ubc31\uc5d4\ub4dc_\uc544\ud0a4\ud14d\ucc98_\uac1c\uc694", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_completed_followups", "to": "pages_b05_profile_b05_completed_followups_b05_\ud6c4\uc18d_\uc644\ub8cc_\ud56d\ubaa9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_cut_fill", "to": "pages_b05_profile_b05_corridor_cut_fill_b05_\uad6c\uc870\ubb3c_\uad6c\uac04_\uc808\ucde8_\uce21\ubcbd_\uc131\ud1a0_\ud328\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_cut_fill_b05_\uad6c\uc870\ubb3c_\uad6c\uac04_\uc808\ucde8_\uce21\ubcbd_\uc131\ud1a0_\ud328\uce58", "to": "pages_b05_profile_b05_corridor_cut_fill_b06_\ubcc0\ud615_\uc131\ud1a0\uc120_\ud328\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_cut_fill_b05_\uad6c\uc870\ubb3c_\uad6c\uac04_\uc808\ucde8_\uce21\ubcbd_\uc131\ud1a0_\ud328\uce58", "to": "pages_b05_profile_b05_corridor_cut_fill_\uc800\uc7a5_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_cut_fill_b05_\uad6c\uc870\ubb3c_\uad6c\uac04_\uc808\ucde8_\uce21\ubcbd_\uc131\ud1a0_\ud328\uce58", "to": "pages_b05_profile_b05_corridor_cut_fill_\uc808\ucde8\uc640_\uacbd\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_followup_decisions", "to": "pages_b05_profile_b05_corridor_followup_decisions_b05_\uad6c\uc870\ubb3c_3d_\ud6c4\uc18d_\ud310\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_patch_finish", "to": "pages_b05_profile_b05_corridor_patch_finish_b05_\ubcc0\ud615_\uc131\ud1a0\uba74_\ub9c8\uac10_\ub0a0\uac1c_\ud328\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_patch_finish_b05_\ubcc0\ud615_\uc131\ud1a0\uba74_\ub9c8\uac10_\ub0a0\uac1c_\ud328\uce58", "to": "pages_b05_profile_b05_corridor_patch_finish_\uc138\uc6d4\uad50_\ub0a0\uac1c_\ud328\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_patch_finish_b05_\ubcc0\ud615_\uc131\ud1a0\uba74_\ub9c8\uac10_\ub0a0\uac1c_\ud328\uce58", "to": "pages_b05_profile_b05_corridor_patch_finish_\uc800\uc7a5_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_patch_finish_b05_\ubcc0\ud615_\uc131\ud1a0\uba74_\ub9c8\uac10_\ub0a0\uac1c_\ud328\uce58", "to": "pages_b05_profile_b05_corridor_patch_finish_\ud328\uce58_\ub9c8\uac10", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_plan_curves", "to": "pages_b05_profile_b05_corridor_plan_curves_b05_\uad6c\uc870\ubb3c_3d_\ud22c\uc601_\ucee4\ube0c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_plan_curves_b05_\uad6c\uc870\ubb3c_3d_\ud22c\uc601_\ucee4\ube0c", "to": "pages_b05_profile_b05_corridor_plan_curves_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_plan_curves_b05_\uad6c\uc870\ubb3c_3d_\ud22c\uc601_\ucee4\ube0c", "to": "pages_b05_profile_b05_corridor_plan_curves_\uad6c\uc870\ubb3c_\ub0a0\uac1c_\ubc14\ub2e5_\uc5f0\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_plan_curves_b05_\uad6c\uc870\ubb3c_3d_\ud22c\uc601_\ucee4\ube0c", "to": "pages_b05_profile_b05_corridor_plan_curves_\ube44\ud0c8_\ud22c\uc601_\uc131\ud1a0\uba74_\uc808\ub2e8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_plan_curves_b05_\uad6c\uc870\ubb3c_3d_\ud22c\uc601_\ucee4\ube0c", "to": "pages_b05_profile_b05_corridor_plan_curves_\uc800\uc7a5_\ud638\ud658\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_plan_curves_b05_\uad6c\uc870\ubb3c_3d_\ud22c\uc601_\ucee4\ube0c", "to": "pages_b05_profile_b05_corridor_plan_curves_\ucee4\ube0c_\uc0dd\uc131_\ub80c\ub354", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_surface", "to": "pages_b05_profile_b05_corridor_surface_b05_\uacc4\ud68d\ub178\uc120_\ucf54\ub9ac\ub3c4_\uc0bc\uac01\ub9dd_\uc11c\ud53c\uc2a4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_surface_b05_\uacc4\ud68d\ub178\uc120_\ucf54\ub9ac\ub3c4_\uc0bc\uac01\ub9dd_\uc11c\ud53c\uc2a4", "to": "pages_b05_profile_b05_corridor_surface_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_surface_b05_\uacc4\ud68d\ub178\uc120_\ucf54\ub9ac\ub3c4_\uc0bc\uac01\ub9dd_\uc11c\ud53c\uc2a4", "to": "pages_b05_profile_b05_corridor_surface_\uc800\uc7a5_\ud638\ud658\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_surface_b05_\uacc4\ud68d\ub178\uc120_\ucf54\ub9ac\ub3c4_\uc0bc\uac01\ub9dd_\uc11c\ud53c\uc2a4", "to": "pages_b05_profile_b05_corridor_surface_\uc9c4\ud589_\uc911_\uacc4\ud68d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_surface_b05_\uacc4\ud68d\ub178\uc120_\ucf54\ub9ac\ub3c4_\uc0bc\uac01\ub9dd_\uc11c\ud53c\uc2a4", "to": "pages_b05_profile_b05_corridor_surface_\ud504\ub860\ud2b8\uc5d4\ub4dc_\uad6c\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_turn_correction_plan", "to": "pages_b05_profile_b05_corridor_turn_correction_plan_b05_\uae09\uc120\ud68c_3d_\uad6d\ubd80_\ubcf4\uc815_\uacc4\ud68d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_turn_correction_plan_b05_\uae09\uc120\ud68c_3d_\uad6d\ubd80_\ubcf4\uc815_\uacc4\ud68d", "to": "pages_b05_profile_b05_corridor_turn_correction_plan_\uad6c\uc870\ubb3c_\uc5f0\ub3d9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_turn_correction_plan_b05_\uae09\uc120\ud68c_3d_\uad6d\ubd80_\ubcf4\uc815_\uacc4\ud68d", "to": "pages_b05_profile_b05_corridor_turn_correction_plan_\uad6d\ubd80_\ud328\uce58_\uc808\ucc28", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_turn_correction_plan_b05_\uae09\uc120\ud68c_3d_\uad6d\ubd80_\ubcf4\uc815_\uacc4\ud68d", "to": "pages_b05_profile_b05_corridor_turn_correction_plan_\ubaa9\uc801\uacfc_\uacbd\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_turn_correction_plan_b05_\uae09\uc120\ud68c_3d_\uad6d\ubd80_\ubcf4\uc815_\uacc4\ud68d", "to": "pages_b05_profile_b05_corridor_turn_correction_plan_\uc644\ub8cc_\uc870\uac74", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_corridor_turn_correction_plan_b05_\uae09\uc120\ud68c_3d_\uad6d\ubd80_\ubcf4\uc815_\uacc4\ud68d", "to": "pages_b05_profile_b05_corridor_turn_correction_plan_\ud655\uc778\ub41c_\ub178\uacac_\ud655\uc7a5_\ud68c\uadc0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_db", "to": "pages_b05_profile_b05_db_b05_profile_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_db_b05_profile_db_\uc0ac\uc6a9_\uad00\uacc4", "to": "pages_b05_profile_b05_db_repository_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_db_b05_profile_db_\uc0ac\uc6a9_\uad00\uacc4", "to": "pages_b05_profile_b05_db_\uc800\uc7a5_\uacbd\ub85c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_dependencies", "to": "pages_b05_profile_b05_dependencies_b05_profile_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_dependencies_b05_profile_dependencies", "to": "pages_b05_profile_b05_dependencies_\ud398\uc774\uc9c0_\ud30c\uc77c\ubcc4_\uc5f0\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend", "to": "pages_b05_profile_b05_frontend_b05_profile_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend_b05_profile_frontend", "to": "pages_b05_profile_b05_frontend_\ub0a8\uc740_\ud30c\uc77c_\ud55c\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend_b05_profile_frontend", "to": "pages_b05_profile_b05_frontend_\uc18c\uc2a4\ucf54\ub4dc_1_1_\uc138\ubd84\ud654_\uc704\ud0a4_\ud30c\uc77c_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend_b05_profile_frontend", "to": "pages_b05_profile_b05_frontend_\uc885\ub2e8_\ud3b8\uc9d1_\uc548\uc804\uc7a5\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend_b05_profile_frontend", "to": "pages_b05_profile_b05_frontend_\uc885\ub2e8\ud14c\uc774\ube14_\ud45c\uc2dc_\ubcf4\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend_b05_profile_frontend", "to": "pages_b05_profile_b05_frontend_\ud575\uc2ec_\ud504\ub860\ud2b8\uc5d4\ub4dc_\uc544\ud0a4\ud14d\ucc98_\uac1c\uc694", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend_alignment", "to": "pages_b05_profile_b05_frontend_alignment_b05_profile_profile_alignment_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend_alignment_b05_profile_profile_alignment_table", "to": "pages_b05_profile_b05_frontend_alignment_12\ud589_\ub3c4\uba74_\ud14c\uc774\ube14_\ubc0f_\uac00\ub85c_\uc2a4\ud06c\ub864_\uc815\ub82c_\uac1c\ud3b8_ui_profile_table_ts_ui_profile_panel_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend_alignment_b05_profile_profile_alignment_table", "to": "pages_b05_profile_b05_frontend_alignment_\ube44\uc815\uaddc_\uce21\uc810_\uad6c\uc870\ubb3c_\ud14c\uc774\ube14_\uc624\ubc84\ub808\uc774_\ub7f0\ud0c0\uc784_\uac80\uc99d_ui_profile_table_ts_ui_irregularstations_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend_alignment_b05_profile_profile_alignment_table", "to": "pages_b05_profile_b05_frontend_alignment_\uc885\ub2e8_\uacc4\ud68d\uace0_\ud3b8\uc9d1_\uc778\ud130\ub799\uc158_ui_profile_edit_ts_ui_profile_panel_ts_ui_page_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend_viewer", "to": "pages_b05_profile_b05_frontend_viewer_b05_profile_3d_viewer_interaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend_viewer_b05_profile_3d_viewer_interaction", "to": "pages_b05_profile_b05_frontend_viewer_3d_\ub9c8\ucee4_\uc9c1\uc811_\ub4dc\ub798\uadf8_\uc774\ub3d9_0_old_i_401_\uc774\uc2dd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_frontend_viewer_b05_profile_3d_viewer_interaction", "to": "pages_b05_profile_b05_frontend_viewer_3d_\uc9c0\ud615_\ubdf0\ud3ec\ud2b8_\uc2dc\uac01\ud654_ui_viewer_ts_ui_markers_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_masshaul_structure_2026_09", "to": "pages_b05_profile_b05_masshaul_structure_2026_09_b05_\uc720\ud1a0\uace1\uc120_\uad6c\uc870\ubb3c_\ud6c4\uc18d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_masshaul_structure_2026_09_b05_\uc720\ud1a0\uace1\uc120_\uad6c\uc870\ubb3c_\ud6c4\uc18d", "to": "pages_b05_profile_b05_masshaul_structure_2026_09_\uc720\uc9c0_\ud310\uc815_\uc0ac\ud56d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_masshaul_structure_2026_09_b05_\uc720\ud1a0\uace1\uc120_\uad6c\uc870\ubb3c_\ud6c4\uc18d", "to": "pages_b05_profile_b05_masshaul_structure_2026_09_\uc720\ud1a0\uace1\uc120_\uacf5\uc6a9\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_interaction_2026_09", "to": "pages_b05_profile_b05_profile_interaction_2026_09_b05_\uc885\ub2e8\uace1\uc120_\uc2e4\uc2dc\uac04_\ud6a1\ub2e8_\uc5f0\ub3d9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_interaction_2026_09_b05_\uc885\ub2e8\uace1\uc120_\uc2e4\uc2dc\uac04_\ud6a1\ub2e8_\uc5f0\ub3d9", "to": "pages_b05_profile_b05_profile_interaction_2026_09_\uc2e4\uc2dc\uac04_\ud6a1\ub2e8_\uc720\ud1a0\uace1\uc120", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_profile_interaction_2026_09_b05_\uc885\ub2e8\uace1\uc120_\uc2e4\uc2dc\uac04_\ud6a1\ub2e8_\uc5f0\ub3d9", "to": "pages_b05_profile_b05_profile_interaction_2026_09_\ucd08\uae30_\uc885\ub2e8\uace1\uc120", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structure_stations", "to": "pages_b05_profile_b05_structure_stations_b05_\uad6c\uc870\ubb3c_\ube44\uc815\uaddc_\uce21\uc810_\uacf5\uae09", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structure_stations_b05_\uad6c\uc870\ubb3c_\ube44\uc815\uaddc_\uce21\uc810_\uacf5\uae09", "to": "pages_b05_profile_b05_structure_stations_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structure_stations_b05_\uad6c\uc870\ubb3c_\ube44\uc815\uaddc_\uce21\uc810_\uacf5\uae09", "to": "pages_b05_profile_b05_structure_stations_\uacf5\uae09_\uacbd\ub85c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structure_stations_b05_\uad6c\uc870\ubb3c_\ube44\uc815\uaddc_\uce21\uc810_\uacf5\uae09", "to": "pages_b05_profile_b05_structure_stations_\uc815\ubcf8_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structures", "to": "pages_b05_profile_b05_structures_b05_\uad6c\uc870\ubb3c_\uc815\ubcf8_\ud1b5\ud569_\ud3b8\uc9d1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structures_b05_\uad6c\uc870\ubb3c_\uc815\ubcf8_\ud1b5\ud569_\ud3b8\uc9d1", "to": "pages_b05_profile_b05_structures_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structures_b05_\uad6c\uc870\ubb3c_\uc815\ubcf8_\ud1b5\ud569_\ud3b8\uc9d1", "to": "pages_b05_profile_b05_structures_b06_\uacbd\uacc4\uc640_\ub0a8\uc740_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structures_b05_\uad6c\uc870\ubb3c_\uc815\ubcf8_\ud1b5\ud569_\ud3b8\uc9d1", "to": "pages_b05_profile_b05_structures_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structures_b05_\uad6c\uc870\ubb3c_\uc815\ubcf8_\ud1b5\ud569_\ud3b8\uc9d1", "to": "pages_b05_profile_b05_structures_\ubc30\uc218\uad00_\uc2dc\uc124_\uc635\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structures_b05_\uad6c\uc870\ubb3c_\uc815\ubcf8_\ud1b5\ud569_\ud3b8\uc9d1", "to": "pages_b05_profile_b05_structures_\ubc31\uc5d4\ub4dc_\ud30c\uc77c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structures_b05_\uad6c\uc870\ubb3c_\uc815\ubcf8_\ud1b5\ud569_\ud3b8\uc9d1", "to": "pages_b05_profile_b05_structures_\uc720\uc5ed_\ucd94\ucc9c_\uac1c\ub7b5_\ub2e8\uba74", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structures_b05_\uad6c\uc870\ubb3c_\uc815\ubcf8_\ud1b5\ud569_\ud3b8\uc9d1", "to": "pages_b05_profile_b05_structures_\uc815\ubcf8\uacfc_\ud0c0\uc785_\ub808\uc9c0\uc2a4\ud2b8\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_b05_structures_b05_\uad6c\uc870\ubb3c_\uc815\ubcf8_\ud1b5\ud569_\ud3b8\uc9d1", "to": "pages_b05_profile_b05_structures_\ud504\ub860\ud2b8\uc5d4\ub4dc_\ud30c\uc77c\uacfc_\ub3d9\uc791", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_engine_grade", "to": "pages_b05_profile_backend_b05_profile_engine_grade_b05_profile_engine_grade_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_engine_grade_b05_profile_engine_grade_py", "to": "pages_b05_profile_backend_b05_profile_engine_grade_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_engine_grade_b05_profile_engine_grade_py", "to": "pages_b05_profile_backend_b05_profile_engine_grade_\uc8fc\uc694_\ud074\ub798\uc2a4_\ubc0f_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_engine_sections", "to": "pages_b05_profile_backend_b05_profile_engine_sections_b05_profile_engine_sections_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_engine_sections_b05_profile_engine_sections_py", "to": "pages_b05_profile_backend_b05_profile_engine_sections_\ub7f0\ud0c0\uc784_\uac80\uc99d_\uc8fc\uc758\uc0ac\ud56d_2026_07_24_\uac80\uc99d_\ubcf4\uace0\uc11c_\uae30\uc900", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_engine_sections_b05_profile_engine_sections_py", "to": "pages_b05_profile_backend_b05_profile_engine_sections_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_engine_sections_b05_profile_engine_sections_py", "to": "pages_b05_profile_backend_b05_profile_engine_sections_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_engine_solver", "to": "pages_b05_profile_backend_b05_profile_engine_solver_b05_profile_engine_solver_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_engine_solver_b05_profile_engine_solver_py", "to": "pages_b05_profile_backend_b05_profile_engine_solver_\uc5d4\uc9c4_\ud575\uc2ec_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_engine_solver_b05_profile_engine_solver_py", "to": "pages_b05_profile_backend_b05_profile_engine_solver_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_repository", "to": "pages_b05_profile_backend_b05_profile_repository_b05_profile_repository_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_repository_b05_profile_repository_py", "to": "pages_b05_profile_backend_b05_profile_repository_db_\uc811\uadfc_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_repository_b05_profile_repository_py", "to": "pages_b05_profile_backend_b05_profile_repository_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_router", "to": "pages_b05_profile_backend_b05_profile_router_b05_profile_router_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_router_b05_profile_router_py", "to": "pages_b05_profile_backend_b05_profile_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_router_b05_profile_router_py", "to": "pages_b05_profile_backend_b05_profile_router_\uc5f0\uad00_\ubaa8\ub4c8_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_router_confirm", "to": "pages_b05_profile_backend_b05_profile_router_confirm_b05_profile_router_confirm_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_router_confirm_b05_profile_router_confirm_py", "to": "pages_b05_profile_backend_b05_profile_router_confirm_\uc5f0\uad00_\ubaa8\ub4c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_router_confirm_b05_profile_router_confirm_py", "to": "pages_b05_profile_backend_b05_profile_router_confirm_\uc8fc\uc694_\ud5ec\ud37c_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_schema", "to": "pages_b05_profile_backend_b05_profile_schema_b05_profile_schema_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_schema_b05_profile_schema_py", "to": "pages_b05_profile_backend_b05_profile_schema_pydantic_\ubaa8\ub378_\ubc0f_\uac80\uc99d_\ud5ec\ud37c_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_backend_b05_profile_schema_b05_profile_schema_py", "to": "pages_b05_profile_backend_b05_profile_schema_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_api_fetch", "to": "pages_b05_profile_frontend_b05_profile_api_fetch_b05_profile_api_fetch_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_api_fetch_b05_profile_api_fetch_ts", "to": "pages_b05_profile_frontend_b05_profile_api_fetch_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_api_fetch_b05_profile_api_fetch_ts", "to": "pages_b05_profile_frontend_b05_profile_api_fetch_\uc8fc\uc694_api_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_drainage_panel", "to": "pages_b05_profile_frontend_b05_profile_ui_drainage_panel_b05_profile_ui_drainage_panel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_drainage_panel_b05_profile_ui_drainage_panel", "to": "pages_b05_profile_frontend_b05_profile_ui_drainage_panel_\uac1c\uc694_\ubc0f_\ud2b9\uc9d5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_drainage_panel_b05_profile_ui_drainage_panel", "to": "pages_b05_profile_frontend_b05_profile_ui_drainage_panel_\uc8fc\uc694_\ud568\uc218_\uc2ec\ubcfc_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts", "to": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts_b05_profile_ui_drainage_parts_\ubc30\uc218\uc720\uc5ed_\uacf5\uc6a9_ui_\ud30c\uce20", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts_b05_profile_ui_drainage_parts_\ubc30\uc218\uc720\uc5ed_\uacf5\uc6a9_ui_\ud30c\uce20", "to": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts_b05_profile_ui_drainage_parts_\ubc30\uc218\uc720\uc5ed_\uacf5\uc6a9_ui_\ud30c\uce20", "to": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts_b05_profile_ui_drainage_parts_\ubc30\uc218\uc720\uc5ed_\uacf5\uc6a9_ui_\ud30c\uce20", "to": "pages_b05_profile_frontend_b05_profile_ui_drainage_parts_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_drainage_pipes", "to": "pages_b05_profile_frontend_b05_profile_ui_drainage_pipes_b05_profile_ui_drainage_pipes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_drainage_pipes_b05_profile_ui_drainage_pipes", "to": "pages_b05_profile_frontend_b05_profile_ui_drainage_pipes_\uac1c\uc694_\ubc0f_\ud2b9\uc9d5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_drainage_pipes_b05_profile_ui_drainage_pipes", "to": "pages_b05_profile_frontend_b05_profile_ui_drainage_pipes_\uc8fc\uc694_\ud568\uc218_\uc2ec\ubcfc_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_irregularstations", "to": "pages_b05_profile_frontend_b05_profile_ui_irregularstations_b05_profile_ui_irregularstations_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_irregularstations_b05_profile_ui_irregularstations_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_irregularstations_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_irregularstations_b05_profile_ui_irregularstations_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_irregularstations_\uc8fc\uc694_\uc778\ud130\ud398\uc774\uc2a4_\ubc0f_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_page", "to": "pages_b05_profile_frontend_b05_profile_ui_page_b05_profile_ui_page_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_page_b05_profile_ui_page_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_page_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_page_b05_profile_ui_page_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_page_\uc8fc\uc694_\ucef4\ud3ec\ub10c\ud2b8_\ubc0f_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_panel", "to": "pages_b05_profile_frontend_b05_profile_ui_panel_b05_profile_ui_panel_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_panel_b05_profile_ui_panel_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_panel_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_panel_b05_profile_ui_panel_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_panel_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_profile_alignment", "to": "pages_b05_profile_frontend_b05_profile_ui_profile_alignment_b05_profile_ui_profile_alignment_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_profile_alignment_b05_profile_ui_profile_alignment_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_profile_alignment_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_profile_alignment_b05_profile_ui_profile_alignment_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_profile_alignment_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_profile_panel", "to": "pages_b05_profile_frontend_b05_profile_ui_profile_panel_b05_profile_ui_profile_panel_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_profile_panel_b05_profile_ui_profile_panel_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_profile_panel_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_profile_panel_b05_profile_ui_profile_panel_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_profile_panel_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\uac1c\uc120\uc0ac\ud56d_2026_08_06", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_profile_panel_b05_profile_ui_profile_panel_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_profile_panel_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_profile_table", "to": "pages_b05_profile_frontend_b05_profile_ui_profile_table_b05_profile_ui_profile_table_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_profile_table_b05_profile_ui_profile_table_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_profile_table_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_profile_table_b05_profile_ui_profile_table_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_profile_table_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_viewer", "to": "pages_b05_profile_frontend_b05_profile_ui_viewer_b05_profile_ui_viewer_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_viewer_b05_profile_ui_viewer_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_viewer_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_b05_profile_ui_viewer_b05_profile_ui_viewer_ts", "to": "pages_b05_profile_frontend_b05_profile_ui_viewer_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_ui_drainage_render", "to": "pages_b05_profile_frontend_ui_drainage_render_ui_drainage_render_\ubc30\uc218\uc720\uc5ed\ub3c4_canvas_\ub80c\ub354\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_ui_drainage_render_ui_drainage_render_\ubc30\uc218\uc720\uc5ed\ub3c4_canvas_\ub80c\ub354\ub7ec", "to": "pages_b05_profile_frontend_ui_drainage_render_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_ui_drainage_render_ui_drainage_render_\ubc30\uc218\uc720\uc5ed\ub3c4_canvas_\ub80c\ub354\ub7ec", "to": "pages_b05_profile_frontend_ui_drainage_render_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_ui_drainage_render_ui_drainage_render_\ubc30\uc218\uc720\uc5ed\ub3c4_canvas_\ub80c\ub354\ub7ec", "to": "pages_b05_profile_frontend_ui_drainage_render_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_ui_profile_structures", "to": "pages_b05_profile_frontend_ui_profile_structures_ui_profile_structures_\uc885\ub2e8_\uad6c\uc870\ubb3c_\ub80c\ub354\ub9c1_\ubc0f_\uc778\ud130\ub799\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_ui_profile_structures_ui_profile_structures_\uc885\ub2e8_\uad6c\uc870\ubb3c_\ub80c\ub354\ub9c1_\ubc0f_\uc778\ud130\ub799\uc158", "to": "pages_b05_profile_frontend_ui_profile_structures_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_ui_profile_structures_ui_profile_structures_\uc885\ub2e8_\uad6c\uc870\ubb3c_\ub80c\ub354\ub9c1_\ubc0f_\uc778\ud130\ub799\uc158", "to": "pages_b05_profile_frontend_ui_profile_structures_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_ui_profile_structures_ui_profile_structures_\uc885\ub2e8_\uad6c\uc870\ubb3c_\ub80c\ub354\ub9c1_\ubc0f_\uc778\ud130\ub799\uc158", "to": "pages_b05_profile_frontend_ui_profile_structures_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_ui_selection", "to": "pages_b05_profile_frontend_ui_selection_ui_selection_\ubc30\uc218_\uad6c\uc870\ubb3c_3\uc790_\uc120\ud0dd_\ub3d9\uae30\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_ui_selection_ui_selection_\ubc30\uc218_\uad6c\uc870\ubb3c_3\uc790_\uc120\ud0dd_\ub3d9\uae30\ud654", "to": "pages_b05_profile_frontend_ui_selection_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_ui_selection_ui_selection_\ubc30\uc218_\uad6c\uc870\ubb3c_3\uc790_\uc120\ud0dd_\ub3d9\uae30\ud654", "to": "pages_b05_profile_frontend_ui_selection_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_profile_frontend_ui_selection_ui_selection_\ubc30\uc218_\uad6c\uc870\ubb3c_3\uc790_\uc120\ud0dd_\ub3d9\uae30\ud654", "to": "pages_b05_profile_frontend_ui_selection_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_api", "to": "pages_b06_section_b06_api_b06_section_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_backend", "to": "pages_b06_section_b06_backend_b06_section_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_backend_b06_section_backend", "to": "pages_b06_section_b06_backend_\uacc4\uc0b0_\uc5d4\uc9c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_backend_b06_section_backend", "to": "pages_b06_section_b06_backend_\ub370\uc774\ud130_\uc601\uad6c_\uc800\uc7a5_\ubc0f_\ud658\uacbd\uc124\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_backend_b06_section_backend", "to": "pages_b06_section_b06_backend_\ub77c\uc6b0\ud130_workflow_\uc870\ud68c_\ud655\uc815_\ud0c0_\ud504\ub85c\uc81d\ud2b8_\ubd88\ub7ec\uc624\uae30_\ubc0f_\uc7ac\uc0dd\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_backend_b06_section_backend", "to": "pages_b06_section_b06_backend_\uc694\uccad_\uc751\ub2f5_\ubaa8\ub378", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_cross_design_ui_2026_09", "to": "pages_b06_section_b06_cross_design_ui_2026_09_b06_\ud6a1\ub2e8_\uacc4\uc0b0_\ubbf8\ub7ec_\uce74\ub4dc_\ud45c\uae30", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_cross_design_ui_2026_09_b06_\ud6a1\ub2e8_\uacc4\uc0b0_\ubbf8\ub7ec_\uce74\ub4dc_\ud45c\uae30", "to": "pages_b06_section_b06_cross_design_ui_2026_09_\ud504\ub860\ud2b8_\uacc4\uc0b0_\ubbf8\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_cross_design_ui_2026_09_b06_\ud6a1\ub2e8_\uacc4\uc0b0_\ubbf8\ub7ec_\uce74\ub4dc_\ud45c\uae30", "to": "pages_b06_section_b06_cross_design_ui_2026_09_\ud6a1\ub2e8_\uce74\ub4dc_\ud45c\uae30", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_basin_multitier", "to": "pages_b06_section_b06_culvert_basin_multitier_b06_\uc9d1\uc218\uc815_\ub2e4\ub2e8_\uae30\uc2ad\ub9c9\uc774", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_basin_multitier_b06_\uc9d1\uc218\uc815_\ub2e4\ub2e8_\uae30\uc2ad\ub9c9\uc774", "to": "pages_b06_section_b06_culvert_basin_multitier_\ubbf8\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_basin_multitier_b06_\uc9d1\uc218\uc815_\ub2e4\ub2e8_\uae30\uc2ad\ub9c9\uc774", "to": "pages_b06_section_b06_culvert_basin_multitier_\uc720\uc785_\uad6c\uc870\ubb3c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_basin_multitier_b06_\uc9d1\uc218\uc815_\ub2e4\ub2e8_\uae30\uc2ad\ub9c9\uc774", "to": "pages_b06_section_b06_culvert_basin_multitier_\uc720\ucd9c_\uc131\ud1a0\ubd80_\ub2e4\ub2e8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_basin_multitier_b06_\uc9d1\uc218\uc815_\ub2e4\ub2e8_\uae30\uc2ad\ub9c9\uc774", "to": "pages_b06_section_b06_culvert_basin_multitier_\uc790\uccb4\uac80\uc99d_\uae30\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_basin_multitier_b06_\uc9d1\uc218\uc815_\ub2e4\ub2e8_\uae30\uc2ad\ub9c9\uc774", "to": "pages_b06_section_b06_culvert_basin_multitier_\uc9d1\uc218\uc815_\uacc4\ub958\uce21_\uc131\ud1a0\ubd80", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_controls", "to": "pages_b06_section_b06_culvert_controls_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uc870\uc791_\ud45c\uc2dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_controls_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uc870\uc791_\ud45c\uc2dc", "to": "pages_b06_section_b06_culvert_controls_4\ucd95_\uc870\uc791\uacfc_\uc7ac\uc9c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_controls_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uc870\uc791_\ud45c\uc2dc", "to": "pages_b06_section_b06_culvert_controls_\uacc4\uc0b0_\ubcf4\uae30_\ubd84\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_controls_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uc870\uc791_\ud45c\uc2dc", "to": "pages_b06_section_b06_culvert_controls_\uad6c\ud604_\ud30c\uc77c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_controls_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uc870\uc791_\ud45c\uc2dc", "to": "pages_b06_section_b06_culvert_controls_\uc790\uccb4\uac80\uc99d_\uae30\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_controls_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uc870\uc791_\ud45c\uc2dc", "to": "pages_b06_section_b06_culvert_controls_\uc870\uc815\ucc3d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_controls_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uc870\uc791_\ud45c\uc2dc", "to": "pages_b06_section_b06_culvert_controls_\uc9d1\uc218\uc815_9\ud0a4_\uc870\uc791", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_geometry_redesign", "to": "pages_b06_section_b06_culvert_geometry_redesign_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uae30\ud558_\uc870\uc791_\uccb4\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_geometry_redesign_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uae30\ud558_\uc870\uc791_\uccb4\uacc4", "to": "pages_b06_section_b06_culvert_geometry_redesign_\uac80\uc99d_\uc0c1\ud0dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_geometry_redesign_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uae30\ud558_\uc870\uc791_\uccb4\uacc4", "to": "pages_b06_section_b06_culvert_geometry_redesign_\uad6c\ud604_\ud30c\uc77c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_geometry_redesign_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uae30\ud558_\uc870\uc791_\uccb4\uacc4", "to": "pages_b06_section_b06_culvert_geometry_redesign_\uae30\uc2ad\ub9c9\uc774_\uad00_\ud575\uc2ec_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_geometry_redesign_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uae30\ud558_\uc870\uc791_\uccb4\uacc4", "to": "pages_b06_section_b06_culvert_geometry_redesign_\uc124\uacc4\uc120_\ud2b8\ub9bc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_geometry_redesign_b06_\ubc30\uc218\uad00_\uad6c\uc870\ubb3c_\uae30\ud558_\uc870\uc791_\uccb4\uacc4", "to": "pages_b06_section_b06_culvert_geometry_redesign_\uc811\uc18d\uc120", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_link_trim", "to": "pages_b06_section_b06_culvert_link_trim_b06_\uc778\uc811_\uce21\uc810_\uad6c\uc870\ubb3c_\ud2b8\ub9bc_\uc815\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_link_trim_b06_\uc778\uc811_\uce21\uc810_\uad6c\uc870\ubb3c_\ud2b8\ub9bc_\uc815\ub9ac", "to": "pages_b06_section_b06_culvert_link_trim_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_link_trim_b06_\uc778\uc811_\uce21\uc810_\uad6c\uc870\ubb3c_\ud2b8\ub9bc_\uc815\ub9ac", "to": "pages_b06_section_b06_culvert_link_trim_\uc6d0\uc778\uacfc_\uacbd\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_link_trim_b06_\uc778\uc811_\uce21\uc810_\uad6c\uc870\ubb3c_\ud2b8\ub9bc_\uc815\ub9ac", "to": "pages_b06_section_b06_culvert_link_trim_\ucc98\ub9ac_\ud56d\ubaa9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_set", "to": "pages_b06_section_b06_culvert_set_b06_\ubc30\uc218\uad00_\ud6a1\ub2e8\ub3c4_\uc138\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_set_b06_\ubc30\uc218\uad00_\ud6a1\ub2e8\ub3c4_\uc138\ud2b8", "to": "pages_b06_section_b06_culvert_set_\uac80\uc99d_\uadfc\uac70\uc640_\ud6c4\uc18d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_set_b06_\ubc30\uc218\uad00_\ud6a1\ub2e8\ub3c4_\uc138\ud2b8", "to": "pages_b06_section_b06_culvert_set_\uacc4\ud68d\uc120_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_set_b06_\ubc30\uc218\uad00_\ud6a1\ub2e8\ub3c4_\uc138\ud2b8", "to": "pages_b06_section_b06_culvert_set_\uad6c\ud604_\ud56d\ubaa9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_set_b06_\ubc30\uc218\uad00_\ud6a1\ub2e8\ub3c4_\uc138\ud2b8", "to": "pages_b06_section_b06_culvert_set_\uc785\ub825_\ud310\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_culvert_set_b06_\ubc30\uc218\uad00_\ud6a1\ub2e8\ub3c4_\uc138\ud2b8", "to": "pages_b06_section_b06_culvert_set_\ud615\uc0c1_\ud45c\uc2dc_\uc21c\uc11c_2026_08_20_\uc2a4\ub0c5\uc0f7", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_db", "to": "pages_b06_section_b06_db_b06_section_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_db_b06_section_db_\uc0ac\uc6a9_\uad00\uacc4", "to": "pages_b06_section_b06_db_repository_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_db_b06_section_db_\uc0ac\uc6a9_\uad00\uacc4", "to": "pages_b06_section_b06_db_\ud30c\uc77c_\uacbd\ub85c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_dependencies", "to": "pages_b06_section_b06_dependencies_b06_section_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_dependencies_b06_section_dependencies", "to": "pages_b06_section_b06_dependencies_\uacf5\ud1b5_\ubaa8\ub4c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_frontend", "to": "pages_b06_section_b06_frontend_b06_section_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_frontend_b06_section_frontend", "to": "pages_b06_section_b06_frontend_2026_08_22_\ud30c\uc77c_\ud55c\uacc4_\uc815\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_frontend_b06_section_frontend", "to": "pages_b06_section_b06_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_frontend_b06_section_frontend", "to": "pages_b06_section_b06_frontend_svg_\ub80c\ub354\ub7ec_\ubc0f_\uc720\ud2f8\ub9ac\ud2f0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_frontend_b06_section_frontend", "to": "pages_b06_section_b06_frontend_ui_\ud328\ub110_\ud06c\uae30_\ubc0f_\ub9ac\uc0ac\uc774\uc800_\uaddc\uce59_2026_08_02_\uc2e0\uc124", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_frontend_b06_section_frontend", "to": "pages_b06_section_b06_frontend_\uae30\uc220\ubd80\ucc44_\ud574\uacb0\ub428", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_frontend_b06_section_frontend", "to": "pages_b06_section_b06_frontend_\uc785\ub825_\uc635\uc158_\ud45c\uc2dc_\uc635\uc158_\ubc0f_\ud6a1\ub2e8_\ubc18\ud3ed_\uc81c\uc5b4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_frontend_b06_section_frontend", "to": "pages_b06_section_b06_frontend_\ud30c\uc77c_\uad6c\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_frontend_b06_section_frontend", "to": "pages_b06_section_b06_frontend_\ud654\uba74_workflow_\uc870\ud68c_\ubc0f_\ud655\uc815_\uc804\uc6a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_masshaul_culvert_2026_09", "to": "pages_b06_section_b06_masshaul_culvert_2026_09_b06_\ud6a1\ub2e8_\uad00_\ud615\uc0c1_\uc720\ud1a0\uace1\uc120_\ud6c4\uc18d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_masshaul_culvert_2026_09_b06_\ud6a1\ub2e8_\uad00_\ud615\uc0c1_\uc720\ud1a0\uace1\uc120_\ud6c4\uc18d", "to": "pages_b06_section_b06_masshaul_culvert_2026_09_i\ud615_\uc9d1\uc218\uc815_\uad00_\ud615\uc0c1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_masshaul_culvert_2026_09_b06_\ud6a1\ub2e8_\uad00_\ud615\uc0c1_\uc720\ud1a0\uace1\uc120_\ud6c4\uc18d", "to": "pages_b06_section_b06_masshaul_culvert_2026_09_\uacc4\uc0b0_\uc0c1\ud0dc\uc640_\uacbd\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_masshaul_culvert_2026_09_b06_\ud6a1\ub2e8_\uad00_\ud615\uc0c1_\uc720\ud1a0\uace1\uc120_\ud6c4\uc18d", "to": "pages_b06_section_b06_masshaul_culvert_2026_09_\ud30c\uc77c_\ucc45\uc784_\ubd84\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_pavement_revetment", "to": "pages_b06_section_b06_pavement_revetment_b06_\ubb3c\ub118\uc774\ud3ec\uc7a5_\ucf58\ud06c\ub9ac\ud2b8_\ud3ec\uc7a5_\ub3c5\ub9bd_\uae30\uc2ad\ub9c9\uc774", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_pavement_revetment_b06_\ubb3c\ub118\uc774\ud3ec\uc7a5_\ucf58\ud06c\ub9ac\ud2b8_\ud3ec\uc7a5_\ub3c5\ub9bd_\uae30\uc2ad\ub9c9\uc774", "to": "pages_b06_section_b06_pavement_revetment_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_pavement_revetment_b06_\ubb3c\ub118\uc774\ud3ec\uc7a5_\ucf58\ud06c\ub9ac\ud2b8_\ud3ec\uc7a5_\ub3c5\ub9bd_\uae30\uc2ad\ub9c9\uc774", "to": "pages_b06_section_b06_pavement_revetment_\ub3c5\ub9bd_\uae30\uc2ad\ub9c9\uc774", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_pavement_revetment_b06_\ubb3c\ub118\uc774\ud3ec\uc7a5_\ucf58\ud06c\ub9ac\ud2b8_\ud3ec\uc7a5_\ub3c5\ub9bd_\uae30\uc2ad\ub9c9\uc774", "to": "pages_b06_section_b06_pavement_revetment_\ud3ec\uc7a5\uacfc_\ubb3c\ub118\uc774", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_revetment_link_controls", "to": "pages_b06_section_b06_revetment_link_controls_b06_\uae30\uc2ad\ub9c9\uc774_\uc5f0\ub3d9_\uacbd\uc0ac_\ub2e8\ubcc4_\uc81c\uc5b4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_revetment_link_controls_b06_\uae30\uc2ad\ub9c9\uc774_\uc5f0\ub3d9_\uacbd\uc0ac_\ub2e8\ubcc4_\uc81c\uc5b4", "to": "pages_b06_section_b06_revetment_link_controls_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_revetment_link_controls_b06_\uae30\uc2ad\ub9c9\uc774_\uc5f0\ub3d9_\uacbd\uc0ac_\ub2e8\ubcc4_\uc81c\uc5b4", "to": "pages_b06_section_b06_revetment_link_controls_\ub2e8\ubcc4_\uad6c\uac04\uac12", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_revetment_link_controls_b06_\uae30\uc2ad\ub9c9\uc774_\uc5f0\ub3d9_\uacbd\uc0ac_\ub2e8\ubcc4_\uc81c\uc5b4", "to": "pages_b06_section_b06_revetment_link_controls_\uc120\ud0dd\uacfc_\ud558\uc774\ub77c\uc774\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_revetment_link_controls_b06_\uae30\uc2ad\ub9c9\uc774_\uc5f0\ub3d9_\uacbd\uc0ac_\ub2e8\ubcc4_\uc81c\uc5b4", "to": "pages_b06_section_b06_revetment_link_controls_\uc5f0\ub3d9\uacfc_\uacbd\uc0ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_revetment_link_controls_b06_\uae30\uc2ad\ub9c9\uc774_\uc5f0\ub3d9_\uacbd\uc0ac_\ub2e8\ubcc4_\uc81c\uc5b4", "to": "pages_b06_section_b06_revetment_link_controls_\uc815\ubcf8\uacfc_\uacf5\uc6a9_\ubaa8\ub378", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_b06_revetment_link_controls_b06_\uae30\uc2ad\ub9c9\uc774_\uc5f0\ub3d9_\uacbd\uc0ac_\ub2e8\ubcc4_\uc81c\uc5b4", "to": "pages_b06_section_b06_revetment_link_controls_\ud615\ud0dc\uc640_\uc870\uc815\ucc3d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_backend_b06_section_engine_areas", "to": "pages_b06_section_backend_b06_section_engine_areas_b06_section_engine_areas_\ud6a1\ub2e8_\uba74\uc801_\uc801\ubd84_\uc5f0\uc0b0_\uc5d4\uc9c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_backend_b06_section_engine_areas_b06_section_engine_areas_\ud6a1\ub2e8_\uba74\uc801_\uc801\ubd84_\uc5f0\uc0b0_\uc5d4\uc9c4", "to": "pages_b06_section_backend_b06_section_engine_areas_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_backend_b06_section_engine_areas_b06_section_engine_areas_\ud6a1\ub2e8_\uba74\uc801_\uc801\ubd84_\uc5f0\uc0b0_\uc5d4\uc9c4", "to": "pages_b06_section_backend_b06_section_engine_areas_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_backend_b06_section_engine_areas_b06_section_engine_areas_\ud6a1\ub2e8_\uba74\uc801_\uc801\ubd84_\uc5f0\uc0b0_\uc5d4\uc9c4", "to": "pages_b06_section_backend_b06_section_engine_areas_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_backend_b06_section_router", "to": "pages_b06_section_backend_b06_section_router_b06_section_router_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_backend_b06_section_router_b06_section_router_py", "to": "pages_b06_section_backend_b06_section_router_\ub77c\uc6b0\ud130_api_\ubc0f_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_backend_b06_section_router_b06_section_router_py", "to": "pages_b06_section_backend_b06_section_router_\uc5f0\uad00_\uac1c\ub150_\ubc0f_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_backend_b06_section_router_confirm", "to": "pages_b06_section_backend_b06_section_router_confirm_b06_section_router_confirm_\uc784\uc2dc_\uc800\uc7a5_\ubc0f_\ud655\uc815_\ub77c\uc6b0\ud130", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_backend_b06_section_router_confirm_b06_section_router_confirm_\uc784\uc2dc_\uc800\uc7a5_\ubc0f_\ud655\uc815_\ub77c\uc6b0\ud130", "to": "pages_b06_section_backend_b06_section_router_confirm_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_backend_b06_section_router_confirm_b06_section_router_confirm_\uc784\uc2dc_\uc800\uc7a5_\ubc0f_\ud655\uc815_\ub77c\uc6b0\ud130", "to": "pages_b06_section_backend_b06_section_router_confirm_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_backend_b06_section_router_confirm_b06_section_router_confirm_\uc784\uc2dc_\uc800\uc7a5_\ubc0f_\ud655\uc815_\ub77c\uc6b0\ud130", "to": "pages_b06_section_backend_b06_section_router_confirm_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_api_fetch", "to": "pages_b06_section_frontend_b06_section_api_fetch_b06_section_api_fetch_b06_\ud504\ub860\ud2b8\uc5d4\ub4dc_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_api_fetch_b06_section_api_fetch_b06_\ud504\ub860\ud2b8\uc5d4\ub4dc_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "to": "pages_b06_section_frontend_b06_section_api_fetch_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_api_fetch_b06_section_api_fetch_b06_\ud504\ub860\ud2b8\uc5d4\ub4dc_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "to": "pages_b06_section_frontend_b06_section_api_fetch_2_\uc8fc\uc694_\uc5f0\ub3d9_api_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_cross_areas", "to": "pages_b06_section_frontend_b06_section_ui_cross_areas_b06_section_ui_cross_areas_\ud6a1\ub2e8_\ub2e8\uba74\uc801_\ud45c\uae30_\ubc0f_\ubc34\ub4dc_\ud558\uc774\ub77c\uc774\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_cross_areas_b06_section_ui_cross_areas_\ud6a1\ub2e8_\ub2e8\uba74\uc801_\ud45c\uae30_\ubc0f_\ubc34\ub4dc_\ud558\uc774\ub77c\uc774\ud2b8", "to": "pages_b06_section_frontend_b06_section_ui_cross_areas_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_cross_areas_b06_section_ui_cross_areas_\ud6a1\ub2e8_\ub2e8\uba74\uc801_\ud45c\uae30_\ubc0f_\ubc34\ub4dc_\ud558\uc774\ub77c\uc774\ud2b8", "to": "pages_b06_section_frontend_b06_section_ui_cross_areas_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_cross_areas_b06_section_ui_cross_areas_\ud6a1\ub2e8_\ub2e8\uba74\uc801_\ud45c\uae30_\ubc0f_\ubc34\ub4dc_\ud558\uc774\ub77c\uc774\ud2b8", "to": "pages_b06_section_frontend_b06_section_ui_cross_areas_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_cross_design", "to": "pages_b06_section_frontend_b06_section_ui_cross_design_b06_section_ui_cross_design_\ud6a1\ub2e8_\uce21\uc810\ubcc4_\uc138\ubd80_\uc124\uacc4_\ucee8\ud2b8\ub864", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_cross_design_b06_section_ui_cross_design_\ud6a1\ub2e8_\uce21\uc810\ubcc4_\uc138\ubd80_\uc124\uacc4_\ucee8\ud2b8\ub864", "to": "pages_b06_section_frontend_b06_section_ui_cross_design_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_cross_design_b06_section_ui_cross_design_\ud6a1\ub2e8_\uce21\uc810\ubcc4_\uc138\ubd80_\uc124\uacc4_\ucee8\ud2b8\ub864", "to": "pages_b06_section_frontend_b06_section_ui_cross_design_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_cross_design_b06_section_ui_cross_design_\ud6a1\ub2e8_\uce21\uc810\ubcc4_\uc138\ubd80_\uc124\uacc4_\ucee8\ud2b8\ub864", "to": "pages_b06_section_frontend_b06_section_ui_cross_design_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_b06_section_ui_masshaul_\uc720\ud1a0\uace1\uc120_\uc801\ubd84_\uacc4\uc0b0_\uc5d4\uc9c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_b06_section_ui_masshaul_\uc720\ud1a0\uace1\uc120_\uc801\ubd84_\uacc4\uc0b0_\uc5d4\uc9c4", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_b06_section_ui_masshaul_\uc720\ud1a0\uace1\uc120_\uc801\ubd84_\uacc4\uc0b0_\uc5d4\uc9c4", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_b06_section_ui_masshaul_\uc720\ud1a0\uace1\uc120_\uc801\ubd84_\uacc4\uc0b0_\uc5d4\uc9c4", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_balance", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_b06_section_ui_masshaul_balance_\ud3c9\ud615\uc120_\ubc0f_\uc7a5\ube44_\ub760_\ubd84\ud560_\uc5d4\uc9c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_b06_section_ui_masshaul_balance_\ud3c9\ud615\uc120_\ubc0f_\uc7a5\ube44_\ub760_\ubd84\ud560_\uc5d4\uc9c4", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_b06_section_ui_masshaul_balance_\ud3c9\ud615\uc120_\ubc0f_\uc7a5\ube44_\ub760_\ubd84\ud560_\uc5d4\uc9c4", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\uc54c\uace0\ub9ac\uc998", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_b06_section_ui_masshaul_balance_\ud3c9\ud615\uc120_\ubc0f_\uc7a5\ube44_\ub760_\ubd84\ud560_\uc5d4\uc9c4", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view_b06_section_ui_masshaul_balance_view_\uc6b4\ubc18_\ub760_\uc2dc\uac01\ud654_\ub80c\ub354\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view_b06_section_ui_masshaul_balance_view_\uc6b4\ubc18_\ub760_\uc2dc\uac01\ud654_\ub80c\ub354\ub7ec", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view_b06_section_ui_masshaul_balance_view_\uc6b4\ubc18_\ub760_\uc2dc\uac01\ud654_\ub80c\ub354\ub7ec", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ub80c\ub354\ub9c1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view_b06_section_ui_masshaul_balance_view_\uc6b4\ubc18_\ub760_\uc2dc\uac01\ud654_\ub80c\ub354\ub7ec", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_balance_view_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon_b06_section_ui_masshaul_balloon_\ubb3c\ub7c9_\ub9d0\ud48d\uc120_\ubc30\uce58_\ubc0f_\uc870\uc791", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon_b06_section_ui_masshaul_balloon_\ubb3c\ub7c9_\ub9d0\ud48d\uc120_\ubc30\uce58_\ubc0f_\uc870\uc791", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon_b06_section_ui_masshaul_balloon_\ubb3c\ub7c9_\ub9d0\ud48d\uc120_\ubc30\uce58_\ubc0f_\uc870\uc791", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\uc54c\uace0\ub9ac\uc998", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon_b06_section_ui_masshaul_balloon_\ubb3c\ub7c9_\ub9d0\ud48d\uc120_\ubc30\uce58_\ubc0f_\uc870\uc791", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_balloon_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_curve", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_curve_b06_section_ui_masshaul_curve_\uc720\ud1a0\uace1\uc120_\uada4\uc801_\ubcf4\uac04_\ubc0f_\ub80c\ub354\ub9c1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_curve_b06_section_ui_masshaul_curve_\uc720\ud1a0\uace1\uc120_\uada4\uc801_\ubcf4\uac04_\ubc0f_\ub80c\ub354\ub9c1", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_curve_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_curve_b06_section_ui_masshaul_curve_\uc720\ud1a0\uace1\uc120_\uada4\uc801_\ubcf4\uac04_\ubc0f_\ub80c\ub354\ub9c1", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_curve_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\uae30\ud558_\uc218\ud559", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_curve_b06_section_ui_masshaul_curve_\uc720\ud1a0\uace1\uc120_\uada4\uc801_\ubcf4\uac04_\ubc0f_\ub80c\ub354\ub9c1", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_curve_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_settle", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_settle_b06_section_ui_masshaul_settle_\ud1a0\ub7c9_\uc815\uc0b0_\ubc0f_\uc7a5\uac70\ub9ac_\uc0c1\uc1c4_\uc5d4\uc9c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_settle_b06_section_ui_masshaul_settle_\ud1a0\ub7c9_\uc815\uc0b0_\ubc0f_\uc7a5\uac70\ub9ac_\uc0c1\uc1c4_\uc5d4\uc9c4", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_settle_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_settle_b06_section_ui_masshaul_settle_\ud1a0\ub7c9_\uc815\uc0b0_\ubc0f_\uc7a5\uac70\ub9ac_\uc0c1\uc1c4_\uc5d4\uc9c4", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_settle_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ub85c\uc9c1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_settle_b06_section_ui_masshaul_settle_\ud1a0\ub7c9_\uc815\uc0b0_\ubc0f_\uc7a5\uac70\ub9ac_\uc0c1\uc1c4_\uc5d4\uc9c4", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_settle_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_view", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_view_b06_section_ui_masshaul_view_\uc720\ud1a0\uace1\uc120_\uc2dc\uac01\ud654_\ub80c\ub354\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_view_b06_section_ui_masshaul_view_\uc720\ud1a0\uace1\uc120_\uc2dc\uac01\ud654_\ub80c\ub354\ub7ec", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_view_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_view_b06_section_ui_masshaul_view_\uc720\ud1a0\uace1\uc120_\uc2dc\uac01\ud654_\ub80c\ub354\ub7ec", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_view_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_masshaul_view_b06_section_ui_masshaul_view_\uc720\ud1a0\uace1\uc120_\uc2dc\uac01\ud654_\ub80c\ub354\ub7ec", "to": "pages_b06_section_frontend_b06_section_ui_masshaul_view_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_page", "to": "pages_b06_section_frontend_b06_section_ui_page_b06_section_ui_page_b06_\uba54\uc778_\ud398\uc774\uc9c0_\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_page_b06_section_ui_page_b06_\uba54\uc778_\ud398\uc774\uc9c0_\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "to": "pages_b06_section_frontend_b06_section_ui_page_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_page_b06_section_ui_page_b06_\uba54\uc778_\ud398\uc774\uc9c0_\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "to": "pages_b06_section_frontend_b06_section_ui_page_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_page_b06_section_ui_page_b06_\uba54\uc778_\ud398\uc774\uc9c0_\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "to": "pages_b06_section_frontend_b06_section_ui_page_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_section_view", "to": "pages_b06_section_frontend_b06_section_ui_section_view_b06_section_ui_section_view_\uc885_\ud6a1\ub2e8_\ubc0f_\uc720\ud1a0\uace1\uc120_\ubdf0_\uc870\ub9bd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_section_view_b06_section_ui_section_view_\uc885_\ud6a1\ub2e8_\ubc0f_\uc720\ud1a0\uace1\uc120_\ubdf0_\uc870\ub9bd", "to": "pages_b06_section_frontend_b06_section_ui_section_view_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_section_view_b06_section_ui_section_view_\uc885_\ud6a1\ub2e8_\ubc0f_\uc720\ud1a0\uace1\uc120_\ubdf0_\uc870\ub9bd", "to": "pages_b06_section_frontend_b06_section_ui_section_view_2_\uc8fc\uc694_\uae30\ub2a5_\ubc0f_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_section_view_b06_section_ui_section_view_\uc885_\ud6a1\ub2e8_\ubc0f_\uc720\ud1a0\uace1\uc120_\ubdf0_\uc870\ub9bd", "to": "pages_b06_section_frontend_b06_section_ui_section_view_3_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_standard_diagram", "to": "pages_b06_section_frontend_b06_section_ui_standard_diagram_b06_section_ui_standard_diagram_\ud45c\uc900\ub2e8\uba74_\ubaa8\uc2dd\ub3c4_\ucef4\ud3ec\ub10c\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_standard_diagram_b06_section_ui_standard_diagram_\ud45c\uc900\ub2e8\uba74_\ubaa8\uc2dd\ub3c4_\ucef4\ud3ec\ub10c\ud2b8", "to": "pages_b06_section_frontend_b06_section_ui_standard_diagram_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_standard_diagram_b06_section_ui_standard_diagram_\ud45c\uc900\ub2e8\uba74_\ubaa8\uc2dd\ub3c4_\ucef4\ud3ec\ub10c\ud2b8", "to": "pages_b06_section_frontend_b06_section_ui_standard_diagram_2_\uc8fc\uc694_\uae30\ub2a5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_standard_panel", "to": "pages_b06_section_frontend_b06_section_ui_standard_panel_b06_section_ui_standard_panel_\ud45c\uc900\ub2e8\uba74_\uc785\ub825_\ubc0f_\uc81c\uc5b4_\ud328\ub110", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_standard_panel_b06_section_ui_standard_panel_\ud45c\uc900\ub2e8\uba74_\uc785\ub825_\ubc0f_\uc81c\uc5b4_\ud328\ub110", "to": "pages_b06_section_frontend_b06_section_ui_standard_panel_1_\uac1c\uc694_\ubc0f_\uc5ed\ud560", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_section_frontend_b06_section_ui_standard_panel_b06_section_ui_standard_panel_\ud45c\uc900\ub2e8\uba74_\uc785\ub825_\ubc0f_\uc81c\uc5b4_\ud328\ub110", "to": "pages_b06_section_frontend_b06_section_ui_standard_panel_2_\uc8fc\uc694_\uae30\ub2a5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_frontend", "to": "pages_b07_designdetail_b07_frontend_b07_designdetail_\ud604\uc7ac_\ucc45\uc784", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_standard_drawings_2026_09_b07_\uad6c\uc870\ubb3c_\ud45c\uc900\ub3c4_\uc870\uc0ac_\ud569\uc758\uc640_\ud604\uc7ac_\ud1b5\ub85c", "to": "pages_b07_designdetail_b07_frontend_b07_designdetail_\ud604\uc7ac_\ucc45\uc784", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_standard_drawings_2026_09", "to": "pages_b07_designdetail_b07_standard_drawings_2026_09_b07_\uad6c\uc870\ubb3c_\ud45c\uc900\ub3c4_\uc870\uc0ac_\ud569\uc758\uc640_\ud604\uc7ac_\ud1b5\ub85c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_standard_drawings_2026_09_b07_\uad6c\uc870\ubb3c_\ud45c\uc900\ub3c4_\uc870\uc0ac_\ud569\uc758\uc640_\ud604\uc7ac_\ud1b5\ub85c", "to": "pages_b08_quantity_b08_overview_2026_09_b08_quantity_2026_09_\uc218\ub7c9\uc0b0\ucd9c", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_standard_drawings_2026_09_b07_\uad6c\uc870\ubb3c_\ud45c\uc900\ub3c4_\uc870\uc0ac_\ud569\uc758\uc640_\ud604\uc7ac_\ud1b5\ub85c", "to": "pages_b09_estimation_b09_overview_2026_09_b09_estimation_2026_09_\uc6d0\uac00\uacc4\uc0b0", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_standard_drawings_2026_09_b07_\uad6c\uc870\ubb3c_\ud45c\uc900\ub3c4_\uc870\uc0ac_\ud569\uc758\uc640_\ud604\uc7ac_\ud1b5\ub85c", "to": "pages_b07_designdetail_b07_standard_drawings_2026_09_9\uc6d4_9\uc77c_\uad6c\ud604_\uc2e4\uce21_\ubcf4\uac15", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_standard_drawings_2026_09_b07_\uad6c\uc870\ubb3c_\ud45c\uc900\ub3c4_\uc870\uc0ac_\ud569\uc758\uc640_\ud604\uc7ac_\ud1b5\ub85c", "to": "pages_b07_designdetail_b07_standard_drawings_2026_09_\uad6c\ud604_\uc9c4\uc785\uc810", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_standard_drawings_2026_09_b07_\uad6c\uc870\ubb3c_\ud45c\uc900\ub3c4_\uc870\uc0ac_\ud569\uc758\uc640_\ud604\uc7ac_\ud1b5\ub85c", "to": "pages_b07_designdetail_b07_standard_drawings_2026_09_\uadfc\uac70\uc640_\ub0a8\uc740_\ubd88\ud655\uc2e4\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_standard_drawings_2026_09_b07_\uad6c\uc870\ubb3c_\ud45c\uc900\ub3c4_\uc870\uc0ac_\ud569\uc758\uc640_\ud604\uc7ac_\ud1b5\ub85c", "to": "pages_b07_designdetail_b07_standard_drawings_2026_09_\ub370\uc774\ud130_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_designdetail_b07_standard_drawings_2026_09_b07_\uad6c\uc870\ubb3c_\ud45c\uc900\ub3c4_\uc870\uc0ac_\ud569\uc758\uc640_\ud604\uc7ac_\ud1b5\ub85c", "to": "pages_b07_designdetail_b07_standard_drawings_2026_09_\uc870\uc0ac\ub85c_\ud655\uc778\ub41c_\uc124\uacc4_\uc6d0\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_quantity_b07_backend", "to": "pages_b07_quantity_b07_backend_b07_quantity_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_quantity_b07_backend_b07_quantity_backend", "to": "pages_b07_quantity_b07_backend_\uad6c\ud604\ub418\uc9c0_\uc54a\uc740_\ud56d\ubaa9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_quantity_b07_backend_b07_quantity_backend", "to": "pages_b07_quantity_b07_backend_\uad6c\ud604\ub41c_\ud56d\ubaa9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_quantity_b07_backend_b07_quantity_backend", "to": "pages_b07_quantity_b07_backend_\ucc45\uc784_\uacbd\uacc4_\ubbf8\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_quantity_b07_db", "to": "pages_b07_quantity_b07_db_b07_quantity_db", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_quantity_b07_frontend", "to": "pages_b07_quantity_b07_frontend_b07_quantity_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_quantity_b07_frontend_b07_quantity_frontend", "to": "pages_b07_quantity_b07_frontend_\ud604\uc7ac_\uc0ac\uc6a9\uc790_\ub3d9\uc791", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_quantity_backend_b07_quantity_router", "to": "pages_b07_quantity_backend_b07_quantity_router_b07_quantity_router_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_blocks", "to": "pages_b08_designdetail_b08_cad_blocks_b08_cad_\ube14\ub85d_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc0ac\uc9c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_blocks_b08_cad_\ube14\ub85d_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc0ac\uc9c4", "to": "pages_b08_designdetail_b08_cad_blocks_\uac80\uc99d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_blocks_b08_cad_\ube14\ub85d_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc0ac\uc9c4", "to": "pages_b08_designdetail_b08_cad_blocks_\uad6c\ud604", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_blocks_b08_cad_\ube14\ub85d_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc0ac\uc9c4", "to": "pages_b08_designdetail_b08_cad_blocks_\ubc94\uc704_\uacb0\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_commands", "to": "pages_b08_designdetail_b08_cad_commands_b08_openwebcad_\uba85\ub839_\uccb4\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_commands_b08_openwebcad_\uba85\ub839_\uccb4\uacc4", "to": "pages_b08_designdetail_b08_cad_commands_\uac80\uc99d_\uc81c\ud55c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_commands_b08_openwebcad_\uba85\ub839_\uccb4\uacc4", "to": "pages_b08_designdetail_b08_cad_commands_\uad6c\ud604_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_commands_b08_openwebcad_\uba85\ub839_\uccb4\uacc4", "to": "pages_b08_designdetail_b08_cad_commands_\ud575\uc2ec_\uad6c\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_interaction", "to": "pages_b08_designdetail_b08_cad_interaction_b08_cad_\uae30\ubcf8_\uc870\uc791", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_interaction_b08_cad_\uae30\ubcf8_\uc870\uc791", "to": "pages_b08_designdetail_b08_cad_interaction_\uac80\uc99d_\uc81c\uc678", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_interaction_b08_cad_\uae30\ubcf8_\uc870\uc791", "to": "pages_b08_designdetail_b08_cad_interaction_\uc120\ud0dd_\ud3b8\uc9d1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_interaction_b08_cad_\uae30\ubcf8_\uc870\uc791", "to": "pages_b08_designdetail_b08_cad_interaction_\uc785\ub825_\uc0c1\ud0dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_table_entity", "to": "pages_b08_designdetail_b08_cad_table_entity_b08_cad_tableentity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_table_entity_b08_cad_tableentity", "to": "pages_b08_designdetail_b08_cad_table_entity_\uac80\uc99d_\ud6c4\uc18d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_table_entity_b08_cad_tableentity", "to": "pages_b08_designdetail_b08_cad_table_entity_\uae30\ub2a5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_table_entity_b08_cad_tableentity", "to": "pages_b08_designdetail_b08_cad_table_entity_\ubaa8\ub378", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_table_entity_b08_cad_tableentity", "to": "pages_b08_designdetail_b08_cad_table_entity_\uc774\uad00_\ubc94\uc704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_title_block", "to": "pages_b08_designdetail_b08_cad_title_block_b08_cad_\ub3c4\uac01_\ud45c\uc81c\ub780", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_title_block_b08_cad_\ub3c4\uac01_\ud45c\uc81c\ub780", "to": "pages_b08_designdetail_b08_cad_title_block_\uac12_\uacf5\uae09", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_title_block_b08_cad_\ub3c4\uac01_\ud45c\uc81c\ub780", "to": "pages_b08_designdetail_b08_cad_title_block_\ub3c4\uac01_\ud3b8\uc9d1_\ubcf4\uc874", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_title_block_b08_cad_\ub3c4\uac01_\ud45c\uc81c\ub780", "to": "pages_b08_designdetail_b08_cad_title_block_\ud68c\uc0ac_\uc790\uc0b0\uacfc_\ub2f4\ub2f9\uc790", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_usability_2026_09_01", "to": "pages_b08_designdetail_b08_cad_usability_2026_09_01_b08_cad_\uc0ac\uc6a9\uc790_\ud3b8\uc758\uc131_\uc815\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_usability_2026_09_01_b08_cad_\uc0ac\uc6a9\uc790_\ud3b8\uc758\uc131_\uc815\ub9ac", "to": "pages_b08_designdetail_b08_cad_usability_2026_09_01_\uac80\uc99d_\uc0c1\ud0dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_usability_2026_09_01_b08_cad_\uc0ac\uc6a9\uc790_\ud3b8\uc758\uc131_\uc815\ub9ac", "to": "pages_b08_designdetail_b08_cad_usability_2026_09_01_\uad6c\ud604_\uae30\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_usability_2026_09_01_b08_cad_\uc0ac\uc6a9\uc790_\ud3b8\uc758\uc131_\uc815\ub9ac", "to": "pages_b08_designdetail_b08_cad_usability_2026_09_01_\uc0ac\uc6a9\uc790_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_api", "to": "pages_b08_designdetail_b08_api_b08_designdetail_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_api_b08_designdetail_api", "to": "pages_b08_designdetail_b08_api_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_backend", "to": "pages_b08_designdetail_b08_backend_b08_designdetail_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_backend_b08_designdetail_backend", "to": "pages_b08_designdetail_b08_backend_\ub3c4\uac01_\ud15c\ud50c\ub9bf_\ubcc0\ud658_\ubc0f_\uc885\ub2e8\ub3c4_a1_\ub3c4\uac01_\ubcd1\ud569_2026_07_26", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_backend_b08_designdetail_backend", "to": "pages_b08_designdetail_b08_backend_\ub3c4\uba74_\uad00\ub9ac_\uc885\ub2e8_30\uce21\uc810_\ubd84\ud560_cad_\uc218\ub7c9\uc0b0\ucd9c\ud45c_\ubc0f_\ub3c4\uba74_\ud15c\ud50c\ub9bf_\ud30c\uc774\ud504\ub77c\uc778", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_backend_b08_designdetail_backend", "to": "pages_b08_designdetail_b08_backend_\uc6cc\ud06c\ud50c\ub85c\uc6b0_\uac8c\uc774\ud305_\uc5f0\ub3d9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_backend_b08_designdetail_backend", "to": "pages_b08_designdetail_b08_backend_\uc885\ub2e8\ub3c4_30\uce21\uc810_n\ubd84\ud560_\ubc0f_\ub0a9\ud488_\uc591\uc2dd_\uce21\uc810_\ud14c\uc774\ube14_2026_07_25_n_1_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_backend_b08_designdetail_backend", "to": "pages_b08_designdetail_b08_backend_\ud604\uc7ac_\ucc45\uc784_\uacbd\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_backend_b08_designdetail_backend", "to": "pages_b08_designdetail_b08_backend_\ud6a1\ub2e8\ub3c4_4\uac1c_\uc120\ubcc4_\ub808\uc774\uc5b4_\ubc0f_cad_\uc218\ub7c9\uc0b0\ucd9c\ud45c_2026_07_25_n_1_2_n_1_3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_delivery_2026_09", "to": "pages_b08_designdetail_b08_cad_delivery_2026_09_b08_cad_\ub0a9\ud488_\ub3c4\uba74_\ud6c4\uc18d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_delivery_2026_09_b08_cad_\ub0a9\ud488_\ub3c4\uba74_\ud6c4\uc18d", "to": "pages_b08_designdetail_b08_cad_delivery_2026_09_cad_\ud3b8\uc9d1_\ud655\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cad_delivery_2026_09_b08_cad_\ub0a9\ud488_\ub3c4\uba74_\ud6c4\uc18d", "to": "pages_b08_designdetail_b08_cad_delivery_2026_09_\ud1a0\uc801\ub3c4_\uc720\uc5ed\ub3c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cross_structure_sheets", "to": "pages_b08_designdetail_b08_cross_structure_sheets_b08_\ud6a1\ub2e8\ub3c4_\uad6c\uc870\ubb3c_\uc7a5_\ubc30\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cross_structure_sheets_b08_\ud6a1\ub2e8\ub3c4_\uad6c\uc870\ubb3c_\uc7a5_\ubc30\uce58", "to": "pages_b08_designdetail_b08_cross_structure_sheets_\uacb0\uacfc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cross_structure_sheets_b08_\ud6a1\ub2e8\ub3c4_\uad6c\uc870\ubb3c_\uc7a5_\ubc30\uce58", "to": "pages_b08_designdetail_b08_cross_structure_sheets_\ub370\uc774\ud130_\uad6c\ud604_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cross_structure_sheets_b08_\ud6a1\ub2e8\ub3c4_\uad6c\uc870\ubb3c_\uc7a5_\ubc30\uce58", "to": "pages_b08_designdetail_b08_cross_structure_sheets_\ubb38\uc81c\uc640_\uacb0\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_cross_structure_sheets_b08_\ud6a1\ub2e8\ub3c4_\uad6c\uc870\ubb3c_\uc7a5_\ubc30\uce58", "to": "pages_b08_designdetail_b08_cross_structure_sheets_\ud55c\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_dependencies", "to": "pages_b08_designdetail_b08_dependencies_b08_designdetail_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_dependencies_b08_designdetail_dependencies", "to": "pages_b08_designdetail_b08_dependencies_backend_requirements_txt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_dependencies_b08_designdetail_dependencies", "to": "pages_b08_designdetail_b08_dependencies_frontend_package_json_tsconfig_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_drawing_masshaul_watershed", "to": "pages_b08_designdetail_b08_drawing_masshaul_watershed_b08_\ud1a0\uc801\ub3c4_\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_drawing_masshaul_watershed_b08_\ud1a0\uc801\ub3c4_\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "to": "pages_b08_designdetail_b08_drawing_masshaul_watershed_\uac80\uc99d_\ud55c\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_drawing_masshaul_watershed_b08_\ud1a0\uc801\ub3c4_\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "to": "pages_b08_designdetail_b08_drawing_masshaul_watershed_\uad6c\ud604_\uac80\uc99d_\uc644\ub8cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_drawing_masshaul_watershed_b08_\ud1a0\uc801\ub3c4_\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "to": "pages_b08_designdetail_b08_drawing_masshaul_watershed_\ub0a8\uc740_\uacb0\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_drawing_masshaul_watershed_b08_\ud1a0\uc801\ub3c4_\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "to": "pages_b08_designdetail_b08_drawing_masshaul_watershed_\ub370\uc774\ud130_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_drawing_masshaul_watershed_b08_\ud1a0\uc801\ub3c4_\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "to": "pages_b08_designdetail_b08_drawing_masshaul_watershed_\ub3c4\uba74_\uae30\uc900", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_drawing_masshaul_watershed_b08_\ud1a0\uc801\ub3c4_\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "to": "pages_b08_designdetail_b08_drawing_masshaul_watershed_\uc720\uc5ed_\uc815\ubcf4\ud45c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_frontend", "to": "pages_b08_designdetail_b08_frontend_b08_designdetail_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_frontend_b08_designdetail_frontend", "to": "pages_b08_designdetail_b08_frontend_cad_\uacc4\ud68d\uc120_\ub808\uc774\uc5b4_\uc5f0\ub3d9_\ubc0f_\ud3b8\uc9d1_\uc9c0\uc6d0_2026_07_22", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_frontend_b08_designdetail_frontend", "to": "pages_b08_designdetail_b08_frontend_openwebcad_\ub2e8\uc704_\uc815\ud569_\uc120_\ud2b9\uc131_\ud3f0\ud2b8_ui_\ubc0f_fit_in_all_2026_07_20", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_frontend_b08_designdetail_frontend", "to": "pages_b08_designdetail_b08_frontend_\ub3c5\ub9bd\ud615_cad_\uc784\ubca0\ub4dc_\ubc0f_\ub370\uc774\ud130_\uc5f0\ub3d9_\uc544\ud0a4\ud14d\ucc98", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_frontend_b08_designdetail_frontend", "to": "pages_b08_designdetail_b08_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_frontend_b08_designdetail_frontend", "to": "pages_b08_designdetail_b08_frontend_\uc8fc\uc694_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_b08_frontend_b08_designdetail_frontend", "to": "pages_b08_designdetail_b08_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_backend_b08_designdetail_router", "to": "pages_b08_designdetail_backend_b08_designdetail_router_b08_designdetail_router_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_designdetail_backend_b08_designdetail_router_b08_designdetail_router_py", "to": "pages_b08_designdetail_backend_b08_designdetail_router_\uc2e4\uc81c_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_quantity_b08_2026_09_09_completion", "to": "pages_b08_quantity_b08_2026_09_09_completion_b08_\uc218\ub7c9\uc0b0\ucd9c_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_quantity_b08_2026_09_09_completion_b08_\uc218\ub7c9\uc0b0\ucd9c_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "to": "pages_b08_quantity_b08_2026_09_09_completion_\uac80\uc99d_\uae30\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_quantity_b08_2026_09_09_completion_b08_\uc218\ub7c9\uc0b0\ucd9c_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "to": "pages_b08_quantity_b08_2026_09_09_completion_\uad6c\uc870\ubb3c_\uc218\ub7c9_\ud45c\uc2dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_quantity_b08_2026_09_09_completion_b08_\uc218\ub7c9\uc0b0\ucd9c_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "to": "pages_b08_quantity_b08_2026_09_09_completion_\ub0a8\uc740_\uacbd\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_quantity_b08_2026_09_09_completion_b08_\uc218\ub7c9\uc0b0\ucd9c_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "to": "pages_b08_quantity_b08_2026_09_09_completion_\ubc11\uc218\uc640_\uc778\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_quantity_b08_overview_2026_09", "to": "pages_b08_quantity_b08_overview_2026_09_b08_quantity_2026_09_\uc218\ub7c9\uc0b0\ucd9c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_quantity_b08_overview_2026_09_b08_quantity_2026_09_\uc218\ub7c9\uc0b0\ucd9c", "to": "pages_b08_quantity_b08_overview_2026_09_\uac80\uc99d\ub41c_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_quantity_b08_overview_2026_09_b08_quantity_2026_09_\uc218\ub7c9\uc0b0\ucd9c", "to": "pages_b08_quantity_b08_overview_2026_09_\uad6c\ud604_\uad6c\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_quantity_b08_overview_2026_09_b08_quantity_2026_09_\uc218\ub7c9\uc0b0\ucd9c", "to": "pages_b08_quantity_b08_overview_2026_09_\uc644\ub8cc_\uc81c\ud55c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_2026_09_09_completion", "to": "pages_b09_estimation_b09_2026_09_09_completion_b09_\uc6d0\uac00\uacc4\uc0b0_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_2026_09_09_completion_b09_\uc6d0\uac00\uacc4\uc0b0_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "to": "pages_b09_estimation_b09_2026_09_09_completion_\uac00\uaca9_\uc870\uac74_\uc785\ub825", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_2026_09_09_completion_b09_\uc6d0\uac00\uacc4\uc0b0_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "to": "pages_b09_estimation_b09_2026_09_09_completion_\uac80\uc99d_\uae30\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_2026_09_09_completion_b09_\uc6d0\uac00\uacc4\uc0b0_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "to": "pages_b09_estimation_b09_2026_09_09_completion_\uae30\uacc4_\uc81c\ube44\uc728_\uc0b0\ucd9c\ubb3c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_2026_09_09_completion_b09_\uc6d0\uac00\uacc4\uc0b0_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "to": "pages_b09_estimation_b09_2026_09_09_completion_\ub0a8\uc740_\uacbd\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_2026_09_09_completion_b09_\uc6d0\uac00\uacc4\uc0b0_2026_09_09_\uc644\ub8cc_\uadfc\uac70", "to": "pages_b09_estimation_b09_2026_09_09_completion_\ub2e8\uac00_\ubc11\uc218_\uc644\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_frontend", "to": "pages_b09_estimation_b09_frontend_b09_estimation_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_frontend_b09_estimation_frontend", "to": "pages_b09_estimation_b09_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_frontend_b09_estimation_frontend", "to": "pages_b09_estimation_b09_frontend_\ubc31\uc5d4\ub4dc_db_\ubbf8\ucc29\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_frontend_b09_estimation_frontend", "to": "pages_b09_estimation_b09_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_frontend_b09_estimation_frontend", "to": "pages_b09_estimation_b09_frontend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_frontend_b09_estimation_frontend", "to": "pages_b09_estimation_b09_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_frontend_b09_estimation_frontend", "to": "pages_b09_estimation_b09_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_overview_2026_09", "to": "pages_b09_estimation_b09_overview_2026_09_b09_estimation_2026_09_\uc6d0\uac00\uacc4\uc0b0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_overview_2026_09_b09_estimation_2026_09_\uc6d0\uac00\uacc4\uc0b0", "to": "pages_b09_estimation_b09_overview_2026_09_\uad6c\ud604_\uad6c\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_overview_2026_09_b09_estimation_2026_09_\uc6d0\uac00\uacc4\uc0b0", "to": "pages_b09_estimation_b09_overview_2026_09_\ub9c8\uac10_\uae30\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_b09_overview_2026_09_b09_estimation_2026_09_\uc6d0\uac00\uacc4\uc0b0", "to": "pages_b09_estimation_b09_overview_2026_09_\uc644\ub8cc_\uacbd\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_frontend_b09_estimation_ui_page", "to": "pages_b09_estimation_frontend_b09_estimation_ui_page_b09_estimation_ui_page_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_estimation_frontend_b09_estimation_ui_page_b09_estimation_ui_page_ts", "to": "pages_b09_estimation_frontend_b09_estimation_ui_page_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b10_payment_b10_frontend", "to": "pages_b10_payment_b10_frontend_b10_payment_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b10_payment_b10_frontend_b10_payment_frontend", "to": "pages_b10_payment_b10_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b10_payment_b10_frontend_b10_payment_frontend", "to": "pages_b10_payment_b10_frontend_\ube44\uc988\ub2c8\uc2a4_\ub85c\uc9c1_\uc804\uc81c_\ubaa9\uc5c5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b10_payment_b10_frontend_b10_payment_frontend", "to": "pages_b10_payment_b10_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b10_payment_b10_frontend_b10_payment_frontend", "to": "pages_b10_payment_b10_frontend_\uc8fc\uc694_\ucef4\ud3ec\ub10c\ud2b8_\ubc0f_\ud568\uc218_mockup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b10_payment_b10_frontend_b10_payment_frontend", "to": "pages_b10_payment_b10_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b10_payment_frontend_b10_payment_ui_page", "to": "pages_b10_payment_frontend_b10_payment_ui_page_b10_payment_ui_page_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b10_payment_frontend_b10_payment_ui_page_b10_payment_ui_page_ts", "to": "pages_b10_payment_frontend_b10_payment_ui_page_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b11_status_b11_frontend", "to": "pages_b11_status_b11_frontend_b11_status_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b11_status_b11_frontend_b11_status_frontend", "to": "pages_b11_status_b11_frontend_\uacb0\uc7ac_\uc0c1\ud0dc_\ud750\ub984_payment_flow_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b11_status_b11_frontend_b11_status_frontend", "to": "pages_b11_status_b11_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b11_status_b11_frontend_b11_status_frontend", "to": "pages_b11_status_b11_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b11_status_b11_frontend_b11_status_frontend", "to": "pages_b11_status_b11_frontend_\uc8fc\uc694_\ucef4\ud3ec\ub10c\ud2b8_\ubc0f_\uae30\ub2a5_mockup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b11_status_b11_frontend_b11_status_frontend", "to": "pages_b11_status_b11_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b11_status_frontend_b11_status_ui_page", "to": "pages_b11_status_frontend_b11_status_ui_page_b11_status_ui_page_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b11_status_frontend_b11_status_ui_page_b11_status_ui_page_ts", "to": "pages_b11_status_frontend_b11_status_ui_page_\uc8fc\uc694_\ud568\uc218_\ubaa9\ub85d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "UI Templates \u2014 Localization & Components", "count": 43}, {"cid": 1, "color": "#F28E2B", "label": "\uc778\uc99d / RBAC", "count": 36}, {"cid": 2, "color": "#E15759", "label": "A00_Common \u2014 App Shell Framework", "count": 26}, {"cid": 3, "color": "#76B7B2", "label": "2026-09-04 \uc644\ub8cc \ud56d\ubaa9", "count": 30}, {"cid": 4, "color": "#59A14F", "label": "\ubc30\uc218\uc720\uc5ed \ud574\uc11d \ubc0f \uc138\ubd80\uc124\uacc4 (Drainage Watershed)", "count": 8}, {"cid": 5, "color": "#EDC948", "label": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "count": 12}, {"cid": 6, "color": "#B07AA1", "label": "A09_Security \u2014 Backend", "count": 12}, {"cid": 7, "color": "#FF9DA7", "label": "2026-08-29 \uc644\ub8cc \ubc18\uc601", "count": 20}, {"cid": 8, "color": "#9C755F", "label": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "count": 11}, {"cid": 9, "color": "#BAB0AC", "label": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "count": 11}, {"cid": 10, "color": "#4E79A7", "label": "A04_NewsHistory \u2014 Frontend", "count": 11}, {"cid": 11, "color": "#F28E2B", "label": "A07_Register \u2014 Frontend", "count": 11}, {"cid": 12, "color": "#E15759", "label": "A08_Support \u2014 Frontend", "count": 11}, {"cid": 13, "color": "#76B7B2", "label": "B02_ProjRegister \u2014 Frontend", "count": 11}, {"cid": 14, "color": "#59A14F", "label": "A01_Home \u2014 Frontend", "count": 10}, {"cid": 15, "color": "#EDC948", "label": "A05_EduDetail \u2014 Frontend", "count": 10}, {"cid": 16, "color": "#B07AA1", "label": "A06_Login \u2014 Frontend", "count": 10}, {"cid": 17, "color": "#FF9DA7", "label": "A08_Support \u2014 Backend", "count": 10}, {"cid": 18, "color": "#9C755F", "label": "A09_Security \u2014 Frontend", "count": 10}, {"cid": 19, "color": "#BAB0AC", "label": "B02_ProjRegister \u2014 Backend", "count": 10}, {"cid": 20, "color": "#4E79A7", "label": "B04_PreProcess \u2014 Backend", "count": 10}, {"cid": 21, "color": "#F28E2B", "label": "B04_PreProcess \u2014 Frontend", "count": 10}, {"cid": 22, "color": "#E15759", "label": "B05 \uad6c\uc870\ubb3c \uc815\ubcf8\u00b7\ud1b5\ud569 \ud3b8\uc9d1", "count": 10}, {"cid": 23, "color": "#76B7B2", "label": "B06_Section \u2014 Frontend", "count": 10}, {"cid": 24, "color": "#59A14F", "label": "A03_CompDetail \u2014 Frontend", "count": 9}, {"cid": 25, "color": "#EDC948", "label": "A06_Login \u2014 Backend", "count": 9}, {"cid": 26, "color": "#B07AA1", "label": "\uc720\ud1a0\uace1\uc120 (Mass Haul Diagram) \uacc4\uc0b0 \uba85\uc138", "count": 13}, {"cid": 27, "color": "#FF9DA7", "label": "A07_Register \u2014 Backend", "count": 8}, {"cid": 28, "color": "#9C755F", "label": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uc870\uc791\u00b7\ud45c\uc2dc", "count": 8}, {"cid": 29, "color": "#BAB0AC", "label": "B06 \uae30\uc2ad\ub9c9\uc774 \uc5f0\ub3d9\u00b7\uacbd\uc0ac\u00b7\ub2e8\ubcc4 \uc81c\uc5b4", "count": 8}, {"cid": 30, "color": "#4E79A7", "label": "B08_DesignDetail \u2014 Backend", "count": 8}, {"cid": 31, "color": "#F28E2B", "label": "B08 \ud1a0\uc801\ub3c4\u00b7\uc218\ub9ac\uc9d1\uc218\uba74\uc801\uc720\uc5ed\ub3c4", "count": 8}, {"cid": 32, "color": "#E15759", "label": "B09_Estimation \u2014 Frontend", "count": 8}, {"cid": 33, "color": "#76B7B2", "label": "\ud604\uc7ac \uad6c\ud604 \ud604\ud669 \u2014 \uc18c\uc2a4 \uc77d\uae30 \uac10\uc0ac", "count": 35}, {"cid": 34, "color": "#59A14F", "label": "DB: \uad6c\uc870\ubb3c/\uc218\ub7c9/\uc0b0\ucd9c\ubb3c \ud14c\uc774\ube14", "count": 7}, {"cid": 35, "color": "#EDC948", "label": "B01_Dashboard \u2014 Backend", "count": 7}, {"cid": 36, "color": "#B07AA1", "label": "B01_Dashboard \u2014 Frontend", "count": 7}, {"cid": 37, "color": "#FF9DA7", "label": "B03_FileInput \u2014 Backend", "count": 7}, {"cid": 38, "color": "#9C755F", "label": "B05 \uae09\uc120\ud68c 3D \uad6d\ubd80 \ubcf4\uc815 \uacc4\ud68d", "count": 7}, {"cid": 39, "color": "#BAB0AC", "label": "B06 \uc9d1\uc218\uc815\u00b7\ub2e4\ub2e8 \uae30\uc2ad\ub9c9\uc774", "count": 7}, {"cid": 40, "color": "#4E79A7", "label": "B06 \ubc30\uc218\uad00 \uad6c\uc870\ubb3c \uae30\ud558\u00b7\uc870\uc791 \uccb4\uacc4", "count": 7}, {"cid": 41, "color": "#F28E2B", "label": "B06 \ubc30\uc218\uad00 \ud6a1\ub2e8\ub3c4 \uc138\ud2b8", "count": 7}, {"cid": 42, "color": "#E15759", "label": "B10_Payment \u2014 Frontend", "count": 7}, {"cid": 43, "color": "#76B7B2", "label": "B11_Status \u2014 Frontend", "count": 7}, {"cid": 44, "color": "#59A14F", "label": "\uc800\uc7a5 \uacbd\ub85c \uaddc\uce59 (Workflow-based Folder Structure)", "count": 7}, {"cid": 45, "color": "#EDC948", "label": "DB: \ud504\ub85c\uc81d\ud2b8 \uad00\ub9ac \ud14c\uc774\ube14", "count": 6}, {"cid": 46, "color": "#B07AA1", "label": "\uc784\ub3c4\uae30\uc220\uad50\ubcf8 \uc6d0\ubb38 md \ucd94\ucd9c \ud488\uc9c8 \uacb0\ud568", "count": 40}, {"cid": 47, "color": "#FF9DA7", "label": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "count": 6}, {"cid": 48, "color": "#9C755F", "label": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "count": 6}, {"cid": 49, "color": "#BAB0AC", "label": "A02_ProgDetail \u2014 Frontend", "count": 6}, {"cid": 50, "color": "#4E79A7", "label": "B01_Dashboard \u2014 API", "count": 6}, {"cid": 51, "color": "#F28E2B", "label": "B03_FileInput \u2014 Frontend", "count": 6}, {"cid": 52, "color": "#E15759", "label": "B05 \uacc4\ud68d\ub178\uc120 \ucf54\ub9ac\ub3c4 \uc0bc\uac01\ub9dd \uc11c\ud53c\uc2a4", "count": 6}, {"cid": 53, "color": "#76B7B2", "label": "B05 \uad6c\uc870\ubb3c\u00b7UI \ud604\uc7ac \uacc4\ud68d", "count": 6}, {"cid": 54, "color": "#59A14F", "label": "B05 \uad6c\uc870\ubb3c \uc785\ub825\u00b7\uc885\ub2e8 \ud45c\uc2dc \uc815\ube44 \u2014 2026-08-19", "count": 6}, {"cid": 55, "color": "#EDC948", "label": "B07 \uad6c\uc870\ubb3c \ud45c\uc900\ub3c4 \u2014 \uc870\uc0ac\u00b7\ud569\uc758\uc640 \ud604\uc7ac \ud1b5\ub85c", "count": 7}, {"cid": 56, "color": "#B07AA1", "label": "B08 \ud6a1\ub2e8\ub3c4 \uad6c\uc870\ubb3c\u00b7\uc7a5 \ubc30\uce58", "count": 6}, {"cid": 57, "color": "#FF9DA7", "label": "2026-09-07 \uc644\ub8cc\u00b7\ubcf4\ub958 \uc694\uc57d", "count": 14}, {"cid": 58, "color": "#9C755F", "label": "B07 \uc678\ubd80 WebCAD \ube44\uad50 \uc2e4\ud589\ud658\uacbd", "count": 5}, {"cid": 59, "color": "#BAB0AC", "label": "Temp Upload (\ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131 \uc804 \uc784\uc2dc \ubcf4\uad00\ud568)", "count": 5}, {"cid": 60, "color": "#4E79A7", "label": "Q: \ubc30\uc218\uad00 \ub9e4\uc124\uc2dc \uac01\ub3c4\uc758 \uc81c\uc57d\uc870\uac74\uc774 \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918. \uc784\ub3c4\uc5d0\uc11c", "count": 5}, {"cid": 61, "color": "#F28E2B", "label": "Q: \uc784\ub3c4 \uae30\uc220\uc815\ubcf4DB\uc5d0\uc11c \uc9d1\uc218\uc815\uc758 \ud615\ud0dc\uc815\ubcf4\ub294 \uc5b4\ub5a4\uac8c \uc788\ub294\uc9c0 \ud655\uc778\ud574\uc918.", "count": 5}, {"cid": 62, "color": "#E15759", "label": "B02_ProjRegister \u2014 DB", "count": 5}, {"cid": 63, "color": "#76B7B2", "label": "B03_FileInput \u2014 API", "count": 5}, {"cid": 64, "color": "#59A14F", "label": "B04_PreProcess \u2014 DB", "count": 5}, {"cid": 65, "color": "#EDC948", "label": "B05_Profile \u2014 API", "count": 5}, {"cid": 66, "color": "#B07AA1", "label": "B05 \ubcc0\ud615 \uc131\ud1a0\uba74 \ub9c8\uac10\u00b7\ub0a0\uac1c \ud328\uce58", "count": 5}, {"cid": 67, "color": "#FF9DA7", "label": "B05_Profile \u2014 Profile Alignment & Table", "count": 5}, {"cid": 68, "color": "#9C755F", "label": "B05 \uad6c\uc870\ubb3c \ube44\uc815\uaddc \uce21\uc810 \uacf5\uae09", "count": 5}, {"cid": 69, "color": "#BAB0AC", "label": "B05_Profile_UI_Drainage_Parts \u2014 \ubc30\uc218\uc720\uc5ed \uacf5\uc6a9 UI \ud30c\uce20", "count": 5}, {"cid": 70, "color": "#4E79A7", "label": "_UI_Drainage_Render \u2014 \ubc30\uc218\uc720\uc5ed\ub3c4 Canvas \ub80c\ub354\ub7ec", "count": 5}, {"cid": 71, "color": "#F28E2B", "label": "_UI_Profile_Structures \u2014 \uc885\ub2e8 \uad6c\uc870\ubb3c \ub80c\ub354\ub9c1 \ubc0f \uc778\ud130\ub799\uc158", "count": 5}, {"cid": 72, "color": "#E15759", "label": "_UI_Selection \u2014 \ubc30\uc218/\uad6c\uc870\ubb3c 3\uc790 \uc120\ud0dd \ub3d9\uae30\ud654", "count": 5}, {"cid": 73, "color": "#76B7B2", "label": "B06 \uc778\uc811 \uce21\uc810 \uad6c\uc870\ubb3c \ud2b8\ub9bc \uc815\ub9ac", "count": 5}, {"cid": 74, "color": "#59A14F", "label": "B06 \ubb3c\ub118\uc774\ud3ec\uc7a5\u00b7\ucf58\ud06c\ub9ac\ud2b8 \ud3ec\uc7a5\u00b7\ub3c5\ub9bd \uae30\uc2ad\ub9c9\uc774", "count": 5}, {"cid": 75, "color": "#EDC948", "label": "B06_Section_Engine_Areas \u2014 \ud6a1\ub2e8 \uba74\uc801 \uc801\ubd84 \uc5f0\uc0b0 \uc5d4\uc9c4", "count": 5}, {"cid": 76, "color": "#B07AA1", "label": "B06_Section_Router_Confirm \u2014 \uc784\uc2dc \uc800\uc7a5 \ubc0f \ud655\uc815 \ub77c\uc6b0\ud130", "count": 5}, {"cid": 77, "color": "#FF9DA7", "label": "B06_Section_UI_Cross_Areas \u2014 \ud6a1\ub2e8 \ub2e8\uba74\uc801 \ud45c\uae30 \ubc0f \ubc34\ub4dc \ud558\uc774\ub77c\uc774\ud2b8", "count": 5}, {"cid": 78, "color": "#9C755F", "label": "B06_Section_UI_Cross_Design \u2014 \ud6a1\ub2e8 \uce21\uc810\ubcc4 \uc138\ubd80 \uc124\uacc4 \ucee8\ud2b8\ub864", "count": 5}, {"cid": 79, "color": "#BAB0AC", "label": "B06_Section_UI_MassHaul \u2014 \uc720\ud1a0\uace1\uc120 \uc801\ubd84 \uacc4\uc0b0 \uc5d4\uc9c4", "count": 5}, {"cid": 80, "color": "#4E79A7", "label": "B06_Section_UI_MassHaul_Balance \u2014 \ud3c9\ud615\uc120 \ubc0f \uc7a5\ube44 \ub760 \ubd84\ud560 \uc5d4\uc9c4", "count": 5}, {"cid": 81, "color": "#F28E2B", "label": "B06_Section_UI_MassHaul_Balance_View \u2014 \uc6b4\ubc18 \ub760 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "count": 5}, {"cid": 82, "color": "#E15759", "label": "B06_Section_UI_MassHaul_Balloon \u2014 \ubb3c\ub7c9 \ub9d0\ud48d\uc120 \ubc30\uce58 \ubc0f \uc870\uc791", "count": 5}, {"cid": 83, "color": "#76B7B2", "label": "B06_Section_UI_MassHaul_Curve \u2014 \uc720\ud1a0\uace1\uc120 \uada4\uc801 \ubcf4\uac04 \ubc0f \ub80c\ub354\ub9c1", "count": 5}, {"cid": 84, "color": "#59A14F", "label": "B06_Section_UI_MassHaul_Settle \u2014 \ud1a0\ub7c9 \uc815\uc0b0 \ubc0f \uc7a5\uac70\ub9ac \uc0c1\uc1c4 \uc5d4\uc9c4", "count": 5}, {"cid": 85, "color": "#EDC948", "label": "B06_Section_UI_MassHaul_View \u2014 \uc720\ud1a0\uace1\uc120 \uc2dc\uac01\ud654 \ub80c\ub354\ub7ec", "count": 5}, {"cid": 86, "color": "#B07AA1", "label": "B06_Section_UI_Page \u2014 B06 \uba54\uc778 \ud398\uc774\uc9c0 \uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130", "count": 5}, {"cid": 87, "color": "#FF9DA7", "label": "B06_Section_UI_Section_View \u2014 \uc885/\ud6a1\ub2e8 \ubc0f \uc720\ud1a0\uace1\uc120 \ubdf0 \uc870\ub9bd", "count": 5}, {"cid": 88, "color": "#9C755F", "label": "B07 Quantity \u2014 Backend", "count": 5}, {"cid": 89, "color": "#BAB0AC", "label": "B08 CAD \ube14\ub85d \ub77c\uc774\ube0c\ub7ec\ub9ac\u00b7\uc0ac\uc9c4", "count": 5}, {"cid": 90, "color": "#4E79A7", "label": "B08 OpenWebCAD \uba85\ub839 \uccb4\uacc4", "count": 5}, {"cid": 91, "color": "#F28E2B", "label": "B08_CAD_table_entity.md", "count": 6}, {"cid": 92, "color": "#E15759", "label": "\uacf5\uac1c\u00b7\uc778\uc99d\u00b7\uad00\ub9ac \uc601\uc5ed \uc9c0\ub3c4", "count": 7}, {"cid": 93, "color": "#76B7B2", "label": "\uacf5\uc720 \uc790\uc6d0 \uc601\ud5a5 \uc9c0\ub3c4", "count": 6}, {"cid": 94, "color": "#59A14F", "label": "A00_Common \u2014 \uacf5\ud1b5 \ud504\ub808\uc784\uc6cc\ud06c & \uc720\ud2f8", "count": 4}, {"cid": 95, "color": "#EDC948", "label": "app_shell.ts", "count": 4}, {"cid": 96, "color": "#B07AA1", "label": "router.ts", "count": 4}, {"cid": 97, "color": "#FF9DA7", "label": "B04_PreProcess \u2014 API", "count": 4}, {"cid": 98, "color": "#9C755F", "label": "B04_PreProcess \u2014 Dependencies", "count": 4}, {"cid": 99, "color": "#BAB0AC", "label": "B05_Profile \u2014 Backend", "count": 4}, {"cid": 100, "color": "#4E79A7", "label": "B05_Profile \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "count": 4}, {"cid": 101, "color": "#F28E2B", "label": "B05_Profile \u2014 3D Viewer & Interaction", "count": 4}, {"cid": 102, "color": "#E15759", "label": "B05_Profile_Engine_Sections.md", "count": 5}, {"cid": 103, "color": "#76B7B2", "label": "B05_Profile_Api_Fetch.ts", "count": 4}, {"cid": 104, "color": "#59A14F", "label": "B05_Profile_UI_Drainage_Panel", "count": 4}, {"cid": 105, "color": "#EDC948", "label": "B05_Profile_UI_Drainage_Pipes", "count": 4}, {"cid": 106, "color": "#B07AA1", "label": "B05_Profile_UI_Profile_Panel.md", "count": 5}, {"cid": 107, "color": "#FF9DA7", "label": "B06_Section \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "count": 4}, {"cid": 108, "color": "#9C755F", "label": "B06_Section_Api_Fetch \u2014 B06 \ud504\ub860\ud2b8\uc5d4\ub4dc API \ud074\ub77c\uc774\uc5b8\ud2b8", "count": 4}, {"cid": 109, "color": "#BAB0AC", "label": "B06_Section_UI_Standard_Diagram \u2014 \ud45c\uc900\ub2e8\uba74 \ubaa8\uc2dd\ub3c4 \ucef4\ud3ec\ub10c\ud2b8", "count": 4}, {"cid": 110, "color": "#4E79A7", "label": "B06_Section_UI_Standard_Panel \u2014 \ud45c\uc900\ub2e8\uba74 \uc785\ub825 \ubc0f \uc81c\uc5b4 \ud328\ub110", "count": 4}, {"cid": 111, "color": "#F28E2B", "label": "B08_DesignDetail \u2014 Dependencies", "count": 4}, {"cid": 112, "color": "#E15759", "label": "common_util_project_delete.md", "count": 4}, {"cid": 113, "color": "#76B7B2", "label": "common_util_storage.md", "count": 4}, {"cid": 114, "color": "#59A14F", "label": "common_util_workflow_state.md", "count": 4}, {"cid": 115, "color": "#EDC948", "label": "\ubbf8\ud655\uc815 \ud14c\uc774\ube14 \ubcf4\uad00\uc18c (Unconfirmed DB Schemas)", "count": 3}, {"cid": 116, "color": "#B07AA1", "label": "A01_Home_UI_Page.md", "count": 4}, {"cid": 117, "color": "#FF9DA7", "label": "A02_ProgDetail_UI_Page.md", "count": 4}, {"cid": 118, "color": "#9C755F", "label": "A06_Login_Router.md", "count": 4}, {"cid": 119, "color": "#BAB0AC", "label": "A07_Register_Router.md", "count": 4}, {"cid": 120, "color": "#4E79A7", "label": "A08_Support_Router.md", "count": 4}, {"cid": 121, "color": "#F28E2B", "label": "A09_Security_Router.md", "count": 4}, {"cid": 122, "color": "#E15759", "label": "B01_Dashboard \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "count": 3}, {"cid": 123, "color": "#76B7B2", "label": "B01_Dashboard \u2014 Dependencies", "count": 3}, {"cid": 124, "color": "#59A14F", "label": "B01_Dashboard_Router.md", "count": 4}, {"cid": 125, "color": "#EDC948", "label": "B01_Dashboard_UI_Page.md", "count": 4}, {"cid": 126, "color": "#B07AA1", "label": "B02_ProjRegister_Router.md", "count": 4}, {"cid": 127, "color": "#FF9DA7", "label": "B03_FileInput \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "count": 3}, {"cid": 128, "color": "#9C755F", "label": "B03_FileInput \u2014 Dependencies", "count": 3}, {"cid": 129, "color": "#BAB0AC", "label": "B03_FileInput_Router.md", "count": 4}, {"cid": 130, "color": "#4E79A7", "label": "B04_PreProcess_Router.md", "count": 4}, {"cid": 131, "color": "#F28E2B", "label": "B05_Profile \u2014 Dependencies", "count": 3}, {"cid": 132, "color": "#E15759", "label": "B05_Profile_Engine_Grade.md", "count": 4}, {"cid": 133, "color": "#76B7B2", "label": "B05_Profile_Engine_Solver.md", "count": 4}, {"cid": 134, "color": "#59A14F", "label": "B05_Profile_Repository.md", "count": 4}, {"cid": 135, "color": "#EDC948", "label": "B05_Profile_Router.md", "count": 4}, {"cid": 136, "color": "#B07AA1", "label": "B05_Profile_Router_Confirm.md", "count": 4}, {"cid": 137, "color": "#FF9DA7", "label": "B05_Profile_Schema.md", "count": 4}, {"cid": 138, "color": "#9C755F", "label": "B05_Profile_UI_IrregularStations.md", "count": 4}, {"cid": 139, "color": "#BAB0AC", "label": "B05_Profile_UI_Page.md", "count": 4}, {"cid": 140, "color": "#4E79A7", "label": "B05_Profile_UI_Panel.md", "count": 4}, {"cid": 141, "color": "#F28E2B", "label": "B05_Profile_UI_Profile_Alignment.md", "count": 4}, {"cid": 142, "color": "#E15759", "label": "B05_Profile_UI_Profile_Table.md", "count": 4}, {"cid": 143, "color": "#76B7B2", "label": "B05_Profile_UI_Viewer.md", "count": 4}, {"cid": 144, "color": "#59A14F", "label": "B06_Section \u2014 Dependencies", "count": 3}, {"cid": 145, "color": "#EDC948", "label": "B06_Section_Router.md", "count": 4}, {"cid": 146, "color": "#B07AA1", "label": "B01~B09 Workflow \ub370\uc774\ud130 \ud750\ub984", "count": 5}, {"cid": 147, "color": "#FF9DA7", "label": "B08_DesignDetail \u2014 API", "count": 3}, {"cid": 148, "color": "#9C755F", "label": "longitudinal_alignment.md", "count": 2}, {"cid": 149, "color": "#BAB0AC", "label": "B03_FileInput_plan_lidar_multi_file.md", "count": 2}, {"cid": 150, "color": "#4E79A7", "label": "B05_completed_followups.md", "count": 2}, {"cid": 151, "color": "#F28E2B", "label": "B05_corridor_followup_decisions.md", "count": 2}, {"cid": 152, "color": "#E15759", "label": "B06_api.md", "count": 2}, {"cid": 153, "color": "#76B7B2", "label": "B07_db.md", "count": 2}, {"cid": 154, "color": "#59A14F", "label": "B08_DesignDetail_Router.md", "count": 3}, {"cid": 155, "color": "#EDC948", "label": "B09_Estimation_UI_Page.md", "count": 3}, {"cid": 156, "color": "#B07AA1", "label": "B10_Payment_UI_Page.md", "count": 3}, {"cid": 157, "color": "#FF9DA7", "label": "B11_Status_UI_Page.md", "count": 3}, {"cid": 158, "color": "#9C755F", "label": "B03 \uacc4\ud68d\ub178\uc120 \uc815\ubcf8\u00b7\uc88c\ud45c\uacc4 \ud6c4\uc18d", "count": 5}, {"cid": 159, "color": "#BAB0AC", "label": "B03 \ud30c\uc77c \uc785\ub825 \ud654\uba74 \uc815\ub9ac", "count": 5}, {"cid": 160, "color": "#4E79A7", "label": "B04 3D \ubc29\uc704\u00b7\uc88c\ud45c\uacc4 \ucd5c\uc2e0 \uacb0\uc815", "count": 5}, {"cid": 161, "color": "#F28E2B", "label": "B04 \uc138\ubd80\uc720\uc5ed\u00b7\ubc29\uc704\u00b7\uc88c\ud45c\uacc4", "count": 5}, {"cid": 162, "color": "#E15759", "label": "B05 \uad6c\uc870\ubb3c \uad6c\uac04 \uc808\ucde8\u00b7\uce21\ubcbd\u00b7\uc131\ud1a0 \ud328\uce58", "count": 5}, {"cid": 163, "color": "#76B7B2", "label": "B05 \uad6c\uc870\ubb3c 3D \ud22c\uc601 \ucee4\ube0c", "count": 4}, {"cid": 164, "color": "#59A14F", "label": "B05_Profile \u2014 Frontend", "count": 4}, {"cid": 165, "color": "#EDC948", "label": "B05 \uc720\ud1a0\uace1\uc120\u00b7\uad6c\uc870\ubb3c \ud6c4\uc18d", "count": 4}, {"cid": 166, "color": "#B07AA1", "label": "B05 \uc885\ub2e8\uace1\uc120\u00b7\uc2e4\uc2dc\uac04 \ud6a1\ub2e8 \uc5f0\ub3d9", "count": 4}, {"cid": 167, "color": "#FF9DA7", "label": "B06 \ud6a1\ub2e8 \uacc4\uc0b0 \ubbf8\ub7ec\u00b7\uce74\ub4dc \ud45c\uae30", "count": 4}, {"cid": 168, "color": "#9C755F", "label": "B06 \ud6a1\ub2e8 \uad00 \ud615\uc0c1\u00b7\uc720\ud1a0\uace1\uc120 \ud6c4\uc18d", "count": 4}, {"cid": 169, "color": "#BAB0AC", "label": "B08_DesignDetail_Engine_Cad_Basin.py", "count": 1}, {"cid": 170, "color": "#4E79A7", "label": "B08_DesignDetail_Engine_Cad_MassHaul.py", "count": 1}, {"cid": 171, "color": "#F28E2B", "label": "B08 CAD\u00b7\ub0a9\ud488 \ub3c4\uba74 \ud6c4\uc18d", "count": 4}, {"cid": 176, "color": "#B07AA1", "label": "OpenWebCAD Core", "count": 1}, {"cid": 177, "color": "#FF9DA7", "label": "common_util_mass_haul_settle.ts", "count": 1}, {"cid": 178, "color": "#9C755F", "label": "Drainage Watershed (\uc720\uc5ed\ub3c4)", "count": 1}, {"cid": 179, "color": "#BAB0AC", "label": "Mass Haul Diagram (\ud1a0\uc801\ub3c4)", "count": 1}, {"cid": 182, "color": "#E15759", "label": "2026-09-02 \uc644\ub8cc \ud56d\ubaa9", "count": 8}, {"cid": 183, "color": "#76B7B2", "label": "2026-09-03 \uc644\ub8cc \u2014 \uc785\ub825\u00b7\ubc30\uc218\u00b7\uc885\ud6a1\ub2e8\u00b7CAD", "count": 4}, {"cid": 184, "color": "#59A14F", "label": "2026-09-03 \ucd94\uac00 \uc644\ub8cc \u2014 \ud654\uba74\u00b7\uc885\ub2e8\u00b7\ud6a1\ub2e8", "count": 4}, {"cid": 185, "color": "#EDC948", "label": "Query: \uc784\ub3c4 \uc9d1\uc218\uc815 \ud615\ud0dc\uc815\ubcf4", "count": 1}, {"cid": 187, "color": "#FF9DA7", "label": "B03 File Input Backend", "count": 1}, {"cid": 188, "color": "#9C755F", "label": "B03 File Input Frontend", "count": 1}, {"cid": 189, "color": "#BAB0AC", "label": "B04 PreProcess Backend", "count": 1}, {"cid": 190, "color": "#4E79A7", "label": "B04 PreProcess Frontend", "count": 1}, {"cid": 191, "color": "#F28E2B", "label": "B07_Quantity_Router.md", "count": 2}, {"cid": 192, "color": "#E15759", "label": "B08 CAD Blocks Library", "count": 1}, {"cid": 193, "color": "#76B7B2", "label": "B08 CAD Table Entity", "count": 1}, {"cid": 194, "color": "#59A14F", "label": "B08 Cross Section Structure Sheets", "count": 1}, {"cid": 195, "color": "#EDC948", "label": "Query: \ubc30\uc218\uad00 \ub9e4\uc124 \uac01\ub3c4 \uc81c\uc57d\uc870\uac74 (\uc784\ub3c4)", "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)}" data-nid="${esc(nid)}">${esc(nb ? nb.label : nid)}</span>`;
|
|
}).join('');
|
|
document.getElementById('info-content').innerHTML = `
|
|
<div class="field"><b>${esc(n.label)}</b></div>
|
|
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
|
|
<div class="field">Community: ${esc(n._community_name)}</div>
|
|
<div class="field">Source: ${esc(n._source_file || '-')}</div>
|
|
<div class="field">Degree: ${n._degree}</div>
|
|
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
|
|
`;
|
|
}
|
|
|
|
function focusNode(nodeId) {
|
|
network.focus(nodeId, { scale: 1.4, animation: true });
|
|
network.selectNodes([nodeId]);
|
|
showInfo(nodeId);
|
|
}
|
|
|
|
// Neighbor links use a data attribute + one delegated listener rather than an
|
|
// inline onclick. A node id/label sourced from a document or a scraped URL
|
|
// (graphify add) can contain a double-quote; dropping the stringified id
|
|
// unescaped into a quoted onclick both broke every link and allowed a hostile
|
|
// source to inject an event handler into the local report (stored XSS, #1838).
|
|
// esc() on data-nid keeps the value inside the attribute; the listener reads it
|
|
// back verbatim. Bound to document so it survives the innerHTML rebuild that
|
|
// recreates #neighbors-list on each showInfo().
|
|
document.addEventListener('click', e => {
|
|
const el = e.target.closest('.neighbor-link');
|
|
if (el && el.dataset.nid !== undefined) focusNode(el.dataset.nid);
|
|
});
|
|
|
|
// Track hovered node — hover detection is more reliable than click params
|
|
let hoveredNodeId = null;
|
|
network.on('hoverNode', params => {
|
|
hoveredNodeId = params.node;
|
|
container.style.cursor = 'pointer';
|
|
});
|
|
network.on('blurNode', () => {
|
|
hoveredNodeId = null;
|
|
container.style.cursor = 'default';
|
|
});
|
|
container.addEventListener('click', () => {
|
|
if (hoveredNodeId !== null) {
|
|
showInfo(hoveredNodeId);
|
|
network.selectNodes([hoveredNodeId]);
|
|
}
|
|
});
|
|
network.on('click', params => {
|
|
if (params.nodes.length > 0) {
|
|
showInfo(params.nodes[0]);
|
|
} else if (hoveredNodeId === null) {
|
|
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
|
|
}
|
|
});
|
|
|
|
const searchInput = document.getElementById('search');
|
|
const searchResults = document.getElementById('search-results');
|
|
searchInput.addEventListener('input', () => {
|
|
const q = searchInput.value.toLowerCase().trim();
|
|
searchResults.innerHTML = '';
|
|
if (!q) { searchResults.style.display = 'none'; return; }
|
|
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
|
|
if (!matches.length) { searchResults.style.display = 'none'; return; }
|
|
searchResults.style.display = 'block';
|
|
matches.forEach(n => {
|
|
const el = document.createElement('div');
|
|
el.className = 'search-item';
|
|
el.textContent = n.label;
|
|
el.style.borderLeft = `3px solid ${n.color.background}`;
|
|
el.style.paddingLeft = '8px';
|
|
el.onclick = () => {
|
|
network.focus(n.id, { scale: 1.5, animation: true });
|
|
network.selectNodes([n.id]);
|
|
showInfo(n.id);
|
|
searchResults.style.display = 'none';
|
|
searchInput.value = '';
|
|
};
|
|
searchResults.appendChild(el);
|
|
});
|
|
});
|
|
document.addEventListener('click', e => {
|
|
if (!searchResults.contains(e.target) && e.target !== searchInput)
|
|
searchResults.style.display = 'none';
|
|
});
|
|
|
|
const hiddenCommunities = new Set();
|
|
|
|
const selectAllCb = document.getElementById('select-all-cb');
|
|
|
|
function updateSelectAllState() {
|
|
const total = LEGEND.length;
|
|
const hidden = hiddenCommunities.size;
|
|
selectAllCb.checked = hidden === 0;
|
|
selectAllCb.indeterminate = hidden > 0 && hidden < total;
|
|
}
|
|
|
|
function toggleAllCommunities(hide) {
|
|
document.querySelectorAll('.legend-item').forEach(item => {
|
|
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
|
|
});
|
|
document.querySelectorAll('.legend-cb').forEach(cb => {
|
|
cb.checked = !hide;
|
|
});
|
|
LEGEND.forEach(c => {
|
|
if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
|
|
});
|
|
const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
}
|
|
|
|
const legendEl = document.getElementById('legend');
|
|
LEGEND.forEach(c => {
|
|
const item = document.createElement('div');
|
|
item.className = 'legend-item';
|
|
const cb = document.createElement('input');
|
|
cb.type = 'checkbox';
|
|
cb.className = 'legend-cb';
|
|
cb.checked = true;
|
|
cb.addEventListener('change', (e) => {
|
|
e.stopPropagation();
|
|
if (cb.checked) {
|
|
hiddenCommunities.delete(c.cid);
|
|
item.classList.remove('dimmed');
|
|
} else {
|
|
hiddenCommunities.add(c.cid);
|
|
item.classList.add('dimmed');
|
|
}
|
|
const updates = RAW_NODES
|
|
.filter(n => n.community === c.cid)
|
|
.map(n => ({ id: n.id, hidden: !cb.checked }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
});
|
|
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
|
|
<span class="legend-label">${c.label}</span>
|
|
<span class="legend-count">${c.count}</span>`;
|
|
item.prepend(cb);
|
|
item.onclick = (e) => {
|
|
if (e.target === cb) return;
|
|
cb.checked = !cb.checked;
|
|
cb.dispatchEvent(new Event('change'));
|
|
};
|
|
legendEl.appendChild(item);
|
|
});
|
|
</script>
|
|
<script>
|
|
// Render hyperedges as shaded regions
|
|
const hyperedges = [{"id": "workflow_b03_b08_integration", "label": "B03-B08 Workflow Data Flow", "nodes": ["b03_fileinput_route_snapshot_crs", "b04_preprocess_drainage_compass_crs", "b05_profile_frontend", "b06_section_cross_design_ui_2026_09", "b08_designdetail_frontend"], "relation": "participate_in", "confidence": "INFERRED", "confidence_score": 0.9, "source_file": "index.md"}, {"id": "mass_haul_shared_logic", "label": "Shared Mass Haul Calculation and UI", "nodes": ["b05_profile_masshaul_structure_2026_09", "b06_section_masshaul_culvert_2026_09", "b08_designdetail_cad_delivery_2026_09"], "relation": "participate_in", "confidence": "EXTRACTED", "confidence_score": 0.85, "source_file": "pages/B05_Profile/B05_masshaul_structure_2026_09.md"}, {"id": "cad_delivery_system", "label": "CAD Delivery and Usability Framework", "nodes": ["b08_designdetail_cad_interaction", "b08_designdetail_cad_title_block", "b08_designdetail_cad_usability_2026_09_01", "b08_designdetail_cad_delivery_2026_09"], "relation": "form", "confidence": "EXTRACTED", "confidence_score": 0.95, "source_file": "pages/B08_DesignDetail/B08_cad_delivery_2026_09.md"}, {"id": "las_free_workflow_chain", "label": "LAS-Free Analysis Workflow", "nodes": ["concepts_las_free_sheet_surface", "pages_b03_fileinput_backend", "pages_b04_preprocess_backend"], "relation": "participate_in", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "concepts/las_free_sheet_surface.md"}, {"id": "b08_drawing_generation_flow", "label": "B08 Drawing Generation Flow", "nodes": ["b08_designdetail_b08_designdetail_engine_cad_masshaul_py", "b08_designdetail_b08_designdetail_engine_cad_basin_py", "common_util_common_util_mass_haul_settle_ts"], "relation": "participate_in", "confidence": "EXTRACTED", "confidence_score": 0.9, "source_file": "pages/B08_DesignDetail/B08_drawing_masshaul_watershed.md"}, {"id": "drainage_system_flow", "label": "Drainage System Workflow", "nodes": ["concepts_drainage_watershed", "pages_b05_profile_b05_structures", "pages_b06_section_b06_culvert_set", "pages_b06_section_b06_culvert_geometry_redesign"], "relation": "participate_in", "confidence": "EXTRACTED", "confidence_score": 0.95, "source_file": "concepts/drainage_watershed.md"}, {"id": "mass_haul_system", "label": "Mass Haul Diagram System", "nodes": ["concepts_mass_haul_diagram", "pages_b06_section_b06_frontend", "pages_b08_designdetail_b08_drawing_masshaul_watershed"], "relation": "participate_in", "confidence": "EXTRACTED", "confidence_score": 0.9, "source_file": "concepts/mass_haul_diagram.md"}, {"id": "corridor_3d_generation", "label": "3D Corridor Generation Flow", "nodes": ["pages_b05_profile_b05_corridor_surface", "pages_b05_profile_b05_corridor_plan_curves", "pages_b05_profile_b05_corridor_cut_fill", "pages_b05_profile_b05_corridor_patch_finish"], "relation": "participate_in", "confidence": "EXTRACTED", "confidence_score": 0.9, "source_file": "pages/B05_Profile/B05_corridor_surface.md"}, {"id": "workflow_late_stages", "label": "Late Workflow Stages (B07-B09)", "nodes": ["pages_b07_quantity_b07_frontend", "pages_b08_designdetail_b08_frontend", "pages_b09_estimation_b09_frontend"], "relation": "participate_in", "confidence": "EXTRACTED", "confidence_score": 1.0}];
|
|
// 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> |