Files
nobat724_front/graphify-out/graph.html
T
hamed 533449c504 Update manifest and add new AST cache for blog frontend sync and default cover
- Updated modification times and AST hashes for several files in the manifest.json.
- Added new entries for `app/api/revalidate/route.js`, `components/blog/detail/Faq.js`, `components/blog/detail/Sources.js`, and other files related to blog functionality.
- Introduced a new AST cache file for the blog frontend sync and default cover prompt, including detailed node and edge relationships.
2026-07-27 19:38:55 +03:30

307 lines
1.9 MiB
Plaintext

<!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">2422 nodes &middot; 2500 edges &middot; 407 communities</div>
</div>
<script>
const RAW_NODES = [{"id": "app_customtoastify", "label": "CustomToastify.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomToastify.js", "community": 65, "community_name": "Community 65", "source_file": "app/CustomToastify.js", "file_type": "code", "degree": 2}, {"id": "app_customtoastify_customtoastify", "label": "CustomToastify()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomToastify()", "community": 65, "community_name": "Community 65", "source_file": "app/CustomToastify.js", "file_type": "code", "degree": 2}, {"id": "app_providers", "label": "Providers.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Providers.js", "community": 65, "community_name": "Community 65", "source_file": "app/Providers.js", "file_type": "code", "degree": 2}, {"id": "app_providers_providers", "label": "Providers()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Providers()", "community": 65, "community_name": "Community 65", "source_file": "app/Providers.js", "file_type": "code", "degree": 2}, {"id": "about_us_page", "label": "page.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 29, "community_name": "Community 29", "source_file": "app/about-us/page.js", "file_type": "code", "degree": 2}, {"id": "about_us_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 29, "community_name": "Community 29", "source_file": "app/about-us/page.js", "file_type": "code", "degree": 2}, {"id": "about_us_page_aboutus", "label": "AboutUs()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AboutUs()", "community": 29, "community_name": "Community 29", "source_file": "app/about-us/page.js", "file_type": "code", "degree": 1}, {"id": "logout_route", "label": "route.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "route.js", "community": 68, "community_name": "Community 68", "source_file": "app/api/auth/logout/route.js", "file_type": "code", "degree": 1}, {"id": "logout_route_post", "label": "POST()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 68, "community_name": "Community 68", "source_file": "app/api/auth/logout/route.js", "file_type": "code", "degree": 2}, {"id": "refresh_route", "label": "route.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "route.js", "community": 68, "community_name": "Community 68", "source_file": "app/api/auth/refresh/route.js", "file_type": "code", "degree": 1}, {"id": "refresh_route_post", "label": "POST()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 68, "community_name": "Community 68", "source_file": "app/api/auth/refresh/route.js", "file_type": "code", "degree": 3}, {"id": "token_route", "label": "route.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "route.js", "community": 68, "community_name": "Community 68", "source_file": "app/api/auth/token/route.js", "file_type": "code", "degree": 1}, {"id": "token_route_post", "label": "POST()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 68, "community_name": "Community 68", "source_file": "app/api/auth/token/route.js", "file_type": "code", "degree": 2}, {"id": "revalidate_route", "label": "route.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "route.js", "community": 406, "community_name": "Community 406", "source_file": "app/api/revalidate/route.js", "file_type": "code", "degree": 1}, {"id": "revalidate_route_post", "label": "POST()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 406, "community_name": "Community 406", "source_file": "app/api/revalidate/route.js", "file_type": "code", "degree": 1}, {"id": "doctorid_page", "label": "page.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 29, "community_name": "Community 29", "source_file": "app/appointment/[doctorId]/page.js", "file_type": "code", "degree": 2}, {"id": "doctorid_page_metadata", "label": "metadata", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 29, "community_name": "Community 29", "source_file": "app/appointment/[doctorId]/page.js", "file_type": "code", "degree": 1}, {"id": "doctorid_page_appointment", "label": "Appointment()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Appointment()", "community": 29, "community_name": "Community 29", "source_file": "app/appointment/[doctorId]/page.js", "file_type": "code", "degree": 2}, {"id": "app_blog_slug_page_js_slug_page", "label": "page.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 45, "community_name": "Community 45", "source_file": "app/blog/[slug]/page.js", "file_type": "code", "degree": 4}, {"id": "slug_page_getblog", "label": "getBlog", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getBlog", "community": 45, "community_name": "Community 45", "source_file": "app/blog/[slug]/page.js", "file_type": "code", "degree": 4}, {"id": "slug_page_getscopedblog", "label": "getScopedBlog()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "getScopedBlog()", "community": 45, "community_name": "Community 45", "source_file": "app/blog/[slug]/page.js", "file_type": "code", "degree": 6}, {"id": "app_blog_slug_page_js_slug_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "generateMetadata()", "community": 45, "community_name": "Community 45", "source_file": "app/blog/[slug]/page.js", "file_type": "code", "degree": 10}, {"id": "slug_page_blog", "label": "Blog()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 19.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Blog()", "community": 45, "community_name": "Community 45", "source_file": "app/blog/[slug]/page.js", "file_type": "code", "degree": 15}, {"id": "blogs_loading", "label": "loading.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "loading.js", "community": 132, "community_name": "Community 132", "source_file": "app/blogs/loading.js", "file_type": "code", "degree": 1}, {"id": "blogs_loading_loading", "label": "Loading()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Loading()", "community": 132, "community_name": "Community 132", "source_file": "app/blogs/loading.js", "file_type": "code", "degree": 1}, {"id": "blogs_page", "label": "page.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 29, "community_name": "Community 29", "source_file": "app/blogs/page.js", "file_type": "code", "degree": 2}, {"id": "blogs_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 29, "community_name": "Community 29", "source_file": "app/blogs/page.js", "file_type": "code", "degree": 2}, {"id": "blogs_page_blogs", "label": "Blogs()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Blogs()", "community": 29, "community_name": "Community 29", "source_file": "app/blogs/page.js", "file_type": "code", "degree": 2}, {"id": "app_clinic_slug_page_js_slug_page", "label": "page.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 81, "community_name": "Community 81", "source_file": "app/clinic/[slug]/page.js", "file_type": "code", "degree": 4}, {"id": "slug_page_getclinic", "label": "getClinic", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getClinic", "community": 81, "community_name": "Community 81", "source_file": "app/clinic/[slug]/page.js", "file_type": "code", "degree": 3}, {"id": "app_clinic_slug_page_js_slug_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 81, "community_name": "Community 81", "source_file": "app/clinic/[slug]/page.js", "file_type": "code", "degree": 7}, {"id": "slug_page_computeclinicrating", "label": "computeClinicRating()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "computeClinicRating()", "community": 81, "community_name": "Community 81", "source_file": "app/clinic/[slug]/page.js", "file_type": "code", "degree": 2}, {"id": "slug_page_clinic", "label": "Clinic()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 18.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Clinic()", "community": 81, "community_name": "Community 81", "source_file": "app/clinic/[slug]/page.js", "file_type": "code", "degree": 13}, {"id": "clinics_loading", "label": "loading.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "loading.js", "community": 133, "community_name": "Community 133", "source_file": "app/clinics/loading.js", "file_type": "code", "degree": 1}, {"id": "clinics_loading_loading", "label": "Loading()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Loading()", "community": 133, "community_name": "Community 133", "source_file": "app/clinics/loading.js", "file_type": "code", "degree": 1}, {"id": "clinics_page", "label": "page.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 89, "community_name": "Community 89", "source_file": "app/clinics/page.js", "file_type": "code", "degree": 2}, {"id": "clinics_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 89, "community_name": "Community 89", "source_file": "app/clinics/page.js", "file_type": "code", "degree": 3}, {"id": "clinics_page_clinics", "label": "Clinics()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Clinics()", "community": 29, "community_name": "Community 29", "source_file": "app/clinics/page.js", "file_type": "code", "degree": 6}, {"id": "component_animationtexthead", "label": "AnimationTextHead.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AnimationTextHead.js", "community": 134, "community_name": "Community 134", "source_file": "app/component/AnimationTextHead.js", "file_type": "code", "degree": 1}, {"id": "component_animationtexthead_animationtexthead", "label": "AnimationTextHead()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AnimationTextHead()", "community": 134, "community_name": "Community 134", "source_file": "app/component/AnimationTextHead.js", "file_type": "code", "degree": 1}, {"id": "component_buttondate", "label": "ButtonDate.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonDate.js", "community": 77, "community_name": "Community 77", "source_file": "app/component/ButtonDate.js", "file_type": "code", "degree": 3}, {"id": "component_buttondate_buttondate", "label": "ButtonDate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonDate()", "community": 77, "community_name": "Community 77", "source_file": "app/component/ButtonDate.js", "file_type": "code", "degree": 1}, {"id": "component_contenttext", "label": "ContentText.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentText.js", "community": 136, "community_name": "Community 136", "source_file": "app/component/ContentText.js", "file_type": "code", "degree": 1}, {"id": "component_contenttext_contenttext", "label": "ContentText()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentText()", "community": 136, "community_name": "Community 136", "source_file": "app/component/ContentText.js", "file_type": "code", "degree": 1}, {"id": "component_customtable", "label": "CustomTable.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomTable.js", "community": 137, "community_name": "Community 137", "source_file": "app/component/CustomTable.js", "file_type": "code", "degree": 1}, {"id": "component_customtable_customtable", "label": "CustomTable()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomTable()", "community": 137, "community_name": "Community 137", "source_file": "app/component/CustomTable.js", "file_type": "code", "degree": 1}, {"id": "component_datepickercontent", "label": "DatePickerContent.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DatePickerContent.js", "community": 77, "community_name": "Community 77", "source_file": "app/component/DatePickerContent.js", "file_type": "code", "degree": 3}, {"id": "component_datepickercontent_datepickercontent", "label": "DatePickerContent()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DatePickerContent()", "community": 77, "community_name": "Community 77", "source_file": "app/component/DatePickerContent.js", "file_type": "code", "degree": 3}, {"id": "component_detailprofile", "label": "DetailProfile.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DetailProfile.js", "community": 0, "community_name": "Community 0", "source_file": "app/component/DetailProfile.js", "file_type": "code", "degree": 3}, {"id": "component_detailprofile_detailprofile", "label": "DetailProfile()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DetailProfile()", "community": 0, "community_name": "Community 0", "source_file": "app/component/DetailProfile.js", "file_type": "code", "degree": 1}, {"id": "component_doctoravatar", "label": "DoctorAvatar.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorAvatar.js", "community": 56, "community_name": "Community 56", "source_file": "app/component/DoctorAvatar.js", "file_type": "code", "degree": 3}, {"id": "component_doctoravatar_getinitials", "label": "getInitials()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getInitials()", "community": 56, "community_name": "Community 56", "source_file": "app/component/DoctorAvatar.js", "file_type": "code", "degree": 2}, {"id": "component_doctoravatar_doctoravatar", "label": "DoctorAvatar()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorAvatar()", "community": 56, "community_name": "Community 56", "source_file": "app/component/DoctorAvatar.js", "file_type": "code", "degree": 4}, {"id": "component_itemdoctor", "label": "ItemDoctor.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "ItemDoctor.js", "community": 56, "community_name": "Community 56", "source_file": "app/component/ItemDoctor.js", "file_type": "code", "degree": 9}, {"id": "component_itemdoctor_itemdoctor", "label": "ItemDoctor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemDoctor()", "community": 56, "community_name": "Community 56", "source_file": "app/component/ItemDoctor.js", "file_type": "code", "degree": 1}, {"id": "component_loadingcomponent", "label": "LoadingComponent.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingComponent.js", "community": 138, "community_name": "Community 138", "source_file": "app/component/LoadingComponent.js", "file_type": "code", "degree": 1}, {"id": "component_loadingcomponent_loadingcomponent", "label": "LoadingComponent()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingComponent()", "community": 138, "community_name": "Community 138", "source_file": "app/component/LoadingComponent.js", "file_type": "code", "degree": 1}, {"id": "component_logo", "label": "Logo.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Logo.js", "community": 139, "community_name": "Community 139", "source_file": "app/component/Logo.js", "file_type": "code", "degree": 1}, {"id": "component_logo_logo", "label": "Logo()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Logo()", "community": 139, "community_name": "Community 139", "source_file": "app/component/Logo.js", "file_type": "code", "degree": 1}, {"id": "component_modallogout", "label": "ModalLogout.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalLogout.js", "community": 0, "community_name": "Community 0", "source_file": "app/component/ModalLogout.js", "file_type": "code", "degree": 3}, {"id": "component_modallogout_modallogout", "label": "ModalLogout()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalLogout()", "community": 0, "community_name": "Community 0", "source_file": "app/component/ModalLogout.js", "file_type": "code", "degree": 3}, {"id": "component_pageguide", "label": "Pageguide.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Pageguide.js", "community": 140, "community_name": "Community 140", "source_file": "app/component/Pageguide.js", "file_type": "code", "degree": 1}, {"id": "component_pageguide_pageguide", "label": "Pageguide()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Pageguide()", "community": 140, "community_name": "Community 140", "source_file": "app/component/Pageguide.js", "file_type": "code", "degree": 4}, {"id": "component_pagination", "label": "Pagination.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Pagination.js", "community": 141, "community_name": "Community 141", "source_file": "app/component/Pagination.js", "file_type": "code", "degree": 1}, {"id": "component_pagination_pagination", "label": "Pagination()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Pagination()", "community": 141, "community_name": "Community 141", "source_file": "app/component/Pagination.js", "file_type": "code", "degree": 1}, {"id": "component_paginationcontent", "label": "PaginationContent.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginationContent.js", "community": 142, "community_name": "Community 142", "source_file": "app/component/PaginationContent.js", "file_type": "code", "degree": 1}, {"id": "component_paginationcontent_paginationcontent", "label": "PaginationContent()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginationContent()", "community": 142, "community_name": "Community 142", "source_file": "app/component/PaginationContent.js", "file_type": "code", "degree": 1}, {"id": "component_popoverdate", "label": "PopoverDate.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PopoverDate.js", "community": 77, "community_name": "Community 77", "source_file": "app/component/PopoverDate.js", "file_type": "code", "degree": 3}, {"id": "component_popoverdate_popoverdate", "label": "PopoverDate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PopoverDate()", "community": 77, "community_name": "Community 77", "source_file": "app/component/PopoverDate.js", "file_type": "code", "degree": 1}, {"id": "component_profressdetail", "label": "ProfressDetail.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfressDetail.js", "community": 15, "community_name": "Community 15", "source_file": "app/component/ProfressDetail.js", "file_type": "code", "degree": 2}, {"id": "component_profressdetail_fallbacklabels", "label": "fallbackLabels", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fallbackLabels", "community": 15, "community_name": "Community 15", "source_file": "app/component/ProfressDetail.js", "file_type": "code", "degree": 1}, {"id": "component_profressdetail_progressdetail", "label": "ProgressDetail()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ProgressDetail()", "community": 15, "community_name": "Community 15", "source_file": "app/component/ProfressDetail.js", "file_type": "code", "degree": 2}, {"id": "component_progresschange", "label": "ProgressChange.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProgressChange.js", "community": 143, "community_name": "Community 143", "source_file": "app/component/ProgressChange.js", "file_type": "code", "degree": 1}, {"id": "component_progresschange_progresschange", "label": "ProgressChange()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProgressChange()", "community": 143, "community_name": "Community 143", "source_file": "app/component/ProgressChange.js", "file_type": "code", "degree": 1}, {"id": "component_scrolltotop", "label": "ScrollToTop.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ScrollToTop.js", "community": 144, "community_name": "Community 144", "source_file": "app/component/ScrollToTop.js", "file_type": "code", "degree": 1}, {"id": "component_scrolltotop_scrolltotop", "label": "ScrollToTop()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ScrollToTop()", "community": 144, "community_name": "Community 144", "source_file": "app/component/ScrollToTop.js", "file_type": "code", "degree": 1}, {"id": "component_switchtable", "label": "SwitchTable.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SwitchTable.js", "community": 108, "community_name": "Community 108", "source_file": "app/component/SwitchTable.js", "file_type": "code", "degree": 2}, {"id": "component_switchtable_materialuiswitch", "label": "MaterialUISwitch", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MaterialUISwitch", "community": 108, "community_name": "Community 108", "source_file": "app/component/SwitchTable.js", "file_type": "code", "degree": 1}, {"id": "component_switchtable_switchtable", "label": "SwitchTable()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SwitchTable()", "community": 108, "community_name": "Community 108", "source_file": "app/component/SwitchTable.js", "file_type": "code", "degree": 1}, {"id": "component_tabs", "label": "Tabs.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Tabs.js", "community": 34, "community_name": "Community 34", "source_file": "app/component/Tabs.js", "file_type": "code", "degree": 3}, {"id": "component_tabs_a11yprops", "label": "a11yProps()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "a11yProps()", "community": 34, "community_name": "Community 34", "source_file": "app/component/Tabs.js", "file_type": "code", "degree": 1}, {"id": "component_tabs_tabs", "label": "Tabs()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Tabs()", "community": 34, "community_name": "Community 34", "source_file": "app/component/Tabs.js", "file_type": "code", "degree": 2}, {"id": "component_themeregistry", "label": "ThemeRegistry.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ThemeRegistry.js", "community": 65, "community_name": "Community 65", "source_file": "app/component/ThemeRegistry.js", "file_type": "code", "degree": 4}, {"id": "component_themeregistry_themeregistry", "label": "ThemeRegistry()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ThemeRegistry()", "community": 65, "community_name": "Community 65", "source_file": "app/component/ThemeRegistry.js", "file_type": "code", "degree": 2}, {"id": "component_timepickerfield", "label": "TimePickerField.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TimePickerField.js", "community": 145, "community_name": "Community 145", "source_file": "app/component/TimePickerField.js", "file_type": "code", "degree": 1}, {"id": "component_timepickerfield_timepickerfield", "label": "TimePickerField()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TimePickerField()", "community": 145, "community_name": "Community 145", "source_file": "app/component/TimePickerField.js", "file_type": "code", "degree": 1}, {"id": "component_timepickerinput", "label": "TimePickerInput.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TimePickerInput.js", "community": 146, "community_name": "Community 146", "source_file": "app/component/TimePickerInput.js", "file_type": "code", "degree": 1}, {"id": "component_timepickerinput_timepickerinput", "label": "TimePickerInput()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TimePickerInput()", "community": 146, "community_name": "Community 146", "source_file": "app/component/TimePickerInput.js", "file_type": "code", "degree": 1}, {"id": "comment_field", "label": "Field.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Field.js", "community": 55, "community_name": "Community 55", "source_file": "app/component/comment/Field.js", "file_type": "code", "degree": 2}, {"id": "comment_field_field", "label": "Field()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Field()", "community": 55, "community_name": "Community 55", "source_file": "app/component/comment/Field.js", "file_type": "code", "degree": 2}, {"id": "comment_itemuser", "label": "ItemUser.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemUser.js", "community": 55, "community_name": "Community 55", "source_file": "app/component/comment/ItemUser.js", "file_type": "code", "degree": 6}, {"id": "comment_itemuser_itemuser", "label": "ItemUser()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemUser()", "community": 55, "community_name": "Community 55", "source_file": "app/component/comment/ItemUser.js", "file_type": "code", "degree": 5}, {"id": "comment_replies", "label": "Replies.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Replies.js", "community": 55, "community_name": "Community 55", "source_file": "app/component/comment/Replies.js", "file_type": "code", "degree": 3}, {"id": "comment_replies_replies", "label": "Replies()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Replies()", "community": 55, "community_name": "Community 55", "source_file": "app/component/comment/Replies.js", "file_type": "code", "degree": 2}, {"id": "comment_sendanswer", "label": "SendAnswer.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SendAnswer.js", "community": 55, "community_name": "Community 55", "source_file": "app/component/comment/SendAnswer.js", "file_type": "code", "degree": 4}, {"id": "comment_sendanswer_sendanswer", "label": "SendAnswer()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SendAnswer()", "community": 55, "community_name": "Community 55", "source_file": "app/component/comment/SendAnswer.js", "file_type": "code", "degree": 2}, {"id": "comment_index", "label": "index.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 55, "community_name": "Community 55", "source_file": "app/component/comment/index.js", "file_type": "code", "degree": 3}, {"id": "comment_index_comment", "label": "Comment()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Comment()", "community": 55, "community_name": "Community 55", "source_file": "app/component/comment/index.js", "file_type": "code", "degree": 1}, {"id": "datepicker_buttondate", "label": "ButtonDate.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonDate.js", "community": 190, "community_name": "Community 190", "source_file": "app/component/date/datePicker/ButtonDate.js", "file_type": "code", "degree": 1}, {"id": "datepicker_buttondate_buttondate", "label": "ButtonDate()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonDate()", "community": 190, "community_name": "Community 190", "source_file": "app/component/date/datePicker/ButtonDate.js", "file_type": "code", "degree": 1}, {"id": "datepicker_field", "label": "Field.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Field.js", "community": 191, "community_name": "Community 191", "source_file": "app/component/date/datePicker/Field.js", "file_type": "code", "degree": 1}, {"id": "datepicker_field_field", "label": "Field()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Field()", "community": 191, "community_name": "Community 191", "source_file": "app/component/date/datePicker/Field.js", "file_type": "code", "degree": 1}, {"id": "datepicker_loadingdate", "label": "LoadingDate.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingDate.js", "community": 66, "community_name": "Community 66", "source_file": "app/component/date/datePicker/LoadingDate.js", "file_type": "code", "degree": 3}, {"id": "datepicker_loadingdate_loadingdate", "label": "LoadingDate()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "LoadingDate()", "community": 66, "community_name": "Community 66", "source_file": "app/component/date/datePicker/LoadingDate.js", "file_type": "code", "degree": 3}, {"id": "date_firstdatepicker", "label": "FirstDatePicker.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "FirstDatePicker.js", "community": 66, "community_name": "Community 66", "source_file": "app/component/date/datePicker/date/FirstDatePicker.js", "file_type": "code", "degree": 6}, {"id": "date_firstdatepicker_firstdatepicker", "label": "FirstDatePicker()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FirstDatePicker()", "community": 66, "community_name": "Community 66", "source_file": "app/component/date/datePicker/date/FirstDatePicker.js", "file_type": "code", "degree": 1}, {"id": "date_seconddatepicker", "label": "SecondDatePicker.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SecondDatePicker.js", "community": 66, "community_name": "Community 66", "source_file": "app/component/date/datePicker/date/SecondDatePicker.js", "file_type": "code", "degree": 6}, {"id": "date_seconddatepicker_seconddatepicker", "label": "SecondDatePicker()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SecondDatePicker()", "community": 66, "community_name": "Community 66", "source_file": "app/component/date/datePicker/date/SecondDatePicker.js", "file_type": "code", "degree": 1}, {"id": "date_dataicon", "label": "dataIcon.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "dataIcon.js", "community": 66, "community_name": "Community 66", "source_file": "app/component/date/datePicker/date/dataIcon.js", "file_type": "code", "degree": 5}, {"id": "date_dataicon_fixedicondata", "label": "fixedIconData", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fixedIconData", "community": 66, "community_name": "Community 66", "source_file": "app/component/date/datePicker/date/dataIcon.js", "file_type": "code", "degree": 1}, {"id": "date_dataicon_nexticondata", "label": "nextIconData", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "nextIconData", "community": 66, "community_name": "Community 66", "source_file": "app/component/date/datePicker/date/dataIcon.js", "file_type": "code", "degree": 3}, {"id": "date_dataicon_previcondata", "label": "prevIconData", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "prevIconData", "community": 66, "community_name": "Community 66", "source_file": "app/component/date/datePicker/date/dataIcon.js", "file_type": "code", "degree": 3}, {"id": "datepicker_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 114, "community_name": "Community 114", "source_file": "app/component/date/datePicker/index.js", "file_type": "code", "degree": 2}, {"id": "datepicker_index_gregorianmonthsof", "label": "gregorianMonthsOf()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "gregorianMonthsOf()", "community": 114, "community_name": "Community 114", "source_file": "app/component/date/datePicker/index.js", "file_type": "code", "degree": 1}, {"id": "datepicker_index_datepicker", "label": "DatePicker()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DatePicker()", "community": 114, "community_name": "Community 114", "source_file": "app/component/date/datePicker/index.js", "file_type": "code", "degree": 1}, {"id": "datetime_sendappo", "label": "SendAppo.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SendAppo.js", "community": 34, "community_name": "Community 34", "source_file": "app/component/date/dateTime/SendAppo.js", "file_type": "code", "degree": 2}, {"id": "datetime_sendappo_sendappo", "label": "SendAppo()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SendAppo()", "community": 34, "community_name": "Community 34", "source_file": "app/component/date/dateTime/SendAppo.js", "file_type": "code", "degree": 2}, {"id": "hours_list", "label": "List.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "List.js", "community": 34, "community_name": "Community 34", "source_file": "app/component/date/dateTime/hours/List.js", "file_type": "code", "degree": 2}, {"id": "hours_list_list", "label": "List()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "List()", "community": 34, "community_name": "Community 34", "source_file": "app/component/date/dateTime/hours/List.js", "file_type": "code", "degree": 2}, {"id": "hours_loading", "label": "Loading.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Loading.js", "community": 34, "community_name": "Community 34", "source_file": "app/component/date/dateTime/hours/Loading.js", "file_type": "code", "degree": 2}, {"id": "hours_loading_loading", "label": "Loading()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Loading()", "community": 34, "community_name": "Community 34", "source_file": "app/component/date/dateTime/hours/Loading.js", "file_type": "code", "degree": 2}, {"id": "hours_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 34, "community_name": "Community 34", "source_file": "app/component/date/dateTime/hours/index.js", "file_type": "code", "degree": 6}, {"id": "hours_index_hours", "label": "Hours()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Hours()", "community": 34, "community_name": "Community 34", "source_file": "app/component/date/dateTime/hours/index.js", "file_type": "code", "degree": 2}, {"id": "datetime_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 34, "community_name": "Community 34", "source_file": "app/component/date/dateTime/index.js", "file_type": "code", "degree": 7}, {"id": "datetime_index_datetime", "label": "DateTime()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DateTime()", "community": 34, "community_name": "Community 34", "source_file": "app/component/date/dateTime/index.js", "file_type": "code", "degree": 1}, {"id": "element_autocompleteselect", "label": "AutoCompleteSelect.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoCompleteSelect.js", "community": 193, "community_name": "Community 193", "source_file": "app/component/element/AutoCompleteSelect.js", "file_type": "code", "degree": 1}, {"id": "element_autocompleteselect_autocompleteselect", "label": "AutoCompleteSelect()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoCompleteSelect()", "community": 193, "community_name": "Community 193", "source_file": "app/component/element/AutoCompleteSelect.js", "file_type": "code", "degree": 1}, {"id": "element_autoselector", "label": "AutoSelector.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoSelector.js", "community": 194, "community_name": "Community 194", "source_file": "app/component/element/AutoSelector.js", "file_type": "code", "degree": 1}, {"id": "element_autoselector_autoselector", "label": "AutoSelector()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoSelector()", "community": 194, "community_name": "Community 194", "source_file": "app/component/element/AutoSelector.js", "file_type": "code", "degree": 1}, {"id": "element_field", "label": "Field.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Field.js", "community": 115, "community_name": "Community 115", "source_file": "app/component/element/Field.js", "file_type": "code", "degree": 2}, {"id": "element_field_convertpersiantoenglish", "label": "convertPersianToEnglish()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "convertPersianToEnglish()", "community": 115, "community_name": "Community 115", "source_file": "app/component/element/Field.js", "file_type": "code", "degree": 1}, {"id": "element_field_field", "label": "Field()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Field()", "community": 115, "community_name": "Community 115", "source_file": "app/component/element/Field.js", "file_type": "code", "degree": 1}, {"id": "fields_editfield", "label": "EditField.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "EditField.js", "community": 395, "community_name": "Community 395", "source_file": "app/component/fields/EditField.js", "file_type": "code", "degree": 3}, {"id": "fields_editfield_convertpersiantoenglish", "label": "convertPersianToEnglish()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "convertPersianToEnglish()", "community": 395, "community_name": "Community 395", "source_file": "app/component/fields/EditField.js", "file_type": "code", "degree": 1}, {"id": "fields_editfield_editfield", "label": "EditField()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "EditField()", "community": 395, "community_name": "Community 395", "source_file": "app/component/fields/EditField.js", "file_type": "code", "degree": 2}, {"id": "fields_field", "label": "Field.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Field.js", "community": 197, "community_name": "Community 197", "source_file": "app/component/fields/Field.js", "file_type": "code", "degree": 1}, {"id": "fields_field_field", "label": "Field()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Field()", "community": 197, "community_name": "Community 197", "source_file": "app/component/fields/Field.js", "file_type": "code", "degree": 1}, {"id": "fields_fieldicon", "label": "FieldIcon.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FieldIcon.js", "community": 198, "community_name": "Community 198", "source_file": "app/component/fields/FieldIcon.js", "file_type": "code", "degree": 1}, {"id": "fields_fieldicon_fieldicon", "label": "FieldIcon()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FieldIcon()", "community": 198, "community_name": "Community 198", "source_file": "app/component/fields/FieldIcon.js", "file_type": "code", "degree": 1}, {"id": "app_component_head_index_js_head_index", "label": "index.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 127, "community_name": "Community 127", "source_file": "app/component/head/index.js", "file_type": "code", "degree": 1}, {"id": "head_index_headpagelist", "label": "HeadPageList()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HeadPageList()", "community": 127, "community_name": "Community 127", "source_file": "app/component/head/index.js", "file_type": "code", "degree": 1}, {"id": "loading_circular", "label": "Circular.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Circular.js", "community": 56, "community_name": "Community 56", "source_file": "app/component/loading/Circular.js", "file_type": "code", "degree": 2}, {"id": "loading_circular_circularloading", "label": "CircularLoading()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CircularLoading()", "community": 56, "community_name": "Community 56", "source_file": "app/component/loading/Circular.js", "file_type": "code", "degree": 2}, {"id": "loading_custom", "label": "Custom.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Custom.js", "community": 56, "community_name": "Community 56", "source_file": "app/component/loading/Custom.js", "file_type": "code", "degree": 2}, {"id": "loading_custom_customloading", "label": "CustomLoading()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomLoading()", "community": 56, "community_name": "Community 56", "source_file": "app/component/loading/Custom.js", "file_type": "code", "degree": 2}, {"id": "loading_multiline", "label": "Multiline.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Multiline.js", "community": 341, "community_name": "Community 341", "source_file": "app/component/loading/Multiline.js", "file_type": "code", "degree": 1}, {"id": "loading_multiline_multilineloading", "label": "MultilineLoading()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MultilineLoading()", "community": 341, "community_name": "Community 341", "source_file": "app/component/loading/Multiline.js", "file_type": "code", "degree": 1}, {"id": "loading_text", "label": "Text.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Text.js", "community": 56, "community_name": "Community 56", "source_file": "app/component/loading/Text.js", "file_type": "code", "degree": 2}, {"id": "loading_text_textloading", "label": "TextLoading()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TextLoading()", "community": 56, "community_name": "Community 56", "source_file": "app/component/loading/Text.js", "file_type": "code", "degree": 2}, {"id": "modalsearchcity_addressselector", "label": "AddressSelector.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AddressSelector.js", "community": 73, "community_name": "Community 73", "source_file": "app/component/modalSearchCity/AddressSelector.js", "file_type": "code", "degree": 2}, {"id": "modalsearchcity_addressselector_addressselector", "label": "AddressSelector()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AddressSelector()", "community": 73, "community_name": "Community 73", "source_file": "app/component/modalSearchCity/AddressSelector.js", "file_type": "code", "degree": 2}, {"id": "modalsearchcity_buttonfilter", "label": "ButtonFilter.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonFilter.js", "community": 346, "community_name": "Community 346", "source_file": "app/component/modalSearchCity/ButtonFilter.js", "file_type": "code", "degree": 1}, {"id": "modalsearchcity_buttonfilter_buttonfilter", "label": "ButtonFilter()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonFilter()", "community": 346, "community_name": "Community 346", "source_file": "app/component/modalSearchCity/ButtonFilter.js", "file_type": "code", "degree": 1}, {"id": "modalsearchcity_content", "label": "Content.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 73, "community_name": "Community 73", "source_file": "app/component/modalSearchCity/Content.js", "file_type": "code", "degree": 4}, {"id": "modalsearchcity_content_content", "label": "Content()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 73, "community_name": "Community 73", "source_file": "app/component/modalSearchCity/Content.js", "file_type": "code", "degree": 3}, {"id": "modalsearchcity_index", "label": "index.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 73, "community_name": "Community 73", "source_file": "app/component/modalSearchCity/index.js", "file_type": "code", "degree": 3}, {"id": "modalsearchcity_index_modalsearchcity", "label": "ModalSearchCity()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalSearchCity()", "community": 73, "community_name": "Community 73", "source_file": "app/component/modalSearchCity/index.js", "file_type": "code", "degree": 1}, {"id": "openlocation_content", "label": "Content.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 103, "community_name": "Community 103", "source_file": "app/component/openLocation/Content.js", "file_type": "code", "degree": 2}, {"id": "openlocation_content_content", "label": "Content()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 103, "community_name": "Community 103", "source_file": "app/component/openLocation/Content.js", "file_type": "code", "degree": 2}, {"id": "openlocation_index", "label": "index.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 103, "community_name": "Community 103", "source_file": "app/component/openLocation/index.js", "file_type": "code", "degree": 3}, {"id": "openlocation_index_modalopenlocation", "label": "ModalOpenLocation()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalOpenLocation()", "community": 103, "community_name": "Community 103", "source_file": "app/component/openLocation/index.js", "file_type": "code", "degree": 1}, {"id": "selectors_defaultselect", "label": "DefaultSelect.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DefaultSelect.js", "community": 352, "community_name": "Community 352", "source_file": "app/component/selectors/DefaultSelect.js", "file_type": "code", "degree": 1}, {"id": "selectors_defaultselect_defaultselect", "label": "DefaultSelect()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DefaultSelect()", "community": 352, "community_name": "Community 352", "source_file": "app/component/selectors/DefaultSelect.js", "file_type": "code", "degree": 1}, {"id": "selectors_groupedselect", "label": "GroupedSelect.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "GroupedSelect.js", "community": 124, "community_name": "Community 124", "source_file": "app/component/selectors/GroupedSelect.js", "file_type": "code", "degree": 2}, {"id": "selectors_groupedselect_groupspecialtiesbyparent", "label": "groupSpecialtiesByParent()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "groupSpecialtiesByParent()", "community": 124, "community_name": "Community 124", "source_file": "app/component/selectors/GroupedSelect.js", "file_type": "code", "degree": 2}, {"id": "selectors_groupedselect_groupedselect", "label": "GroupedSelect()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "GroupedSelect()", "community": 124, "community_name": "Community 124", "source_file": "app/component/selectors/GroupedSelect.js", "file_type": "code", "degree": 2}, {"id": "selectors_multipleselect", "label": "MultipleSelect.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MultipleSelect.js", "community": 353, "community_name": "Community 353", "source_file": "app/component/selectors/MultipleSelect.js", "file_type": "code", "degree": 1}, {"id": "selectors_multipleselect_multipleselect", "label": "MultipleSelect()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MultipleSelect()", "community": 353, "community_name": "Community 353", "source_file": "app/component/selectors/MultipleSelect.js", "file_type": "code", "degree": 1}, {"id": "uploadfile_crop", "label": "Crop.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Crop.js", "community": 64, "community_name": "Community 64", "source_file": "app/component/uploadFile/Crop.js", "file_type": "code", "degree": 5}, {"id": "uploadfile_crop_crop", "label": "Crop()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Crop()", "community": 64, "community_name": "Community 64", "source_file": "app/component/uploadFile/Crop.js", "file_type": "code", "degree": 4}, {"id": "uploadfile_modalupload", "label": "ModalUpload.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalUpload.js", "community": 64, "community_name": "Community 64", "source_file": "app/component/uploadFile/ModalUpload.js", "file_type": "code", "degree": 4}, {"id": "uploadfile_modalupload_modalupload", "label": "ModalUpload()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalUpload()", "community": 64, "community_name": "Community 64", "source_file": "app/component/uploadFile/ModalUpload.js", "file_type": "code", "degree": 2}, {"id": "uploadfile_cropimg", "label": "cropImg.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "cropImg.js", "community": 64, "community_name": "Community 64", "source_file": "app/component/uploadFile/cropImg.js", "file_type": "code", "degree": 5}, {"id": "uploadfile_cropimg_createimage", "label": "createImage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "createImage()", "community": 64, "community_name": "Community 64", "source_file": "app/component/uploadFile/cropImg.js", "file_type": "code", "degree": 2}, {"id": "uploadfile_cropimg_getcroppedimg", "label": "getCroppedImg()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getCroppedImg()", "community": 64, "community_name": "Community 64", "source_file": "app/component/uploadFile/cropImg.js", "file_type": "code", "degree": 3}, {"id": "uploadfile_cropimg_dataurltofile", "label": "dataURLtoFile()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "dataURLtoFile()", "community": 64, "community_name": "Community 64", "source_file": "app/component/uploadFile/cropImg.js", "file_type": "code", "degree": 3}, {"id": "uploadfile_cropimg_cropimage", "label": "cropImage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "cropImage()", "community": 64, "community_name": "Community 64", "source_file": "app/component/uploadFile/cropImg.js", "file_type": "code", "degree": 4}, {"id": "uploadfile_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 64, "community_name": "Community 64", "source_file": "app/component/uploadFile/index.js", "file_type": "code", "degree": 3}, {"id": "uploadfile_index_uploadfile", "label": "UploadFile()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UploadFile()", "community": 64, "community_name": "Community 64", "source_file": "app/component/uploadFile/index.js", "file_type": "code", "degree": 1}, {"id": "contact_us_page", "label": "page.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 188, "community_name": "Community 188", "source_file": "app/contact-us/page.js", "file_type": "code", "degree": 1}, {"id": "contact_us_page_contactus", "label": "ContactUs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactUs()", "community": 188, "community_name": "Community 188", "source_file": "app/contact-us/page.js", "file_type": "code", "degree": 1}, {"id": "dashboard_not_found", "label": "not-found.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "not-found.js", "community": 189, "community_name": "Community 189", "source_file": "app/dashboard/not-found.js", "file_type": "code", "degree": 1}, {"id": "dashboard_not_found_notfound", "label": "NotFound()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NotFound()", "community": 189, "community_name": "Community 189", "source_file": "app/dashboard/not-found.js", "file_type": "code", "degree": 1}, {"id": "dashboard_page", "label": "page.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 6, "community_name": "Community 6", "source_file": "app/dashboard/page.js", "file_type": "code", "degree": 2}, {"id": "dashboard_page_metadata", "label": "metadata", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 6, "community_name": "Community 6", "source_file": "app/dashboard/page.js", "file_type": "code", "degree": 1}, {"id": "dashboard_page_dashboard", "label": "Dashboard()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Dashboard()", "community": 6, "community_name": "Community 6", "source_file": "app/dashboard/page.js", "file_type": "code", "degree": 10}, {"id": "slug_error", "label": "error.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "error.js", "community": 355, "community_name": "Community 355", "source_file": "app/doctor/[slug]/error.js", "file_type": "code", "degree": 1}, {"id": "slug_error_error", "label": "Error()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Error()", "community": 355, "community_name": "Community 355", "source_file": "app/doctor/[slug]/error.js", "file_type": "code", "degree": 1}, {"id": "app_doctor_slug_page_js_slug_page", "label": "page.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 372, "community_name": "Community 372", "source_file": "app/doctor/[slug]/page.js", "file_type": "code", "degree": 5}, {"id": "slug_page_getdoctor", "label": "getDoctor", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getDoctor", "community": 372, "community_name": "Community 372", "source_file": "app/doctor/[slug]/page.js", "file_type": "code", "degree": 3}, {"id": "slug_page_getdoctoraddresses", "label": "getDoctorAddresses", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getDoctorAddresses", "community": 372, "community_name": "Community 372", "source_file": "app/doctor/[slug]/page.js", "file_type": "code", "degree": 2}, {"id": "slug_page_getbookinglocations", "label": "getBookingLocations", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getBookingLocations", "community": 372, "community_name": "Community 372", "source_file": "app/doctor/[slug]/page.js", "file_type": "code", "degree": 2}, {"id": "app_doctor_slug_page_js_slug_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "generateMetadata()", "community": 372, "community_name": "Community 372", "source_file": "app/doctor/[slug]/page.js", "file_type": "code", "degree": 9}, {"id": "slug_page_doctor", "label": "Doctor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Doctor()", "community": 372, "community_name": "Community 372", "source_file": "app/doctor/[slug]/page.js", "file_type": "code", "degree": 12}, {"id": "doctors_loading", "label": "loading.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "loading.js", "community": 192, "community_name": "Community 192", "source_file": "app/doctors/loading.js", "file_type": "code", "degree": 1}, {"id": "doctors_loading_loading", "label": "Loading()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Loading()", "community": 192, "community_name": "Community 192", "source_file": "app/doctors/loading.js", "file_type": "code", "degree": 1}, {"id": "doctors_page", "label": "page.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 29, "community_name": "Community 29", "source_file": "app/doctors/page.js", "file_type": "code", "degree": 2}, {"id": "doctors_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 29, "community_name": "Community 29", "source_file": "app/doctors/page.js", "file_type": "code", "degree": 3}, {"id": "doctors_page_doctors", "label": "Doctors()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Doctors()", "community": 29, "community_name": "Community 29", "source_file": "app/doctors/page.js", "file_type": "code", "degree": 5}, {"id": "app_error", "label": "error.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "error.js", "community": 129, "community_name": "Community 129", "source_file": "app/error.js", "file_type": "code", "degree": 1}, {"id": "app_error_error", "label": "Error()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Error()", "community": 129, "community_name": "Community 129", "source_file": "app/error.js", "file_type": "code", "degree": 1}, {"id": "app_layout", "label": "layout.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "layout.js", "community": 65, "community_name": "Community 65", "source_file": "app/layout.js", "file_type": "code", "degree": 9}, {"id": "app_layout_viewport", "label": "viewport", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "viewport", "community": 65, "community_name": "Community 65", "source_file": "app/layout.js", "file_type": "code", "degree": 1}, {"id": "app_layout_generatemetadata", "label": "generateMetadata()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 72, "community_name": "Community 72", "source_file": "app/layout.js", "file_type": "code", "degree": 4}, {"id": "app_layout_rootlayout", "label": "RootLayout()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "RootLayout()", "community": 86, "community_name": "Community 86", "source_file": "app/layout.js", "file_type": "code", "degree": 4}, {"id": "login_verify_page", "label": "page.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 118, "community_name": "Community 118", "source_file": "app/login-verify/page.js", "file_type": "code", "degree": 2}, {"id": "login_verify_page_metadata", "label": "metadata", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 118, "community_name": "Community 118", "source_file": "app/login-verify/page.js", "file_type": "code", "degree": 1}, {"id": "login_verify_page_loginverify", "label": "LoginVerify()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginVerify()", "community": 118, "community_name": "Community 118", "source_file": "app/login-verify/page.js", "file_type": "code", "degree": 1}, {"id": "login_page", "label": "page.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 379, "community_name": "Community 379", "source_file": "app/login/page.js", "file_type": "code", "degree": 2}, {"id": "login_page_metadata", "label": "metadata", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 379, "community_name": "Community 379", "source_file": "app/login/page.js", "file_type": "code", "degree": 1}, {"id": "login_page_login", "label": "LogIn()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "LogIn()", "community": 379, "community_name": "Community 379", "source_file": "app/login/page.js", "file_type": "code", "degree": 3}, {"id": "maintenance_page", "label": "page.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 399, "community_name": "Community 399", "source_file": "app/maintenance/page.js", "file_type": "code", "degree": 2}, {"id": "maintenance_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 399, "community_name": "Community 399", "source_file": "app/maintenance/page.js", "file_type": "code", "degree": 1}, {"id": "maintenance_page_maintenance", "label": "Maintenance()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Maintenance()", "community": 399, "community_name": "Community 399", "source_file": "app/maintenance/page.js", "file_type": "code", "degree": 1}, {"id": "app_not_found", "label": "not-found.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "not-found.js", "community": 130, "community_name": "Community 130", "source_file": "app/not-found.js", "file_type": "code", "degree": 1}, {"id": "app_not_found_notfound", "label": "NotFound()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NotFound()", "community": 130, "community_name": "Community 130", "source_file": "app/not-found.js", "file_type": "code", "degree": 1}, {"id": "app_page", "label": "page.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 131, "community_name": "Community 131", "source_file": "app/page.js", "file_type": "code", "degree": 1}, {"id": "app_page_home", "label": "Home()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Home()", "community": 131, "community_name": "Community 131", "source_file": "app/page.js", "file_type": "code", "degree": 1}, {"id": "uuid_page", "label": "page.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 358, "community_name": "Community 358", "source_file": "app/payment/[uuid]/page.js", "file_type": "code", "degree": 1}, {"id": "uuid_page_paymentdetailspage", "label": "PaymentDetailsPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentDetailsPage()", "community": 358, "community_name": "Community 358", "source_file": "app/payment/[uuid]/page.js", "file_type": "code", "degree": 1}, {"id": "payment_layout", "label": "layout.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "layout.js", "community": 120, "community_name": "Community 120", "source_file": "app/payment/layout.js", "file_type": "code", "degree": 2}, {"id": "payment_layout_metadata", "label": "metadata", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 120, "community_name": "Community 120", "source_file": "app/payment/layout.js", "file_type": "code", "degree": 1}, {"id": "payment_layout_paymentlayout", "label": "PaymentLayout()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentLayout()", "community": 120, "community_name": "Community 120", "source_file": "app/payment/layout.js", "file_type": "code", "degree": 1}, {"id": "result_page", "label": "page.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 123, "community_name": "Community 123", "source_file": "app/payment/result/page.js", "file_type": "code", "degree": 2}, {"id": "result_page_paymentresultredirect", "label": "PaymentResultRedirect()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentResultRedirect()", "community": 123, "community_name": "Community 123", "source_file": "app/payment/result/page.js", "file_type": "code", "degree": 1}, {"id": "result_page_paymentresultpage", "label": "PaymentResultPage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentResultPage()", "community": 123, "community_name": "Community 123", "source_file": "app/payment/result/page.js", "file_type": "code", "degree": 1}, {"id": "app_robots", "label": "robots.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "robots.js", "community": 3, "community_name": "Community 3", "source_file": "app/robots.js", "file_type": "code", "degree": 4}, {"id": "app_robots_getcurrentdomain", "label": "getCurrentDomain()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getCurrentDomain()", "community": 3, "community_name": "Community 3", "source_file": "app/robots.js", "file_type": "code", "degree": 2}, {"id": "app_robots_robots", "label": "robots()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "robots()", "community": 3, "community_name": "Community 3", "source_file": "app/robots.js", "file_type": "code", "degree": 3}, {"id": "app_sitemap", "label": "sitemap.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.4, "font": {"size": 12, "color": "#ffffff"}, "title": "sitemap.js", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 15}, {"id": "app_sitemap_tosafedate", "label": "toSafeDate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "toSafeDate()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 2}, {"id": "app_sitemap_withlastmodified", "label": "withLastModified()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "withLastModified()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 2}, {"id": "app_sitemap_getcurrentdomain", "label": "getCurrentDomain()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getCurrentDomain()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 2}, {"id": "app_sitemap_getcityscope", "label": "getCityScope()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getCityScope()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 3}, {"id": "app_sitemap_getstaticpages", "label": "getStaticPages()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getStaticPages()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 2}, {"id": "app_sitemap_fetchallpages", "label": "fetchAllPages()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchAllPages()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 5}, {"id": "app_sitemap_cityfilterparams", "label": "cityFilterParams()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "cityFilterParams()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 4}, {"id": "app_sitemap_getpublisheddoctors", "label": "getPublishedDoctors()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getPublishedDoctors()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 4}, {"id": "app_sitemap_getdoctorurls", "label": "getDoctorUrls()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getDoctorUrls()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 4}, {"id": "app_sitemap_getclinicurls", "label": "getClinicUrls()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getClinicUrls()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 4}, {"id": "app_sitemap_getspecialtyurls", "label": "getSpecialtyUrls()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getSpecialtyUrls()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 2}, {"id": "app_sitemap_getblogurls", "label": "getBlogUrls()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getBlogUrls()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 3}, {"id": "app_sitemap_sitemap", "label": "sitemap()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "sitemap()", "community": 3, "community_name": "Community 3", "source_file": "app/sitemap.js", "file_type": "code", "degree": 10}, {"id": "app_specialties_slug_page_js_slug_page", "label": "page.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 86, "community_name": "Community 86", "source_file": "app/specialties/[slug]/page.js", "file_type": "code", "degree": 4}, {"id": "slug_page_findspecialty", "label": "findSpecialty()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "findSpecialty()", "community": 86, "community_name": "Community 86", "source_file": "app/specialties/[slug]/page.js", "file_type": "code", "degree": 3}, {"id": "slug_page_getdoctors", "label": "getDoctors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getDoctors", "community": 86, "community_name": "Community 86", "source_file": "app/specialties/[slug]/page.js", "file_type": "code", "degree": 4}, {"id": "app_specialties_slug_page_js_slug_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 86, "community_name": "Community 86", "source_file": "app/specialties/[slug]/page.js", "file_type": "code", "degree": 6}, {"id": "slug_page_specialtydetail", "label": "SpecialtyDetail()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "SpecialtyDetail()", "community": 86, "community_name": "Community 86", "source_file": "app/specialties/[slug]/page.js", "file_type": "code", "degree": 9}, {"id": "specialties_page", "label": "page.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "page.js", "community": 29, "community_name": "Community 29", "source_file": "app/specialties/page.js", "file_type": "code", "degree": 2}, {"id": "specialties_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 29, "community_name": "Community 29", "source_file": "app/specialties/page.js", "file_type": "code", "degree": 2}, {"id": "specialties_page_specialties", "label": "Specialties()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Specialties()", "community": 29, "community_name": "Community 29", "source_file": "app/specialties/page.js", "file_type": "code", "degree": 2}, {"id": "theme_theme", "label": "theme.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "theme.js", "community": 65, "community_name": "Community 65", "source_file": "app/theme/theme.js", "file_type": "code", "degree": 2}, {"id": "theme_theme_theme", "label": "theme", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "theme", "community": 65, "community_name": "Community 65", "source_file": "app/theme/theme.js", "file_type": "code", "degree": 2}, {"id": "components_altcha", "label": "Altcha.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Altcha.js", "community": 85, "community_name": "Community 85", "source_file": "components/Altcha.js", "file_type": "code", "degree": 1}, {"id": "components_altcha_altcha", "label": "Altcha()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Altcha()", "community": 85, "community_name": "Community 85", "source_file": "components/Altcha.js", "file_type": "code", "degree": 1}, {"id": "aboutus_head", "label": "Head.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head.js", "community": 16, "community_name": "Community 16", "source_file": "components/aboutUs/Head.js", "file_type": "code", "degree": 2}, {"id": "aboutus_head_head", "label": "Head()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 16, "community_name": "Community 16", "source_file": "components/aboutUs/Head.js", "file_type": "code", "degree": 2}, {"id": "aboutus_services", "label": "Services.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Services.js", "community": 16, "community_name": "Community 16", "source_file": "components/aboutUs/Services.js", "file_type": "code", "degree": 7}, {"id": "aboutus_services_ourservices", "label": "ourServices", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ourServices", "community": 16, "community_name": "Community 16", "source_file": "components/aboutUs/Services.js", "file_type": "code", "degree": 1}, {"id": "aboutus_services_services", "label": "Services()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Services()", "community": 16, "community_name": "Community 16", "source_file": "components/aboutUs/Services.js", "file_type": "code", "degree": 2}, {"id": "aboutus_index", "label": "index.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 16, "community_name": "Community 16", "source_file": "components/aboutUs/index.js", "file_type": "code", "degree": 5}, {"id": "aboutus_index_aboutuspage", "label": "AboutUsPage()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AboutUsPage()", "community": 16, "community_name": "Community 16", "source_file": "components/aboutUs/index.js", "file_type": "code", "degree": 2}, {"id": "appointment_container", "label": "Container.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Container.js", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/Container.js", "file_type": "code", "degree": 10}, {"id": "appointment_container_container", "label": "Container()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Container()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/Container.js", "file_type": "code", "degree": 2}, {"id": "appointment_content", "label": "Content.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/Content.js", "file_type": "code", "degree": 4}, {"id": "appointment_content_content", "label": "Content()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/Content.js", "file_type": "code", "degree": 2}, {"id": "time_selectdatepicker", "label": "SelectDatePicker.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectDatePicker.js", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/date/Time/SelectDatePicker.js", "file_type": "code", "degree": 2}, {"id": "time_selectdatepicker_selectdatepicker", "label": "SelectDatePicker()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectDatePicker()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/date/Time/SelectDatePicker.js", "file_type": "code", "degree": 2}, {"id": "time_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/date/Time/index.js", "file_type": "code", "degree": 4}, {"id": "time_index_time", "label": "Time()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Time()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/date/Time/index.js", "file_type": "code", "degree": 2}, {"id": "hour_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/date/hour/index.js", "file_type": "code", "degree": 2}, {"id": "hour_index_hour", "label": "Hour()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Hour()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/date/hour/index.js", "file_type": "code", "degree": 2}, {"id": "date_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/date/index.js", "file_type": "code", "degree": 6}, {"id": "date_index_date", "label": "Date()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Date()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/date/index.js", "file_type": "code", "degree": 2}, {"id": "detail_content", "label": "Content.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 395, "community_name": "Community 395", "source_file": "components/appointment/detail/Content.js", "file_type": "code", "degree": 2}, {"id": "detail_content_content", "label": "Content()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 395, "community_name": "Community 395", "source_file": "components/appointment/detail/Content.js", "file_type": "code", "degree": 2}, {"id": "detail_form", "label": "Form.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Form.js", "community": 395, "community_name": "Community 395", "source_file": "components/appointment/detail/Form.js", "file_type": "code", "degree": 6}, {"id": "detail_form_form", "label": "Form()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Form()", "community": 388, "community_name": "Community 388", "source_file": "components/appointment/detail/Form.js", "file_type": "code", "degree": 2}, {"id": "detail_submitdata", "label": "SubmitData.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SubmitData.js", "community": 388, "community_name": "Community 388", "source_file": "components/appointment/detail/SubmitData.js", "file_type": "code", "degree": 4}, {"id": "detail_submitdata_submitdata", "label": "SubmitData()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SubmitData()", "community": 388, "community_name": "Community 388", "source_file": "components/appointment/detail/SubmitData.js", "file_type": "code", "degree": 3}, {"id": "components_appointment_detail_index_js_detail_index", "label": "index.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 388, "community_name": "Community 388", "source_file": "components/appointment/detail/index.js", "file_type": "code", "degree": 5}, {"id": "components_appointment_detail_index_js_detail_index_detail", "label": "Detail()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Detail()", "community": 388, "community_name": "Community 388", "source_file": "components/appointment/detail/index.js", "file_type": "code", "degree": 1}, {"id": "failedpay_index", "label": "index.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 196, "community_name": "Community 196", "source_file": "components/appointment/failedPay/index.js", "file_type": "code", "degree": 1}, {"id": "failedpay_index_failedpay", "label": "FailedPay()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FailedPay()", "community": 196, "community_name": "Community 196", "source_file": "components/appointment/failedPay/index.js", "file_type": "code", "degree": 1}, {"id": "appointment_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/index.js", "file_type": "code", "degree": 5}, {"id": "appointment_index_defaultdata", "label": "defaultData", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "defaultData", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/index.js", "file_type": "code", "degree": 1}, {"id": "appointment_index_buildprofiledata", "label": "buildProfileData()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildProfileData()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/index.js", "file_type": "code", "degree": 1}, {"id": "appointment_index_appointmentpage", "label": "AppointmentPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AppointmentPage()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/index.js", "file_type": "code", "degree": 1}, {"id": "information_detail", "label": "Detail.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Detail.js", "community": 78, "community_name": "Community 78", "source_file": "components/appointment/information/Detail.js", "file_type": "code", "degree": 2}, {"id": "information_detail_detail", "label": "Detail()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Detail()", "community": 78, "community_name": "Community 78", "source_file": "components/appointment/information/Detail.js", "file_type": "code", "degree": 2}, {"id": "information_head", "label": "Head.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head.js", "community": 78, "community_name": "Community 78", "source_file": "components/appointment/information/Head.js", "file_type": "code", "degree": 2}, {"id": "information_head_head", "label": "Head()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 78, "community_name": "Community 78", "source_file": "components/appointment/information/Head.js", "file_type": "code", "degree": 2}, {"id": "components_appointment_information_index_js_information_index", "label": "index.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 78, "community_name": "Community 78", "source_file": "components/appointment/information/index.js", "file_type": "code", "degree": 5}, {"id": "components_appointment_information_index_js_information_index_information", "label": "Information()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Information()", "community": 78, "community_name": "Community 78", "source_file": "components/appointment/information/index.js", "file_type": "code", "degree": 1}, {"id": "location_address", "label": "Address.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Address.js", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/location/Address.js", "file_type": "code", "degree": 2}, {"id": "location_address_address", "label": "Address()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Address()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/location/Address.js", "file_type": "code", "degree": 2}, {"id": "location_head", "label": "Head.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head.js", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/location/Head.js", "file_type": "code", "degree": 2}, {"id": "location_head_head", "label": "Head()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/location/Head.js", "file_type": "code", "degree": 2}, {"id": "location_locationselect", "label": "LocationSelect.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationSelect.js", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/location/LocationSelect.js", "file_type": "code", "degree": 3}, {"id": "location_locationselect_nextavailablelabel", "label": "nextAvailableLabel()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "nextAvailableLabel()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/location/LocationSelect.js", "file_type": "code", "degree": 1}, {"id": "location_locationselect_locationselect", "label": "LocationSelect()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationSelect()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/location/LocationSelect.js", "file_type": "code", "degree": 2}, {"id": "location_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/location/index.js", "file_type": "code", "degree": 6}, {"id": "location_index_location", "label": "Location()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Location()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/location/index.js", "file_type": "code", "degree": 2}, {"id": "paying_buttonfixed", "label": "ButtonFixed.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonFixed.js", "community": 388, "community_name": "Community 388", "source_file": "components/appointment/paying/ButtonFixed.js", "file_type": "code", "degree": 3}, {"id": "paying_buttonfixed_buttonfixed", "label": "ButtonFixed()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonFixed()", "community": 388, "community_name": "Community 388", "source_file": "components/appointment/paying/ButtonFixed.js", "file_type": "code", "degree": 3}, {"id": "paying_index", "label": "index.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 388, "community_name": "Community 388", "source_file": "components/appointment/paying/index.js", "file_type": "code", "degree": 3}, {"id": "paying_index_paying", "label": "Paying()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Paying()", "community": 397, "community_name": "Community 397", "source_file": "components/appointment/paying/index.js", "file_type": "code", "degree": 2}, {"id": "service_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/service/index.js", "file_type": "code", "degree": 3}, {"id": "service_index_totoman", "label": "toToman()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "toToman()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/service/index.js", "file_type": "code", "degree": 1}, {"id": "service_index_serviceselect", "label": "ServiceSelect()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ServiceSelect()", "community": 11, "community_name": "Community 11", "source_file": "components/appointment/service/index.js", "file_type": "code", "degree": 2}, {"id": "successpay_index", "label": "index.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 356, "community_name": "Community 356", "source_file": "components/appointment/successPay/index.js", "file_type": "code", "degree": 1}, {"id": "successpay_index_successpay", "label": "SuccessPay()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SuccessPay()", "community": 356, "community_name": "Community 356", "source_file": "components/appointment/successPay/index.js", "file_type": "code", "degree": 1}, {"id": "detail_caption", "label": "Caption.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Caption.js", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/Caption.js", "file_type": "code", "degree": 2}, {"id": "detail_caption_caption", "label": "Caption()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Caption()", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/Caption.js", "file_type": "code", "degree": 5}, {"id": "components_blog_detail_faq_js_detail_faq", "label": "Faq.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Faq.js", "community": 404, "community_name": "Community 404", "source_file": "components/blog/detail/Faq.js", "file_type": "code", "degree": 1}, {"id": "components_blog_detail_faq_js_detail_faq_faq", "label": "Faq()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Faq()", "community": 404, "community_name": "Community 404", "source_file": "components/blog/detail/Faq.js", "file_type": "code", "degree": 1}, {"id": "detail_socialmedia", "label": "SocialMedia.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SocialMedia.js", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/SocialMedia.js", "file_type": "code", "degree": 3}, {"id": "detail_socialmedia_socials", "label": "socials", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "socials", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/SocialMedia.js", "file_type": "code", "degree": 1}, {"id": "detail_socialmedia_socialmedia", "label": "SocialMedia()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SocialMedia()", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/SocialMedia.js", "file_type": "code", "degree": 2}, {"id": "detail_sources", "label": "Sources.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Sources.js", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/Sources.js", "file_type": "code", "degree": 2}, {"id": "detail_sources_sources", "label": "Sources()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Sources()", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/Sources.js", "file_type": "code", "degree": 2}, {"id": "commentuser_addcomment", "label": "AddComment.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AddComment.js", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/commentUser/AddComment.js", "file_type": "code", "degree": 2}, {"id": "commentuser_addcomment_addcomment", "label": "AddComment()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AddComment()", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/commentUser/AddComment.js", "file_type": "code", "degree": 2}, {"id": "commentuser_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/commentUser/index.js", "file_type": "code", "degree": 4}, {"id": "commentuser_index_commentuser", "label": "CommentUser()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CommentUser()", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/commentUser/index.js", "file_type": "code", "degree": 2}, {"id": "components_blog_detail_index_js_detail_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/index.js", "file_type": "code", "degree": 9}, {"id": "components_blog_detail_index_js_detail_index_detail", "label": "Detail()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Detail()", "community": 4, "community_name": "Community 4", "source_file": "components/blog/detail/index.js", "file_type": "code", "degree": 1}, {"id": "components_blog_head_index_js_head_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 1, "community_name": "Community 1", "source_file": "components/blog/head/index.js", "file_type": "code", "degree": 1}, {"id": "components_blog_head_index_js_head_index_head", "label": "Head()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 1, "community_name": "Community 1", "source_file": "components/blog/head/index.js", "file_type": "code", "degree": 2}, {"id": "blog_index", "label": "index.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 392, "community_name": "Community 392", "source_file": "components/blog/index.js", "file_type": "code", "degree": 3}, {"id": "blog_index_blogpage", "label": "BlogPage()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPage()", "community": 392, "community_name": "Community 392", "source_file": "components/blog/index.js", "file_type": "code", "degree": 1}, {"id": "relatedcontent_item", "label": "Item.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Item.js", "community": 392, "community_name": "Community 392", "source_file": "components/blog/relatedContent/Item.js", "file_type": "code", "degree": 2}, {"id": "relatedcontent_item_item", "label": "Item()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Item()", "community": 392, "community_name": "Community 392", "source_file": "components/blog/relatedContent/Item.js", "file_type": "code", "degree": 5}, {"id": "relatedcontent_index", "label": "index.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 392, "community_name": "Community 392", "source_file": "components/blog/relatedContent/index.js", "file_type": "code", "degree": 4}, {"id": "relatedcontent_index_relatedcontent", "label": "RelatedContent()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RelatedContent()", "community": 392, "community_name": "Community 392", "source_file": "components/blog/relatedContent/index.js", "file_type": "code", "degree": 2}, {"id": "blogs_head", "label": "Head.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head.js", "community": 83, "community_name": "Community 83", "source_file": "components/blogs/Head.js", "file_type": "code", "degree": 2}, {"id": "blogs_head_head", "label": "Head()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 83, "community_name": "Community 83", "source_file": "components/blogs/Head.js", "file_type": "code", "degree": 2}, {"id": "blogs_index", "label": "index.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 83, "community_name": "Community 83", "source_file": "components/blogs/index.js", "file_type": "code", "degree": 7}, {"id": "blogs_index_blogspage", "label": "BlogsPage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogsPage()", "community": 83, "community_name": "Community 83", "source_file": "components/blogs/index.js", "file_type": "code", "degree": 1}, {"id": "latestarticles_article", "label": "Article.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Article.js", "community": 83, "community_name": "Community 83", "source_file": "components/blogs/latestArticles/Article.js", "file_type": "code", "degree": 2}, {"id": "latestarticles_article_article", "label": "Article()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Article()", "community": 83, "community_name": "Community 83", "source_file": "components/blogs/latestArticles/Article.js", "file_type": "code", "degree": 5}, {"id": "latestarticles_index", "label": "index.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 83, "community_name": "Community 83", "source_file": "components/blogs/latestArticles/index.js", "file_type": "code", "degree": 4}, {"id": "latestarticles_index_latestarticles", "label": "LatestArticles()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LatestArticles()", "community": 83, "community_name": "Community 83", "source_file": "components/blogs/latestArticles/index.js", "file_type": "code", "degree": 2}, {"id": "title_itemtitle", "label": "ItemTitle.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemTitle.js", "community": 83, "community_name": "Community 83", "source_file": "components/blogs/title/ItemTitle.js", "file_type": "code", "degree": 2}, {"id": "title_itemtitle_itemtitle", "label": "ItemTitle()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemTitle()", "community": 83, "community_name": "Community 83", "source_file": "components/blogs/title/ItemTitle.js", "file_type": "code", "degree": 2}, {"id": "title_index", "label": "index.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 83, "community_name": "Community 83", "source_file": "components/blogs/title/index.js", "file_type": "code", "degree": 4}, {"id": "title_index_title", "label": "Title()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Title()", "community": 83, "community_name": "Community 83", "source_file": "components/blogs/title/index.js", "file_type": "code", "degree": 2}, {"id": "about_contentdetail", "label": "ContentDetail.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentDetail.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/ContentDetail.js", "file_type": "code", "degree": 2}, {"id": "about_contentdetail_contentdetail", "label": "ContentDetail()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentDetail()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/ContentDetail.js", "file_type": "code", "degree": 2}, {"id": "about_listbime", "label": "ListBime.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ListBime.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/ListBime.js", "file_type": "code", "degree": 2}, {"id": "about_listbime_listbime", "label": "ListBime()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ListBime()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/ListBime.js", "file_type": "code", "degree": 2}, {"id": "about_services", "label": "Services.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Services.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/Services.js", "file_type": "code", "degree": 2}, {"id": "about_services_services", "label": "Services()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Services()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/Services.js", "file_type": "code", "degree": 2}, {"id": "about_specialties", "label": "Specialties.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Specialties.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/Specialties.js", "file_type": "code", "degree": 2}, {"id": "about_specialties_specialties", "label": "Specialties()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Specialties()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/Specialties.js", "file_type": "code", "degree": 2}, {"id": "about_textdetail", "label": "TextDetail.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TextDetail.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/TextDetail.js", "file_type": "code", "degree": 2}, {"id": "about_textdetail_textdetail", "label": "TextDetail()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TextDetail()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/TextDetail.js", "file_type": "code", "degree": 3}, {"id": "images_images", "label": "Images.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Images.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/images/Images.js", "file_type": "code", "degree": 6}, {"id": "images_images_images", "label": "Images()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Images()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/images/Images.js", "file_type": "code", "degree": 3}, {"id": "images_img", "label": "Img.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Img.js", "community": 338, "community_name": "Community 338", "source_file": "components/clinic/components/about/images/Img.js", "file_type": "code", "degree": 1}, {"id": "images_img_img", "label": "Img()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Img()", "community": 338, "community_name": "Community 338", "source_file": "components/clinic/components/about/images/Img.js", "file_type": "code", "degree": 1}, {"id": "images_list", "label": "List.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "List.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/images/List.js", "file_type": "code", "degree": 2}, {"id": "images_list_list", "label": "List()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "List()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/images/List.js", "file_type": "code", "degree": 2}, {"id": "images_slider", "label": "Slider.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Slider.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/images/Slider.js", "file_type": "code", "degree": 2}, {"id": "images_slider_slider", "label": "Slider()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Slider()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/images/Slider.js", "file_type": "code", "degree": 2}, {"id": "about_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.8, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/index.js", "file_type": "code", "degree": 14}, {"id": "about_index_about", "label": "About()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "About()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/about/index.js", "file_type": "code", "degree": 2}, {"id": "contact_contentdetail", "label": "ContentDetail.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentDetail.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/contact/ContentDetail.js", "file_type": "code", "degree": 2}, {"id": "contact_contentdetail_contentdetail", "label": "ContentDetail()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentDetail()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/contact/ContentDetail.js", "file_type": "code", "degree": 2}, {"id": "contact_detail", "label": "Detail.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Detail.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/contact/Detail.js", "file_type": "code", "degree": 4}, {"id": "contact_detail_detail", "label": "Detail()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Detail()", "community": 81, "community_name": "Community 81", "source_file": "components/clinic/components/contact/Detail.js", "file_type": "code", "degree": 5}, {"id": "contact_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/contact/index.js", "file_type": "code", "degree": 5}, {"id": "contact_index_mapview", "label": "MapView", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MapView", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/contact/index.js", "file_type": "code", "degree": 1}, {"id": "contact_index_contact", "label": "Contact()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Contact()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/contact/index.js", "file_type": "code", "degree": 3}, {"id": "components_clinic_components_contact_modal_content_js_modal_content", "label": "Content.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 109, "community_name": "Community 109", "source_file": "components/clinic/components/contact/modal/Content.js", "file_type": "code", "degree": 2}, {"id": "modal_content_maps", "label": "maps", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "maps", "community": 109, "community_name": "Community 109", "source_file": "components/clinic/components/contact/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_contact_modal_content_js_modal_content_content", "label": "Content()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 109, "community_name": "Community 109", "source_file": "components/clinic/components/contact/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_contact_modal_index_js_modal_index", "label": "index.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 148, "community_name": "Community 148", "source_file": "components/clinic/components/contact/modal/index.js", "file_type": "code", "degree": 1}, {"id": "modal_index_modalopenlocation", "label": "ModalOpenLocation()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalOpenLocation()", "community": 148, "community_name": "Community 148", "source_file": "components/clinic/components/contact/modal/index.js", "file_type": "code", "degree": 1}, {"id": "doctors_list", "label": "List.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "List.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/doctors/List.js", "file_type": "code", "degree": 2}, {"id": "doctors_list_list", "label": "List()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "List()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/doctors/List.js", "file_type": "code", "degree": 2}, {"id": "components_clinic_components_doctors_head_index_js_head_index", "label": "index.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 149, "community_name": "Community 149", "source_file": "components/clinic/components/doctors/head/index.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_index_js_head_index_head", "label": "Head()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 149, "community_name": "Community 149", "source_file": "components/clinic/components/doctors/head/index.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_buttonapply_js_modal_buttonapply", "label": "ButtonApply.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonApply.js", "community": 150, "community_name": "Community 150", "source_file": "components/clinic/components/doctors/head/modal/ButtonApply.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_buttonapply_js_modal_buttonapply_buttonapply", "label": "ButtonApply()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonApply()", "community": 150, "community_name": "Community 150", "source_file": "components/clinic/components/doctors/head/modal/ButtonApply.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_content_js_modal_content", "label": "Content.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 151, "community_name": "Community 151", "source_file": "components/clinic/components/doctors/head/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_content_js_modal_content_content", "label": "Content()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 151, "community_name": "Community 151", "source_file": "components/clinic/components/doctors/head/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_deleteallbutton_js_modal_deleteallbutton", "label": "DeleteAllButton.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteAllButton.js", "community": 152, "community_name": "Community 152", "source_file": "components/clinic/components/doctors/head/modal/DeleteAllButton.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_deleteallbutton_js_modal_deleteallbutton_deleteallbutton", "label": "DeleteAllButton()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteAllButton()", "community": 152, "community_name": "Community 152", "source_file": "components/clinic/components/doctors/head/modal/DeleteAllButton.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_filtermodal_js_modal_filtermodal", "label": "FilterModal.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterModal.js", "community": 153, "community_name": "Community 153", "source_file": "components/clinic/components/doctors/head/modal/FilterModal.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_filtermodal_js_modal_filtermodal_filtermodal", "label": "FilterModal()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterModal()", "community": 153, "community_name": "Community 153", "source_file": "components/clinic/components/doctors/head/modal/FilterModal.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_form_cateselector_js_form_cateselector", "label": "CateSelector.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CateSelector.js", "community": 154, "community_name": "Community 154", "source_file": "components/clinic/components/doctors/head/modal/form/CateSelector.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_form_cateselector_js_form_cateselector_cateselector", "label": "CateSelector()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CateSelector()", "community": 154, "community_name": "Community 154", "source_file": "components/clinic/components/doctors/head/modal/form/CateSelector.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_form_radiocontent_js_form_radiocontent", "label": "RadioContent.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RadioContent.js", "community": 155, "community_name": "Community 155", "source_file": "components/clinic/components/doctors/head/modal/form/RadioContent.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_form_radiocontent_js_form_radiocontent_radiocontent", "label": "RadioContent()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RadioContent()", "community": 155, "community_name": "Community 155", "source_file": "components/clinic/components/doctors/head/modal/form/RadioContent.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_form_radios_js_form_radios", "label": "Radios.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Radios.js", "community": 156, "community_name": "Community 156", "source_file": "components/clinic/components/doctors/head/modal/form/Radios.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_form_radios_js_form_radios_radios", "label": "Radios()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Radios()", "community": 156, "community_name": "Community 156", "source_file": "components/clinic/components/doctors/head/modal/form/Radios.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_form_switchcontent_js_form_switchcontent", "label": "SwitchContent.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SwitchContent.js", "community": 157, "community_name": "Community 157", "source_file": "components/clinic/components/doctors/head/modal/form/SwitchContent.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_form_switchcontent_js_form_switchcontent_switchcontent", "label": "SwitchContent()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SwitchContent()", "community": 157, "community_name": "Community 157", "source_file": "components/clinic/components/doctors/head/modal/form/SwitchContent.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_form_index_js_form_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 71, "community_name": "Community 71", "source_file": "components/clinic/components/doctors/head/modal/form/index.js", "file_type": "code", "degree": 3}, {"id": "components_clinic_components_doctors_head_modal_form_index_js_form_index_gender", "label": "gender", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "gender", "community": 71, "community_name": "Community 71", "source_file": "components/clinic/components/doctors/head/modal/form/index.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_form_index_js_form_index_degree", "label": "degree", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "degree", "community": 71, "community_name": "Community 71", "source_file": "components/clinic/components/doctors/head/modal/form/index.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_modal_form_index_js_form_index_form", "label": "Form()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Form()", "community": 71, "community_name": "Community 71", "source_file": "components/clinic/components/doctors/head/modal/form/index.js", "file_type": "code", "degree": 2}, {"id": "components_clinic_components_doctors_head_search_autocomplete_js_search_autocomplete", "label": "AutoComplete.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoComplete.js", "community": 158, "community_name": "Community 158", "source_file": "components/clinic/components/doctors/head/search/AutoComplete.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_search_autocomplete_js_search_autocomplete_autocomplete", "label": "AutoComplete()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoComplete()", "community": 158, "community_name": "Community 158", "source_file": "components/clinic/components/doctors/head/search/AutoComplete.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_search_searchfield_js_search_searchfield", "label": "SearchField.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchField.js", "community": 160, "community_name": "Community 160", "source_file": "components/clinic/components/doctors/head/search/SearchField.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_search_searchfield_js_search_searchfield_searchfield", "label": "SearchField()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchField()", "community": 160, "community_name": "Community 160", "source_file": "components/clinic/components/doctors/head/search/SearchField.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_search_sendreq_js_search_sendreq", "label": "SendReq.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SendReq.js", "community": 161, "community_name": "Community 161", "source_file": "components/clinic/components/doctors/head/search/SendReq.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_search_sendreq_js_search_sendreq_sendreq", "label": "SendReq()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SendReq()", "community": 161, "community_name": "Community 161", "source_file": "components/clinic/components/doctors/head/search/SendReq.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_search_index_js_search_index", "label": "index.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 159, "community_name": "Community 159", "source_file": "components/clinic/components/doctors/head/search/index.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_search_index_js_search_index_searchbar", "label": "SearchBar()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchBar()", "community": 159, "community_name": "Community 159", "source_file": "components/clinic/components/doctors/head/search/index.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_sortlist_filterbtn_js_sortlist_filterbtn", "label": "FilterBtn.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterBtn.js", "community": 162, "community_name": "Community 162", "source_file": "components/clinic/components/doctors/head/sortlist/FilterBtn.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_sortlist_filterbtn_js_sortlist_filterbtn_filterbtn", "label": "FilterBtn()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterBtn()", "community": 162, "community_name": "Community 162", "source_file": "components/clinic/components/doctors/head/sortlist/FilterBtn.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort", "label": "SelectSort.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectSort.js", "community": 110, "community_name": "Community 110", "source_file": "components/clinic/components/doctors/head/sortlist/SelectSort.js", "file_type": "code", "degree": 2}, {"id": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort_listsort", "label": "listSort", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "listSort", "community": 110, "community_name": "Community 110", "source_file": "components/clinic/components/doctors/head/sortlist/SelectSort.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort_selectsort", "label": "SelectSort()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectSort()", "community": 110, "community_name": "Community 110", "source_file": "components/clinic/components/doctors/head/sortlist/SelectSort.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_sortlist_index_js_sortlist_index", "label": "index.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 163, "community_name": "Community 163", "source_file": "components/clinic/components/doctors/head/sortlist/index.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_head_sortlist_index_js_sortlist_index_sortlist", "label": "SortList()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SortList()", "community": 163, "community_name": "Community 163", "source_file": "components/clinic/components/doctors/head/sortlist/index.js", "file_type": "code", "degree": 1}, {"id": "components_clinic_components_doctors_index_js_doctors_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/doctors/index.js", "file_type": "code", "degree": 3}, {"id": "doctors_index_doctors", "label": "Doctors()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Doctors()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/components/doctors/index.js", "file_type": "code", "degree": 2}, {"id": "clinic_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/index.js", "file_type": "code", "degree": 7}, {"id": "clinic_index_listtab", "label": "listTab", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "listTab", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/index.js", "file_type": "code", "degree": 1}, {"id": "clinic_index_clinicpage", "label": "ClinicPage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClinicPage()", "community": 4, "community_name": "Community 4", "source_file": "components/clinic/index.js", "file_type": "code", "degree": 1}, {"id": "head_autosearch", "label": "AutoSearch.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoSearch.js", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/AutoSearch.js", "file_type": "code", "degree": 2}, {"id": "head_autosearch_autosearch", "label": "AutoSearch()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoSearch()", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/AutoSearch.js", "file_type": "code", "degree": 2}, {"id": "head_filterbutton", "label": "FilterButton.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterButton.js", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/FilterButton.js", "file_type": "code", "degree": 2}, {"id": "head_filterbutton_filterbutton", "label": "FilterButton()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterButton()", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/FilterButton.js", "file_type": "code", "degree": 2}, {"id": "head_searchbar", "label": "SearchBar.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "SearchBar.js", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/SearchBar.js", "file_type": "code", "degree": 10}, {"id": "head_searchbar_searchbar", "label": "SearchBar()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchBar()", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/SearchBar.js", "file_type": "code", "degree": 2}, {"id": "filter_autocomplete", "label": "AutoComplete.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoComplete.js", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/filter/AutoComplete.js", "file_type": "code", "degree": 2}, {"id": "filter_autocomplete_autocomplete", "label": "AutoComplete()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoComplete()", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/filter/AutoComplete.js", "file_type": "code", "degree": 2}, {"id": "filter_buttonfilter", "label": "ButtonFilter.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonFilter.js", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/filter/ButtonFilter.js", "file_type": "code", "degree": 2}, {"id": "filter_buttonfilter_buttonfilter", "label": "ButtonFilter()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonFilter()", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/filter/ButtonFilter.js", "file_type": "code", "degree": 2}, {"id": "filter_content", "label": "Content.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/filter/Content.js", "file_type": "code", "degree": 4}, {"id": "filter_content_content", "label": "Content()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/filter/Content.js", "file_type": "code", "degree": 2}, {"id": "filter_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/filter/index.js", "file_type": "code", "degree": 4}, {"id": "filter_index_modalsearchcity", "label": "ModalSearchCity()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalSearchCity()", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/head/filter/index.js", "file_type": "code", "degree": 2}, {"id": "components_clinics_head_modal_index_js_modal_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 164, "community_name": "Community 164", "source_file": "components/clinics/head/modal/index.js", "file_type": "code", "degree": 1}, {"id": "components_clinics_head_modal_index_js_modal_index_modalsearchcity", "label": "ModalSearchCity()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalSearchCity()", "community": 164, "community_name": "Community 164", "source_file": "components/clinics/head/modal/index.js", "file_type": "code", "degree": 1}, {"id": "clinics_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/index.js", "file_type": "code", "degree": 3}, {"id": "clinics_index_clinicspage", "label": "ClinicsPage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ClinicsPage()", "community": 70, "community_name": "Community 70", "source_file": "components/clinics/index.js", "file_type": "code", "degree": 4}, {"id": "list_itemclinic", "label": "ItemClinic.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemClinic.js", "community": 380, "community_name": "Community 380", "source_file": "components/clinics/list/ItemClinic.js", "file_type": "code", "degree": 2}, {"id": "list_itemclinic_itemclinic", "label": "ItemClinic()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemClinic()", "community": 380, "community_name": "Community 380", "source_file": "components/clinics/list/ItemClinic.js", "file_type": "code", "degree": 3}, {"id": "components_clinics_list_index_js_list_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 380, "community_name": "Community 380", "source_file": "components/clinics/list/index.js", "file_type": "code", "degree": 3}, {"id": "components_clinics_list_index_js_list_index_list", "label": "List()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "List()", "community": 380, "community_name": "Community 380", "source_file": "components/clinics/list/index.js", "file_type": "code", "degree": 1}, {"id": "common_inlinejalalimonth", "label": "InlineJalaliMonth.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "InlineJalaliMonth.js", "community": 90, "community_name": "Community 90", "source_file": "components/common/InlineJalaliMonth.js", "file_type": "code", "degree": 4}, {"id": "common_inlinejalalimonth_weekdays", "label": "WEEKDAYS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WEEKDAYS", "community": 90, "community_name": "Community 90", "source_file": "components/common/InlineJalaliMonth.js", "file_type": "code", "degree": 1}, {"id": "common_inlinejalalimonth_months", "label": "MONTHS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MONTHS", "community": 90, "community_name": "Community 90", "source_file": "components/common/InlineJalaliMonth.js", "file_type": "code", "degree": 1}, {"id": "common_inlinejalalimonth_builddays", "label": "buildDays()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "buildDays()", "community": 90, "community_name": "Community 90", "source_file": "components/common/InlineJalaliMonth.js", "file_type": "code", "degree": 2}, {"id": "common_inlinejalalimonth_inlinejalalimonth", "label": "InlineJalaliMonth()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "InlineJalaliMonth()", "community": 90, "community_name": "Community 90", "source_file": "components/common/InlineJalaliMonth.js", "file_type": "code", "degree": 2}, {"id": "common_jalalidatepicker", "label": "JalaliDatePicker.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "JalaliDatePicker.js", "community": 91, "community_name": "Community 91", "source_file": "components/common/JalaliDatePicker.js", "file_type": "code", "degree": 4}, {"id": "common_jalalidatepicker_weekdays", "label": "WEEKDAYS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WEEKDAYS", "community": 91, "community_name": "Community 91", "source_file": "components/common/JalaliDatePicker.js", "file_type": "code", "degree": 1}, {"id": "common_jalalidatepicker_months", "label": "MONTHS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MONTHS", "community": 91, "community_name": "Community 91", "source_file": "components/common/JalaliDatePicker.js", "file_type": "code", "degree": 1}, {"id": "common_jalalidatepicker_parsevalue", "label": "parseValue()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parseValue()", "community": 91, "community_name": "Community 91", "source_file": "components/common/JalaliDatePicker.js", "file_type": "code", "degree": 1}, {"id": "common_jalalidatepicker_jalalidatepicker", "label": "JalaliDatePicker()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "JalaliDatePicker()", "community": 91, "community_name": "Community 91", "source_file": "components/common/JalaliDatePicker.js", "file_type": "code", "degree": 1}, {"id": "common_mapview", "label": "MapView.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "MapView.js", "community": 398, "community_name": "Community 398", "source_file": "components/common/MapView.js", "file_type": "code", "degree": 2}, {"id": "common_mapview_icon", "label": "icon", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "icon", "community": 398, "community_name": "Community 398", "source_file": "components/common/MapView.js", "file_type": "code", "degree": 1}, {"id": "common_mapview_mapview", "label": "MapView()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MapView()", "community": 398, "community_name": "Community 398", "source_file": "components/common/MapView.js", "file_type": "code", "degree": 1}, {"id": "contactus_connect", "label": "Connect.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Connect.js", "community": 14, "community_name": "Community 14", "source_file": "components/contactUs/Connect.js", "file_type": "code", "degree": 6}, {"id": "contactus_connect_connect", "label": "Connect()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Connect()", "community": 14, "community_name": "Community 14", "source_file": "components/contactUs/Connect.js", "file_type": "code", "degree": 2}, {"id": "contactus_contentcontact", "label": "ContentContact.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentContact.js", "community": 14, "community_name": "Community 14", "source_file": "components/contactUs/ContentContact.js", "file_type": "code", "degree": 2}, {"id": "contactus_contentcontact_contentcontact", "label": "ContentContact()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentContact()", "community": 14, "community_name": "Community 14", "source_file": "components/contactUs/ContentContact.js", "file_type": "code", "degree": 2}, {"id": "contactus_fieldlabel", "label": "FieldLabel.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FieldLabel.js", "community": 14, "community_name": "Community 14", "source_file": "components/contactUs/FieldLabel.js", "file_type": "code", "degree": 2}, {"id": "contactus_fieldlabel_fieldlabel", "label": "FieldLabel()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FieldLabel()", "community": 14, "community_name": "Community 14", "source_file": "components/contactUs/FieldLabel.js", "file_type": "code", "degree": 2}, {"id": "call_call", "label": "Call.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Call.js", "community": 14, "community_name": "Community 14", "source_file": "components/contactUs/call/Call.js", "file_type": "code", "degree": 4}, {"id": "call_call_call", "label": "Call()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Call()", "community": 14, "community_name": "Community 14", "source_file": "components/contactUs/call/Call.js", "file_type": "code", "degree": 2}, {"id": "call_links", "label": "Links.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Links.js", "community": 14, "community_name": "Community 14", "source_file": "components/contactUs/call/Links.js", "file_type": "code", "degree": 10}, {"id": "call_links_links", "label": "Links()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Links()", "community": 14, "community_name": "Community 14", "source_file": "components/contactUs/call/Links.js", "file_type": "code", "degree": 2}, {"id": "contactus_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 14, "community_name": "Community 14", "source_file": "components/contactUs/index.js", "file_type": "code", "degree": 5}, {"id": "contactus_index_contactuspage", "label": "ContactUsPage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactUsPage()", "community": 14, "community_name": "Community 14", "source_file": "components/contactUs/index.js", "file_type": "code", "degree": 2}, {"id": "dashboard_content", "label": "Content.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/Content.js", "file_type": "code", "degree": 3}, {"id": "dashboard_content_content", "label": "Content()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/Content.js", "file_type": "code", "degree": 1}, {"id": "dashboard_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 0, "community_name": "Community 0", "source_file": "components/dashboard/index.js", "file_type": "code", "degree": 3}, {"id": "dashboard_index_dashboardpage", "label": "DashboardPage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DashboardPage()", "community": 0, "community_name": "Community 0", "source_file": "components/dashboard/index.js", "file_type": "code", "degree": 1}, {"id": "useraccount_head", "label": "Head.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head.js", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/userAccount/Head.js", "file_type": "code", "degree": 2}, {"id": "useraccount_head_head", "label": "Head()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/userAccount/Head.js", "file_type": "code", "degree": 2}, {"id": "useraccount_notfounddashboard", "label": "NotfoundDashboard.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "NotfoundDashboard.js", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/userAccount/NotfoundDashboard.js", "file_type": "code", "degree": 2}, {"id": "useraccount_notfounddashboard_notfounddashboard", "label": "NotfoundDashboard()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "NotfoundDashboard()", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/userAccount/NotfoundDashboard.js", "file_type": "code", "degree": 2}, {"id": "components_addbtn", "label": "AddBtn.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddBtn.js", "community": 147, "community_name": "Community 147", "source_file": "components/dashboard/userAccount/components/AddBtn.js", "file_type": "code", "degree": 1}, {"id": "components_addbtn_addbtn", "label": "AddBtn()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddBtn()", "community": 147, "community_name": "Community 147", "source_file": "components/dashboard/userAccount/components/AddBtn.js", "file_type": "code", "degree": 1}, {"id": "components_head", "label": "Head.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Head.js", "community": 185, "community_name": "Community 185", "source_file": "components/dashboard/userAccount/components/Head.js", "file_type": "code", "degree": 1}, {"id": "components_head_head", "label": "Head()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 185, "community_name": "Community 185", "source_file": "components/dashboard/userAccount/components/Head.js", "file_type": "code", "degree": 1}, {"id": "components_updatebtn", "label": "UpdateBtn.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateBtn.js", "community": 187, "community_name": "Community 187", "source_file": "components/dashboard/userAccount/components/UpdateBtn.js", "file_type": "code", "degree": 1}, {"id": "components_updatebtn_updatebtn", "label": "UpdateBtn()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateBtn()", "community": 187, "community_name": "Community 187", "source_file": "components/dashboard/userAccount/components/UpdateBtn.js", "file_type": "code", "degree": 1}, {"id": "modal_modaldeleteitem", "label": "ModalDeleteItem.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalDeleteItem.js", "community": 344, "community_name": "Community 344", "source_file": "components/dashboard/userAccount/components/modal/ModalDeleteItem.js", "file_type": "code", "degree": 1}, {"id": "modal_modaldeleteitem_modaldeleteitem", "label": "ModalDeleteItem()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalDeleteItem()", "community": 344, "community_name": "Community 344", "source_file": "components/dashboard/userAccount/components/modal/ModalDeleteItem.js", "file_type": "code", "degree": 1}, {"id": "modal_modaledititem", "label": "ModalEditItem.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalEditItem.js", "community": 345, "community_name": "Community 345", "source_file": "components/dashboard/userAccount/components/modal/ModalEditItem.js", "file_type": "code", "degree": 1}, {"id": "modal_modaledititem_modaledititem", "label": "ModalEditItem()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalEditItem()", "community": 345, "community_name": "Community 345", "source_file": "components/dashboard/userAccount/components/modal/ModalEditItem.js", "file_type": "code", "degree": 1}, {"id": "content_headtab", "label": "HeadTab.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "HeadTab.js", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/content/HeadTab.js", "file_type": "code", "degree": 4}, {"id": "content_headtab_headtab", "label": "HeadTab()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HeadTab()", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/content/HeadTab.js", "file_type": "code", "degree": 2}, {"id": "allergies_itemallergie", "label": "ItemAllergie.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemAllergie.js", "community": 390, "community_name": "Community 390", "source_file": "components/dashboard/userAccount/detailUser/allergies/ItemAllergie.js", "file_type": "code", "degree": 2}, {"id": "allergies_itemallergie_itemallergie", "label": "ItemAllergie()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemAllergie()", "community": 390, "community_name": "Community 390", "source_file": "components/dashboard/userAccount/detailUser/allergies/ItemAllergie.js", "file_type": "code", "degree": 2}, {"id": "allergies_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 390, "community_name": "Community 390", "source_file": "components/dashboard/userAccount/detailUser/allergies/index.js", "file_type": "code", "degree": 5}, {"id": "allergies_index_allergies", "label": "Allergies()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Allergies()", "community": 390, "community_name": "Community 390", "source_file": "components/dashboard/userAccount/detailUser/allergies/index.js", "file_type": "code", "degree": 2}, {"id": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content", "label": "Content.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 111, "community_name": "Community 111", "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/Content.js", "file_type": "code", "degree": 2}, {"id": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content_listintensity", "label": "listIntensity", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "listIntensity", "community": 111, "community_name": "Community 111", "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content_content", "label": "Content()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 111, "community_name": "Community 111", "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_detailuser_allergies_modal_index_js_modal_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 390, "community_name": "Community 390", "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/index.js", "file_type": "code", "degree": 1}, {"id": "modal_index_modaladdalergie", "label": "ModalAddAlergie()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalAddAlergie()", "community": 390, "community_name": "Community 390", "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/index.js", "file_type": "code", "degree": 2}, {"id": "disease_index", "label": "index.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/detailUser/disease/index.js", "file_type": "code", "degree": 2}, {"id": "disease_index_disease", "label": "Disease()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Disease()", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/detailUser/disease/index.js", "file_type": "code", "degree": 2}, {"id": "familyhistory_itemhistory", "label": "ItemHistory.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemHistory.js", "community": 391, "community_name": "Community 391", "source_file": "components/dashboard/userAccount/detailUser/familyHistory/ItemHistory.js", "file_type": "code", "degree": 2}, {"id": "familyhistory_itemhistory_itemhistory", "label": "ItemHistory()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemHistory()", "community": 391, "community_name": "Community 391", "source_file": "components/dashboard/userAccount/detailUser/familyHistory/ItemHistory.js", "file_type": "code", "degree": 2}, {"id": "familyhistory_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 391, "community_name": "Community 391", "source_file": "components/dashboard/userAccount/detailUser/familyHistory/index.js", "file_type": "code", "degree": 5}, {"id": "familyhistory_index_familyhistory", "label": "FamilyHistory()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FamilyHistory()", "community": 391, "community_name": "Community 391", "source_file": "components/dashboard/userAccount/detailUser/familyHistory/index.js", "file_type": "code", "degree": 2}, {"id": "components_dashboard_useraccount_detailuser_familyhistory_modal_content_js_modal_content", "label": "Content.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 165, "community_name": "Community 165", "source_file": "components/dashboard/userAccount/detailUser/familyHistory/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_detailuser_familyhistory_modal_content_js_modal_content_content", "label": "Content()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 165, "community_name": "Community 165", "source_file": "components/dashboard/userAccount/detailUser/familyHistory/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_detailuser_familyhistory_modal_index_js_modal_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 391, "community_name": "Community 391", "source_file": "components/dashboard/userAccount/detailUser/familyHistory/modal/index.js", "file_type": "code", "degree": 1}, {"id": "modal_index_modaladdhistory", "label": "ModalAddHistory()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalAddHistory()", "community": 391, "community_name": "Community 391", "source_file": "components/dashboard/userAccount/detailUser/familyHistory/modal/index.js", "file_type": "code", "degree": 2}, {"id": "detailuser_function", "label": "function.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "function.js", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/detailUser/function.js", "file_type": "code", "degree": 2}, {"id": "detailuser_function_setnewdata", "label": "setNewData()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "setNewData()", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/detailUser/function.js", "file_type": "code", "degree": 3}, {"id": "detailuser_index", "label": "index.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 21.2, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/detailUser/index.js", "file_type": "code", "degree": 18}, {"id": "detailuser_index_detailuser", "label": "DetailUser()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DetailUser()", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/detailUser/index.js", "file_type": "code", "degree": 3}, {"id": "information_buttonsenddata", "label": "ButtonSendData.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonSendData.js", "community": 80, "community_name": "Community 80", "source_file": "components/dashboard/userAccount/detailUser/information/ButtonSendData.js", "file_type": "code", "degree": 2}, {"id": "information_buttonsenddata_buttonsenddata", "label": "ButtonSendData()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonSendData()", "community": 80, "community_name": "Community 80", "source_file": "components/dashboard/userAccount/detailUser/information/ButtonSendData.js", "file_type": "code", "degree": 2}, {"id": "component_autoselector", "label": "AutoSelector.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoSelector.js", "community": 135, "community_name": "Community 135", "source_file": "components/dashboard/userAccount/detailUser/information/component/AutoSelector.js", "file_type": "code", "degree": 1}, {"id": "component_autoselector_autoselector", "label": "AutoSelector()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoSelector()", "community": 135, "community_name": "Community 135", "source_file": "components/dashboard/userAccount/detailUser/information/component/AutoSelector.js", "file_type": "code", "degree": 1}, {"id": "component_field", "label": "Field.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Field.js", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/component/Field.js", "file_type": "code", "degree": 2}, {"id": "component_field_field", "label": "Field()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Field()", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/component/Field.js", "file_type": "code", "degree": 2}, {"id": "form_content", "label": "Content.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/form/Content.js", "file_type": "code", "degree": 2}, {"id": "form_content_content", "label": "Content()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/form/Content.js", "file_type": "code", "degree": 2}, {"id": "form_datebirthday", "label": "DateBirthday.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DateBirthday.js", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/form/DateBirthday.js", "file_type": "code", "degree": 2}, {"id": "form_datebirthday_datebirthday", "label": "DateBirthday()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DateBirthday()", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/form/DateBirthday.js", "file_type": "code", "degree": 2}, {"id": "form_disease", "label": "disease.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "disease.js", "community": 80, "community_name": "Community 80", "source_file": "components/dashboard/userAccount/detailUser/information/form/disease.js", "file_type": "code", "degree": 2}, {"id": "form_disease_disease", "label": "disease", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "disease", "community": 80, "community_name": "Community 80", "source_file": "components/dashboard/userAccount/detailUser/information/form/disease.js", "file_type": "code", "degree": 2}, {"id": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", "file_type": "code", "degree": 12}, {"id": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index_form", "label": "Form()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Form()", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", "file_type": "code", "degree": 2}, {"id": "form_listselector", "label": "listSelector.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "listSelector.js", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", "file_type": "code", "degree": 5}, {"id": "form_listselector_gender", "label": "gender", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "gender", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", "file_type": "code", "degree": 2}, {"id": "form_listselector_blood_group", "label": "blood_group", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "blood_group", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", "file_type": "code", "degree": 2}, {"id": "form_listselector_marital_status", "label": "marital_status", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "marital_status", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", "file_type": "code", "degree": 2}, {"id": "form_listselector_job", "label": "job", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "job", "community": 40, "community_name": "Community 40", "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", "file_type": "code", "degree": 2}, {"id": "components_dashboard_useraccount_detailuser_information_index_js_information_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 80, "community_name": "Community 80", "source_file": "components/dashboard/userAccount/detailUser/information/index.js", "file_type": "code", "degree": 5}, {"id": "components_dashboard_useraccount_detailuser_information_index_js_information_index_information", "label": "Information()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Information()", "community": 80, "community_name": "Community 80", "source_file": "components/dashboard/userAccount/detailUser/information/index.js", "file_type": "code", "degree": 1}, {"id": "medications_itemmedication", "label": "ItemMedication.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemMedication.js", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/detailUser/medications/ItemMedication.js", "file_type": "code", "degree": 2}, {"id": "medications_itemmedication_itemmedication", "label": "ItemMedication()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemMedication()", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/detailUser/medications/ItemMedication.js", "file_type": "code", "degree": 2}, {"id": "medications_index", "label": "index.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/detailUser/medications/index.js", "file_type": "code", "degree": 5}, {"id": "medications_index_medications", "label": "Medications()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Medications()", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/detailUser/medications/index.js", "file_type": "code", "degree": 2}, {"id": "components_dashboard_useraccount_detailuser_medications_modal_content_js_modal_content", "label": "Content.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 166, "community_name": "Community 166", "source_file": "components/dashboard/userAccount/detailUser/medications/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_detailuser_medications_modal_content_js_modal_content_content", "label": "Content()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 166, "community_name": "Community 166", "source_file": "components/dashboard/userAccount/detailUser/medications/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_detailuser_medications_modal_index_js_modal_index", "label": "index.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/detailUser/medications/modal/index.js", "file_type": "code", "degree": 1}, {"id": "modal_index_modaladdmedications", "label": "ModalAddMedications()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalAddMedications()", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/detailUser/medications/modal/index.js", "file_type": "code", "degree": 2}, {"id": "relatives_itemrelatives", "label": "ItemRelatives.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemRelatives.js", "community": 393, "community_name": "Community 393", "source_file": "components/dashboard/userAccount/detailUser/relatives/ItemRelatives.js", "file_type": "code", "degree": 2}, {"id": "relatives_itemrelatives_itemrelatives", "label": "ItemRelatives()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemRelatives()", "community": 393, "community_name": "Community 393", "source_file": "components/dashboard/userAccount/detailUser/relatives/ItemRelatives.js", "file_type": "code", "degree": 2}, {"id": "relatives_index", "label": "index.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 393, "community_name": "Community 393", "source_file": "components/dashboard/userAccount/detailUser/relatives/index.js", "file_type": "code", "degree": 5}, {"id": "relatives_index_relatives", "label": "Relatives()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Relatives()", "community": 393, "community_name": "Community 393", "source_file": "components/dashboard/userAccount/detailUser/relatives/index.js", "file_type": "code", "degree": 2}, {"id": "components_dashboard_useraccount_detailuser_relatives_modal_content_js_modal_content", "label": "Content.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 167, "community_name": "Community 167", "source_file": "components/dashboard/userAccount/detailUser/relatives/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_detailuser_relatives_modal_content_js_modal_content_content", "label": "Content()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 167, "community_name": "Community 167", "source_file": "components/dashboard/userAccount/detailUser/relatives/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_detailuser_relatives_modal_index_js_modal_index", "label": "index.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 393, "community_name": "Community 393", "source_file": "components/dashboard/userAccount/detailUser/relatives/modal/index.js", "file_type": "code", "degree": 1}, {"id": "modal_index_modaladdrelatives", "label": "ModalAddRelatives()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalAddRelatives()", "community": 393, "community_name": "Community 393", "source_file": "components/dashboard/userAccount/detailUser/relatives/modal/index.js", "file_type": "code", "degree": 2}, {"id": "surgeries_itemsurgeries", "label": "ItemSurgeries.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemSurgeries.js", "community": 394, "community_name": "Community 394", "source_file": "components/dashboard/userAccount/detailUser/surgeries/ItemSurgeries.js", "file_type": "code", "degree": 2}, {"id": "surgeries_itemsurgeries_itemsurgeries", "label": "ItemSurgeries()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemSurgeries()", "community": 394, "community_name": "Community 394", "source_file": "components/dashboard/userAccount/detailUser/surgeries/ItemSurgeries.js", "file_type": "code", "degree": 2}, {"id": "surgeries_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 394, "community_name": "Community 394", "source_file": "components/dashboard/userAccount/detailUser/surgeries/index.js", "file_type": "code", "degree": 5}, {"id": "surgeries_index_surgeries", "label": "Surgeries()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Surgeries()", "community": 394, "community_name": "Community 394", "source_file": "components/dashboard/userAccount/detailUser/surgeries/index.js", "file_type": "code", "degree": 2}, {"id": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content", "label": "Content.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 112, "community_name": "Community 112", "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/Content.js", "file_type": "code", "degree": 2}, {"id": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content_listintensity", "label": "listIntensity", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "listIntensity", "community": 112, "community_name": "Community 112", "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content_content", "label": "Content()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 112, "community_name": "Community 112", "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_detailuser_surgeries_modal_index_js_modal_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 394, "community_name": "Community 394", "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/index.js", "file_type": "code", "degree": 1}, {"id": "modal_index_modaladdsurgeries", "label": "ModalAddSurgeries()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalAddSurgeries()", "community": 394, "community_name": "Community 394", "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/index.js", "file_type": "code", "degree": 2}, {"id": "useraccount_index", "label": "index.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 19.4, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/userAccount/index.js", "file_type": "code", "degree": 15}, {"id": "useraccount_index_listtab", "label": "listTab", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "listTab", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/userAccount/index.js", "file_type": "code", "degree": 1}, {"id": "useraccount_index_useraccountpage", "label": "UserAccountPage()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "UserAccountPage()", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/userAccount/index.js", "file_type": "code", "degree": 2}, {"id": "comments_comment", "label": "Comment.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Comment.js", "community": 98, "community_name": "Community 98", "source_file": "components/dashboard/userAccount/sidebars/comments/Comment.js", "file_type": "code", "degree": 2}, {"id": "comments_comment_comment", "label": "Comment()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Comment()", "community": 98, "community_name": "Community 98", "source_file": "components/dashboard/userAccount/sidebars/comments/Comment.js", "file_type": "code", "degree": 2}, {"id": "components_dashboard_useraccount_sidebars_comments_index_js_comments_index", "label": "index.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 98, "community_name": "Community 98", "source_file": "components/dashboard/userAccount/sidebars/comments/index.js", "file_type": "code", "degree": 3}, {"id": "components_dashboard_useraccount_sidebars_comments_index_js_comments_index_comments", "label": "Comments()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Comments()", "community": 98, "community_name": "Community 98", "source_file": "components/dashboard/userAccount/sidebars/comments/index.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_sidebars_comments_modal_index_js_modal_index", "label": "index.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 168, "community_name": "Community 168", "source_file": "components/dashboard/userAccount/sidebars/comments/modal/index.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_sidebars_comments_modal_index_js_modal_index_modaldeletecomment", "label": "ModalDeleteComment()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalDeleteComment()", "community": 168, "community_name": "Community 168", "source_file": "components/dashboard/userAccount/sidebars/comments/modal/index.js", "file_type": "code", "degree": 1}, {"id": "messages_message", "label": "Message.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Message.js", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/userAccount/sidebars/messages/Message.js", "file_type": "code", "degree": 2}, {"id": "messages_message_message", "label": "Message()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Message()", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/userAccount/sidebars/messages/Message.js", "file_type": "code", "degree": 2}, {"id": "messages_index", "label": "index.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/userAccount/sidebars/messages/index.js", "file_type": "code", "degree": 4}, {"id": "messages_index_messages", "label": "Messages()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Messages()", "community": 46, "community_name": "Community 46", "source_file": "components/dashboard/userAccount/sidebars/messages/index.js", "file_type": "code", "degree": 2}, {"id": "transactions_card", "label": "Card.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Card.js", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", "file_type": "code", "degree": 4}, {"id": "transactions_card_payment_status", "label": "PAYMENT_STATUS", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PAYMENT_STATUS", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", "file_type": "code", "degree": 1}, {"id": "transactions_card_type_labels", "label": "TYPE_LABELS", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TYPE_LABELS", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", "file_type": "code", "degree": 1}, {"id": "transactions_card_card", "label": "Card()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Card()", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", "file_type": "code", "degree": 4}, {"id": "transactions_head", "label": "Head.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Head.js", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/Head.js", "file_type": "code", "degree": 3}, {"id": "transactions_head_listtab", "label": "listTab", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "listTab", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/Head.js", "file_type": "code", "degree": 1}, {"id": "transactions_head_head", "label": "Head()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/Head.js", "file_type": "code", "degree": 2}, {"id": "transactions_list", "label": "List.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "List.js", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", "file_type": "code", "degree": 6}, {"id": "transactions_list_payment_status", "label": "PAYMENT_STATUS", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PAYMENT_STATUS", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", "file_type": "code", "degree": 1}, {"id": "transactions_list_type_labels", "label": "TYPE_LABELS", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TYPE_LABELS", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", "file_type": "code", "degree": 1}, {"id": "transactions_list_list", "label": "List()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "List()", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", "file_type": "code", "degree": 2}, {"id": "transactions_index", "label": "index.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/index.js", "file_type": "code", "degree": 6}, {"id": "transactions_index_transactions", "label": "Transactions()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Transactions()", "community": 368, "community_name": "Community 368", "source_file": "components/dashboard/userAccount/sidebars/transactions/index.js", "file_type": "code", "degree": 2}, {"id": "turns_card", "label": "Card.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Card.js", "community": 126, "community_name": "Community 126", "source_file": "components/dashboard/userAccount/sidebars/turns/Card.js", "file_type": "code", "degree": 3}, {"id": "turns_card_status_labels", "label": "STATUS_LABELS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "STATUS_LABELS", "community": 126, "community_name": "Community 126", "source_file": "components/dashboard/userAccount/sidebars/turns/Card.js", "file_type": "code", "degree": 1}, {"id": "turns_card_card", "label": "Card()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Card()", "community": 126, "community_name": "Community 126", "source_file": "components/dashboard/userAccount/sidebars/turns/Card.js", "file_type": "code", "degree": 4}, {"id": "turns_head", "label": "Head.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Head.js", "community": 126, "community_name": "Community 126", "source_file": "components/dashboard/userAccount/sidebars/turns/Head.js", "file_type": "code", "degree": 3}, {"id": "turns_head_listtab", "label": "listTab", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "listTab", "community": 126, "community_name": "Community 126", "source_file": "components/dashboard/userAccount/sidebars/turns/Head.js", "file_type": "code", "degree": 1}, {"id": "turns_head_head", "label": "Head()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 126, "community_name": "Community 126", "source_file": "components/dashboard/userAccount/sidebars/turns/Head.js", "file_type": "code", "degree": 2}, {"id": "turns_list", "label": "List.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "List.js", "community": 126, "community_name": "Community 126", "source_file": "components/dashboard/userAccount/sidebars/turns/List.js", "file_type": "code", "degree": 5}, {"id": "turns_list_status_labels", "label": "STATUS_LABELS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "STATUS_LABELS", "community": 126, "community_name": "Community 126", "source_file": "components/dashboard/userAccount/sidebars/turns/List.js", "file_type": "code", "degree": 1}, {"id": "turns_list_list", "label": "List()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "List()", "community": 126, "community_name": "Community 126", "source_file": "components/dashboard/userAccount/sidebars/turns/List.js", "file_type": "code", "degree": 2}, {"id": "turns_index", "label": "index.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 126, "community_name": "Community 126", "source_file": "components/dashboard/userAccount/sidebars/turns/index.js", "file_type": "code", "degree": 8}, {"id": "turns_index_turns", "label": "Turns()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Turns()", "community": 126, "community_name": "Community 126", "source_file": "components/dashboard/userAccount/sidebars/turns/index.js", "file_type": "code", "degree": 2}, {"id": "isturnsdetails_buttondata", "label": "ButtonData.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonData.js", "community": 1, "community_name": "Community 1", "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/ButtonData.js", "file_type": "code", "degree": 3}, {"id": "isturnsdetails_buttondata_buttondata", "label": "ButtonData()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonData()", "community": 1, "community_name": "Community 1", "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/ButtonData.js", "file_type": "code", "degree": 3}, {"id": "isturnsdetails_detaillg", "label": "DetailLg.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DetailLg.js", "community": 1, "community_name": "Community 1", "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailLg.js", "file_type": "code", "degree": 2}, {"id": "isturnsdetails_detaillg_detaillg", "label": "DetailLg()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DetailLg()", "community": 1, "community_name": "Community 1", "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailLg.js", "file_type": "code", "degree": 4}, {"id": "isturnsdetails_detailsm", "label": "DetailSm.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DetailSm.js", "community": 1, "community_name": "Community 1", "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailSm.js", "file_type": "code", "degree": 4}, {"id": "isturnsdetails_detailsm_detailsm", "label": "DetailSm()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DetailSm()", "community": 1, "community_name": "Community 1", "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailSm.js", "file_type": "code", "degree": 4}, {"id": "isturnsdetails_head", "label": "Head.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Head.js", "community": 1, "community_name": "Community 1", "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/Head.js", "file_type": "code", "degree": 4}, {"id": "isturnsdetails_head_head", "label": "Head()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 1, "community_name": "Community 1", "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/Head.js", "file_type": "code", "degree": 2}, {"id": "isturnsdetails_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 1, "community_name": "Community 1", "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/index.js", "file_type": "code", "degree": 9}, {"id": "isturnsdetails_index_isturnsdetails", "label": "IsTurnsDetails()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "IsTurnsDetails()", "community": 76, "community_name": "Community 76", "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/index.js", "file_type": "code", "degree": 3}, {"id": "components_dashboard_useraccount_sidebars_turns_isturnsdetails_modal_index_js_modal_index", "label": "index.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 169, "community_name": "Community 169", "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/modal/index.js", "file_type": "code", "degree": 1}, {"id": "components_dashboard_useraccount_sidebars_turns_isturnsdetails_modal_index_js_modal_index_modaldeletecomment", "label": "ModalDeleteComment()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalDeleteComment()", "community": 169, "community_name": "Community 169", "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/modal/index.js", "file_type": "code", "degree": 1}, {"id": "appointmentlist_itemappointment", "label": "ItemAppointment.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemAppointment.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/appointmentList/ItemAppointment.js", "file_type": "code", "degree": 4}, {"id": "appointmentlist_itemappointment_itemappointment", "label": "ItemAppointment()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemAppointment()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/appointmentList/ItemAppointment.js", "file_type": "code", "degree": 3}, {"id": "appointmentlist_bookingstate", "label": "bookingState.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "bookingState.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/appointmentList/bookingState.js", "file_type": "code", "degree": 5}, {"id": "appointmentlist_bookingstate_day_names", "label": "DAY_NAMES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DAY_NAMES", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/appointmentList/bookingState.js", "file_type": "code", "degree": 1}, {"id": "appointmentlist_bookingstate_formatjalali", "label": "formatJalali()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "formatJalali()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/appointmentList/bookingState.js", "file_type": "code", "degree": 2}, {"id": "appointmentlist_bookingstate_bookingstate", "label": "bookingState()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "bookingState()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/appointmentList/bookingState.js", "file_type": "code", "degree": 6}, {"id": "appointmentlist_index", "label": "index.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/appointmentList/index.js", "file_type": "code", "degree": 6}, {"id": "appointmentlist_index_appointmentlist", "label": "AppointmentList()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AppointmentList()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/appointmentList/index.js", "file_type": "code", "degree": 3}, {"id": "components_doctor_appointmentlist_modal_index_js_modal_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 170, "community_name": "Community 170", "source_file": "components/doctor/appointmentList/modal/index.js", "file_type": "code", "degree": 1}, {"id": "modal_index_modaldatepicker", "label": "ModalDatePicker()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalDatePicker()", "community": 170, "community_name": "Community 170", "source_file": "components/doctor/appointmentList/modal/index.js", "file_type": "code", "degree": 1}, {"id": "claim_index", "label": "index.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/claim/index.js", "file_type": "code", "degree": 4}, {"id": "claim_index_initialform", "label": "initialForm", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "initialForm", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/claim/index.js", "file_type": "code", "degree": 1}, {"id": "claim_index_currentusermobile", "label": "currentUserMobile()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "currentUserMobile()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/claim/index.js", "file_type": "code", "degree": 2}, {"id": "claim_index_claimprofilesection", "label": "ClaimProfileSection()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ClaimProfileSection()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/claim/index.js", "file_type": "code", "degree": 4}, {"id": "detaildoctor_link", "label": "Link.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Link.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/Link.js", "file_type": "code", "degree": 3}, {"id": "detaildoctor_link_listlink", "label": "listLink", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "listLink", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/Link.js", "file_type": "code", "degree": 1}, {"id": "detaildoctor_link_link", "label": "Link()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Link()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/Link.js", "file_type": "code", "degree": 2}, {"id": "detaildoctor_list", "label": "List.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "List.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/List.js", "file_type": "code", "degree": 5}, {"id": "detaildoctor_list_vazir_weights", "label": "VAZIR_WEIGHTS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "VAZIR_WEIGHTS", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/List.js", "file_type": "code", "degree": 1}, {"id": "detaildoctor_list_getvazirembedcss", "label": "getVazirEmbedCss()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getVazirEmbedCss()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/List.js", "file_type": "code", "degree": 1}, {"id": "detaildoctor_list_waitforimages", "label": "waitForImages()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "waitForImages()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/List.js", "file_type": "code", "degree": 1}, {"id": "detaildoctor_list_list", "label": "List()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "List()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/List.js", "file_type": "code", "degree": 2}, {"id": "detaildoctor_share", "label": "Share.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Share.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/Share.js", "file_type": "code", "degree": 10}, {"id": "detaildoctor_share_variants", "label": "VARIANTS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "VARIANTS", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/Share.js", "file_type": "code", "degree": 1}, {"id": "detaildoctor_share_share", "label": "Share()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Share()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/Share.js", "file_type": "code", "degree": 3}, {"id": "detaildoctor_title", "label": "Title.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Title.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/Title.js", "file_type": "code", "degree": 3}, {"id": "detaildoctor_title_social_icons", "label": "SOCIAL_ICONS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SOCIAL_ICONS", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/Title.js", "file_type": "code", "degree": 1}, {"id": "detaildoctor_title_title", "label": "Title()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Title()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/Title.js", "file_type": "code", "degree": 3}, {"id": "cards_aboutdcotor", "label": "AboutDcotor.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AboutDcotor.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/cards/AboutDcotor.js", "file_type": "code", "degree": 2}, {"id": "cards_aboutdcotor_aboutdcotor", "label": "AboutDcotor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AboutDcotor()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/cards/AboutDcotor.js", "file_type": "code", "degree": 2}, {"id": "chart_progressall", "label": "ProgressAll.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ProgressAll.js", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/chart/ProgressAll.js", "file_type": "code", "degree": 2}, {"id": "chart_progressall_progressall", "label": "ProgressAll()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ProgressAll()", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/chart/ProgressAll.js", "file_type": "code", "degree": 3}, {"id": "chart_index", "label": "index.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/chart/index.js", "file_type": "code", "degree": 4}, {"id": "chart_index_chart", "label": "Chart()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Chart()", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/chart/index.js", "file_type": "code", "degree": 2}, {"id": "components_doctor_detaildoctor_cards_comments_index_js_comments_index", "label": "index.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/index.js", "file_type": "code", "degree": 5}, {"id": "components_doctor_detaildoctor_cards_comments_index_js_comments_index_comments", "label": "Comments()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Comments()", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/index.js", "file_type": "code", "degree": 1}, {"id": "modal_btnnewcomment", "label": "BtnNewComment.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BtnNewComment.js", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/modal/BtnNewComment.js", "file_type": "code", "degree": 2}, {"id": "modal_btnnewcomment_btnnewcomment", "label": "BtnNewComment()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BtnNewComment()", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/modal/BtnNewComment.js", "file_type": "code", "degree": 2}, {"id": "modal_modalanswer", "label": "ModalAnswer.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalAnswer.js", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/modal/ModalAnswer.js", "file_type": "code", "degree": 6}, {"id": "modal_modalanswer_modalanswer", "label": "ModalAnswer()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalAnswer()", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/modal/ModalAnswer.js", "file_type": "code", "degree": 2}, {"id": "content_form", "label": "Form.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Form.js", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/Form.js", "file_type": "code", "degree": 2}, {"id": "content_form_form", "label": "Form()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Form()", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/Form.js", "file_type": "code", "degree": 2}, {"id": "content_rates", "label": "Rates.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Rates.js", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/Rates.js", "file_type": "code", "degree": 2}, {"id": "content_rates_rates", "label": "Rates()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Rates()", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/Rates.js", "file_type": "code", "degree": 2}, {"id": "content_index", "label": "index.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/index.js", "file_type": "code", "degree": 6}, {"id": "content_index_content", "label": "Content()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 15, "community_name": "Community 15", "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/index.js", "file_type": "code", "degree": 2}, {"id": "locations_item", "label": "Item.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Item.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/cards/locations/Item.js", "file_type": "code", "degree": 3}, {"id": "locations_item_mapview", "label": "MapView", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MapView", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/cards/locations/Item.js", "file_type": "code", "degree": 1}, {"id": "locations_item_item", "label": "Item()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Item()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/cards/locations/Item.js", "file_type": "code", "degree": 2}, {"id": "locations_index", "label": "index.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/cards/locations/index.js", "file_type": "code", "degree": 4}, {"id": "locations_index_locations", "label": "Locations()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Locations()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/cards/locations/index.js", "file_type": "code", "degree": 2}, {"id": "detaildoctor_index", "label": "index.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/index.js", "file_type": "code", "degree": 12}, {"id": "detaildoctor_index_detaildoctor", "label": "DetailDoctor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DetailDoctor()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/detailDoctor/index.js", "file_type": "code", "degree": 2}, {"id": "doctor_index", "label": "index.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/index.js", "file_type": "code", "degree": 10}, {"id": "doctor_index_specialtyhref", "label": "specialtyHref()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "specialtyHref()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/index.js", "file_type": "code", "degree": 1}, {"id": "doctor_index_doctorpage", "label": "DoctorPage()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorPage()", "community": 372, "community_name": "Community 372", "source_file": "components/doctor/index.js", "file_type": "code", "degree": 2}, {"id": "poster_posterlight", "label": "PosterLight.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PosterLight.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/poster/PosterLight.js", "file_type": "code", "degree": 6}, {"id": "poster_posterlight_posterlight", "label": "PosterLight()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PosterLight()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/poster/PosterLight.js", "file_type": "code", "degree": 3}, {"id": "poster_qrimg", "label": "QrImg.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "QrImg.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/poster/QrImg.js", "file_type": "code", "degree": 3}, {"id": "poster_qrimg_qrimg", "label": "QrImg()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "QrImg()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/poster/QrImg.js", "file_type": "code", "degree": 3}, {"id": "poster_sitelogo", "label": "SiteLogo.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SiteLogo.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/poster/SiteLogo.js", "file_type": "code", "degree": 3}, {"id": "poster_sitelogo_sitelogo", "label": "SiteLogo()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SiteLogo()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/poster/SiteLogo.js", "file_type": "code", "degree": 3}, {"id": "poster_index", "label": "index.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/poster/index.js", "file_type": "code", "degree": 8}, {"id": "poster_index_sitelogo", "label": "SiteLogo()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SiteLogo()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/poster/index.js", "file_type": "code", "degree": 1}, {"id": "poster_index_sectiontitle", "label": "SectionTitle()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SectionTitle()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/poster/index.js", "file_type": "code", "degree": 1}, {"id": "poster_index_poster", "label": "Poster()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Poster()", "community": 5, "community_name": "Community 5", "source_file": "components/doctor/poster/index.js", "file_type": "code", "degree": 3}, {"id": "head_filterlocate", "label": "FilterLocate.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterLocate.js", "community": 84, "community_name": "Community 84", "source_file": "components/doctors/head/FilterLocate.js", "file_type": "code", "degree": 4}, {"id": "head_filterlocate_filterlocate", "label": "FilterLocate()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterLocate()", "community": 84, "community_name": "Community 84", "source_file": "components/doctors/head/FilterLocate.js", "file_type": "code", "degree": 2}, {"id": "components_doctors_head_index_js_head_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 84, "community_name": "Community 84", "source_file": "components/doctors/head/index.js", "file_type": "code", "degree": 3}, {"id": "components_doctors_head_index_js_head_index_head", "label": "Head()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 84, "community_name": "Community 84", "source_file": "components/doctors/head/index.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_index_js_doctors_index", "label": "index.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 402, "community_name": "Community 402", "source_file": "components/doctors/index.js", "file_type": "code", "degree": 3}, {"id": "doctors_index_doctorspage", "label": "DoctorsPage()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorsPage()", "community": 402, "community_name": "Community 402", "source_file": "components/doctors/index.js", "file_type": "code", "degree": 4}, {"id": "listdoctors_index", "label": "index.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 402, "community_name": "Community 402", "source_file": "components/doctors/listDoctors/index.js", "file_type": "code", "degree": 2}, {"id": "listdoctors_index_listdoctors", "label": "ListDoctors()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ListDoctors()", "community": 402, "community_name": "Community 402", "source_file": "components/doctors/listDoctors/index.js", "file_type": "code", "degree": 2}, {"id": "components_doctors_modal_buttonapply_js_modal_buttonapply", "label": "ButtonApply.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonApply.js", "community": 171, "community_name": "Community 171", "source_file": "components/doctors/modal/ButtonApply.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_buttonapply_js_modal_buttonapply_buttonapply", "label": "ButtonApply()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonApply()", "community": 171, "community_name": "Community 171", "source_file": "components/doctors/modal/ButtonApply.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_content_js_modal_content", "label": "Content.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 172, "community_name": "Community 172", "source_file": "components/doctors/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_content_js_modal_content_content", "label": "Content()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 172, "community_name": "Community 172", "source_file": "components/doctors/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_deleteallbutton_js_modal_deleteallbutton", "label": "DeleteAllButton.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteAllButton.js", "community": 173, "community_name": "Community 173", "source_file": "components/doctors/modal/DeleteAllButton.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_deleteallbutton_js_modal_deleteallbutton_deleteallbutton", "label": "DeleteAllButton()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteAllButton()", "community": 173, "community_name": "Community 173", "source_file": "components/doctors/modal/DeleteAllButton.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_filtermodal_js_modal_filtermodal", "label": "FilterModal.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterModal.js", "community": 174, "community_name": "Community 174", "source_file": "components/doctors/modal/FilterModal.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_filtermodal_js_modal_filtermodal_filtermodal", "label": "FilterModal()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterModal()", "community": 174, "community_name": "Community 174", "source_file": "components/doctors/modal/FilterModal.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_form_cateselector_js_form_cateselector", "label": "CateSelector.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CateSelector.js", "community": 175, "community_name": "Community 175", "source_file": "components/doctors/modal/form/CateSelector.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_form_cateselector_js_form_cateselector_cateselector", "label": "CateSelector()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CateSelector()", "community": 175, "community_name": "Community 175", "source_file": "components/doctors/modal/form/CateSelector.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_form_radiocontent_js_form_radiocontent", "label": "RadioContent.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RadioContent.js", "community": 176, "community_name": "Community 176", "source_file": "components/doctors/modal/form/RadioContent.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_form_radiocontent_js_form_radiocontent_radiocontent", "label": "RadioContent()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RadioContent()", "community": 176, "community_name": "Community 176", "source_file": "components/doctors/modal/form/RadioContent.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_form_radios_js_form_radios", "label": "Radios.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Radios.js", "community": 177, "community_name": "Community 177", "source_file": "components/doctors/modal/form/Radios.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_form_radios_js_form_radios_radios", "label": "Radios()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Radios()", "community": 177, "community_name": "Community 177", "source_file": "components/doctors/modal/form/Radios.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_form_switchcontent_js_form_switchcontent", "label": "SwitchContent.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SwitchContent.js", "community": 178, "community_name": "Community 178", "source_file": "components/doctors/modal/form/SwitchContent.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_form_switchcontent_js_form_switchcontent_switchcontent", "label": "SwitchContent()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SwitchContent()", "community": 178, "community_name": "Community 178", "source_file": "components/doctors/modal/form/SwitchContent.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_form_index_js_form_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 71, "community_name": "Community 71", "source_file": "components/doctors/modal/form/index.js", "file_type": "code", "degree": 3}, {"id": "components_doctors_modal_form_index_js_form_index_gender", "label": "gender", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "gender", "community": 71, "community_name": "Community 71", "source_file": "components/doctors/modal/form/index.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_form_index_js_form_index_degree", "label": "degree", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "degree", "community": 71, "community_name": "Community 71", "source_file": "components/doctors/modal/form/index.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_modal_form_index_js_form_index_form", "label": "Form()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Form()", "community": 71, "community_name": "Community 71", "source_file": "components/doctors/modal/form/index.js", "file_type": "code", "degree": 2}, {"id": "components_doctors_search_autocomplete_js_search_autocomplete", "label": "AutoComplete.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoComplete.js", "community": 179, "community_name": "Community 179", "source_file": "components/doctors/search/AutoComplete.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_search_autocomplete_js_search_autocomplete_autocomplete", "label": "AutoComplete()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoComplete()", "community": 179, "community_name": "Community 179", "source_file": "components/doctors/search/AutoComplete.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_search_searchfield_js_search_searchfield", "label": "SearchField.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchField.js", "community": 181, "community_name": "Community 181", "source_file": "components/doctors/search/SearchField.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_search_searchfield_js_search_searchfield_searchfield", "label": "SearchField()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchField()", "community": 181, "community_name": "Community 181", "source_file": "components/doctors/search/SearchField.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_search_sendreq_js_search_sendreq", "label": "SendReq.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SendReq.js", "community": 182, "community_name": "Community 182", "source_file": "components/doctors/search/SendReq.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_search_sendreq_js_search_sendreq_sendreq", "label": "SendReq()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SendReq()", "community": 182, "community_name": "Community 182", "source_file": "components/doctors/search/SendReq.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_search_index_js_search_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 180, "community_name": "Community 180", "source_file": "components/doctors/search/index.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_search_index_js_search_index_searchbar", "label": "SearchBar()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchBar()", "community": 180, "community_name": "Community 180", "source_file": "components/doctors/search/index.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_sortlist_filterbtn_js_sortlist_filterbtn", "label": "FilterBtn.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterBtn.js", "community": 183, "community_name": "Community 183", "source_file": "components/doctors/sortlist/FilterBtn.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_sortlist_filterbtn_js_sortlist_filterbtn_filterbtn", "label": "FilterBtn()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterBtn()", "community": 183, "community_name": "Community 183", "source_file": "components/doctors/sortlist/FilterBtn.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", "label": "SelectSort.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectSort.js", "community": 74, "community_name": "Community 74", "source_file": "components/doctors/sortlist/SelectSort.js", "file_type": "code", "degree": 6}, {"id": "components_doctors_sortlist_selectsort_js_sortlist_selectsort_listsort", "label": "listSort", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "listSort", "community": 74, "community_name": "Community 74", "source_file": "components/doctors/sortlist/SelectSort.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_sortlist_selectsort_js_sortlist_selectsort_selectsort", "label": "SelectSort()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectSort()", "community": 74, "community_name": "Community 74", "source_file": "components/doctors/sortlist/SelectSort.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_sortlist_index_js_sortlist_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 184, "community_name": "Community 184", "source_file": "components/doctors/sortlist/index.js", "file_type": "code", "degree": 1}, {"id": "components_doctors_sortlist_index_js_sortlist_index_sortlist", "label": "SortList()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SortList()", "community": 184, "community_name": "Community 184", "source_file": "components/doctors/sortlist/index.js", "file_type": "code", "degree": 1}, {"id": "home_frequentsearches", "label": "FrequentSearches.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FrequentSearches.js", "community": 51, "community_name": "Community 51", "source_file": "components/home/FrequentSearches.js", "file_type": "code", "degree": 2}, {"id": "home_frequentsearches_frequentsearches", "label": "FrequentSearches()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FrequentSearches()", "community": 51, "community_name": "Community 51", "source_file": "components/home/FrequentSearches.js", "file_type": "code", "degree": 2}, {"id": "home_textheader", "label": "TextHeader.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "TextHeader.js", "community": 51, "community_name": "Community 51", "source_file": "components/home/TextHeader.js", "file_type": "code", "degree": 6}, {"id": "home_textheader_textheader", "label": "TextHeader()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TextHeader()", "community": 51, "community_name": "Community 51", "source_file": "components/home/TextHeader.js", "file_type": "code", "degree": 3}, {"id": "home_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 51, "community_name": "Community 51", "source_file": "components/home/index.js", "file_type": "code", "degree": 5}, {"id": "home_index_homepage", "label": "HomePage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HomePage()", "community": 51, "community_name": "Community 51", "source_file": "components/home/index.js", "file_type": "code", "degree": 1}, {"id": "search_fields", "label": "Fields.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Fields.js", "community": 377, "community_name": "Community 377", "source_file": "components/home/search/Fields.js", "file_type": "code", "degree": 6}, {"id": "search_fields_fields", "label": "Fields()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Fields()", "community": 377, "community_name": "Community 377", "source_file": "components/home/search/Fields.js", "file_type": "code", "degree": 2}, {"id": "search_filtertext", "label": "FilterText.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterText.js", "community": 351, "community_name": "Community 351", "source_file": "components/home/search/FilterText.js", "file_type": "code", "degree": 1}, {"id": "search_filtertext_filtertext", "label": "FilterText()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FilterText()", "community": 351, "community_name": "Community 351", "source_file": "components/home/search/FilterText.js", "file_type": "code", "degree": 1}, {"id": "search_redirectlink", "label": "RedirectLink.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RedirectLink.js", "community": 377, "community_name": "Community 377", "source_file": "components/home/search/RedirectLink.js", "file_type": "code", "degree": 2}, {"id": "search_redirectlink_redirectlink", "label": "RedirectLink()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RedirectLink()", "community": 377, "community_name": "Community 377", "source_file": "components/home/search/RedirectLink.js", "file_type": "code", "degree": 2}, {"id": "components_home_search_index_js_search_index", "label": "index.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 377, "community_name": "Community 377", "source_file": "components/home/search/index.js", "file_type": "code", "degree": 3}, {"id": "components_home_search_index_js_search_index_searchbar", "label": "SearchBar()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchBar()", "community": 377, "community_name": "Community 377", "source_file": "components/home/search/index.js", "file_type": "code", "degree": 2}, {"id": "modal_autocomplete", "label": "AutoComplete.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoComplete.js", "community": 343, "community_name": "Community 343", "source_file": "components/home/search/modal/AutoComplete.js", "file_type": "code", "degree": 1}, {"id": "modal_autocomplete_autocomplete", "label": "AutoComplete()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoComplete()", "community": 343, "community_name": "Community 343", "source_file": "components/home/search/modal/AutoComplete.js", "file_type": "code", "degree": 1}, {"id": "modal_buttonfilter", "label": "ButtonFilter.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonFilter.js", "community": 377, "community_name": "Community 377", "source_file": "components/home/search/modal/ButtonFilter.js", "file_type": "code", "degree": 2}, {"id": "modal_buttonfilter_buttonfilter", "label": "ButtonFilter()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonFilter()", "community": 377, "community_name": "Community 377", "source_file": "components/home/search/modal/ButtonFilter.js", "file_type": "code", "degree": 2}, {"id": "components_home_search_modal_content_js_modal_content", "label": "Content.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content.js", "community": 186, "community_name": "Community 186", "source_file": "components/home/search/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_home_search_modal_content_js_modal_content_content", "label": "Content()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 186, "community_name": "Community 186", "source_file": "components/home/search/modal/Content.js", "file_type": "code", "degree": 1}, {"id": "components_home_search_modal_index_js_modal_index", "label": "index.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 113, "community_name": "Community 113", "source_file": "components/home/search/modal/index.js", "file_type": "code", "degree": 1}, {"id": "components_home_search_modal_index_js_modal_index_modalsearchcity", "label": "ModalSearchCity()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalSearchCity()", "community": 113, "community_name": "Community 113", "source_file": "components/home/search/modal/index.js", "file_type": "code", "degree": 2}, {"id": "icons_atext", "label": "AText.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AText.js", "community": 51, "community_name": "Community 51", "source_file": "components/icons/AText.js", "file_type": "code", "degree": 2}, {"id": "icons_atext_atext", "label": "AText()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AText()", "community": 51, "community_name": "Community 51", "source_file": "components/icons/AText.js", "file_type": "code", "degree": 2}, {"id": "icons_addcirclebluea", "label": "AddCircleBlueA.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddCircleBlueA.js", "community": 199, "community_name": "Community 199", "source_file": "components/icons/AddCircleBlueA.js", "file_type": "code", "degree": 1}, {"id": "icons_addcirclebluea_addcirclebluea", "label": "AddCircleBlueA()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddCircleBlueA()", "community": 199, "community_name": "Community 199", "source_file": "components/icons/AddCircleBlueA.js", "file_type": "code", "degree": 1}, {"id": "icons_addlocationp", "label": "AddLocationP.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddLocationP.js", "community": 200, "community_name": "Community 200", "source_file": "components/icons/AddLocationP.js", "file_type": "code", "degree": 1}, {"id": "icons_addlocationp_addlocationp", "label": "AddLocationP()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddLocationP()", "community": 200, "community_name": "Community 200", "source_file": "components/icons/AddLocationP.js", "file_type": "code", "degree": 1}, {"id": "icons_addtimep", "label": "AddTimeP.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddTimeP.js", "community": 202, "community_name": "Community 202", "source_file": "components/icons/AddTimeP.js", "file_type": "code", "degree": 1}, {"id": "icons_addtimep_addtimep", "label": "AddTimeP()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddTimeP()", "community": 202, "community_name": "Community 202", "source_file": "components/icons/AddTimeP.js", "file_type": "code", "degree": 1}, {"id": "icons_addressposter", "label": "AddressPoster.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddressPoster.js", "community": 201, "community_name": "Community 201", "source_file": "components/icons/AddressPoster.js", "file_type": "code", "degree": 1}, {"id": "icons_addressposter_addressposter", "label": "AddressPoster()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddressPoster()", "community": 201, "community_name": "Community 201", "source_file": "components/icons/AddressPoster.js", "file_type": "code", "degree": 1}, {"id": "icons_aparat", "label": "Aparat.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Aparat.js", "community": 203, "community_name": "Community 203", "source_file": "components/icons/Aparat.js", "file_type": "code", "degree": 1}, {"id": "icons_aparat_aparat", "label": "Aparat()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Aparat()", "community": 203, "community_name": "Community 203", "source_file": "components/icons/Aparat.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowbottomd", "label": "ArrowBottomD.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowBottomD.js", "community": 74, "community_name": "Community 74", "source_file": "components/icons/ArrowBottomD.js", "file_type": "code", "degree": 2}, {"id": "icons_arrowbottomd_arrowbottomd", "label": "ArrowBottomD()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowBottomD()", "community": 74, "community_name": "Community 74", "source_file": "components/icons/ArrowBottomD.js", "file_type": "code", "degree": 2}, {"id": "icons_arrowbottomgrayd", "label": "ArrowBottomGrayD.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowBottomGrayD.js", "community": 204, "community_name": "Community 204", "source_file": "components/icons/ArrowBottomGrayD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowbottomgrayd_arrowbottomgrayd", "label": "ArrowBottomGrayD()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowBottomGrayD()", "community": 204, "community_name": "Community 204", "source_file": "components/icons/ArrowBottomGrayD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowbottomh", "label": "ArrowBottomH.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowBottomH.js", "community": 205, "community_name": "Community 205", "source_file": "components/icons/ArrowBottomH.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowbottomh_arrowbottomh", "label": "ArrowBottomH()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowBottomH()", "community": 205, "community_name": "Community 205", "source_file": "components/icons/ArrowBottomH.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowbottomhd", "label": "ArrowBottomHD.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowBottomHD.js", "community": 206, "community_name": "Community 206", "source_file": "components/icons/ArrowBottomHD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowbottomhd_arrowbottomhd", "label": "ArrowBottomHD()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowBottomHD()", "community": 206, "community_name": "Community 206", "source_file": "components/icons/ArrowBottomHD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowbottomp", "label": "ArrowBottomP.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowBottomP.js", "community": 207, "community_name": "Community 207", "source_file": "components/icons/ArrowBottomP.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowbottomp_arrowbottomp", "label": "ArrowBottomP()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowBottomP()", "community": 207, "community_name": "Community 207", "source_file": "components/icons/ArrowBottomP.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowdownf", "label": "ArrowDownF.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowDownF.js", "community": 208, "community_name": "Community 208", "source_file": "components/icons/ArrowDownF.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowdownf_arrowdownf", "label": "ArrowDownF()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowDownF()", "community": 208, "community_name": "Community 208", "source_file": "components/icons/ArrowDownF.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowdownp", "label": "ArrowDownP.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowDownP.js", "community": 209, "community_name": "Community 209", "source_file": "components/icons/ArrowDownP.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowdownp_arrowdownp", "label": "ArrowDownP()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowDownP()", "community": 209, "community_name": "Community 209", "source_file": "components/icons/ArrowDownP.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftb", "label": "ArrowLeftB.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftB.js", "community": 210, "community_name": "Community 210", "source_file": "components/icons/ArrowLeftB.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftb_arrowleftb", "label": "ArrowLeftB()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftB()", "community": 210, "community_name": "Community 210", "source_file": "components/icons/ArrowLeftB.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftbluea", "label": "ArrowLeftBlueA.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftBlueA.js", "community": 211, "community_name": "Community 211", "source_file": "components/icons/ArrowLeftBlueA.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftbluea_arrowleftbluea", "label": "ArrowLeftBlueA()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftBlueA()", "community": 211, "community_name": "Community 211", "source_file": "components/icons/ArrowLeftBlueA.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftblued", "label": "ArrowLeftBlueD.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftBlueD.js", "community": 212, "community_name": "Community 212", "source_file": "components/icons/ArrowLeftBlueD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftblued_arrowleftblued", "label": "ArrowLeftBlueD()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftBlueD()", "community": 212, "community_name": "Community 212", "source_file": "components/icons/ArrowLeftBlueD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftbluep", "label": "ArrowLeftBlueP.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftBlueP.js", "community": 213, "community_name": "Community 213", "source_file": "components/icons/ArrowLeftBlueP.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftbluep_arrowleftbluep", "label": "ArrowLeftBlueP()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftBlueP()", "community": 213, "community_name": "Community 213", "source_file": "components/icons/ArrowLeftBlueP.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftbuttonp", "label": "ArrowLeftButtonP.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftButtonP.js", "community": 214, "community_name": "Community 214", "source_file": "components/icons/ArrowLeftButtonP.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftbuttonp_arrowleftbuttonp", "label": "ArrowLeftButtonP()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftButtonP()", "community": 214, "community_name": "Community 214", "source_file": "components/icons/ArrowLeftButtonP.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftc", "label": "ArrowLeftC.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftC.js", "community": 14, "community_name": "Community 14", "source_file": "components/icons/ArrowLeftC.js", "file_type": "code", "degree": 2}, {"id": "icons_arrowleftc_arrowleftc", "label": "ArrowLeftC()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftC()", "community": 14, "community_name": "Community 14", "source_file": "components/icons/ArrowLeftC.js", "file_type": "code", "degree": 2}, {"id": "icons_arrowleftcardd", "label": "ArrowLeftCardD.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftCardD.js", "community": 215, "community_name": "Community 215", "source_file": "components/icons/ArrowLeftCardD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftcardd_arrowleftcardd", "label": "ArrowLeftCardD()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftCardD()", "community": 215, "community_name": "Community 215", "source_file": "components/icons/ArrowLeftCardD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftd", "label": "ArrowLeftD.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftD.js", "community": 216, "community_name": "Community 216", "source_file": "components/icons/ArrowLeftD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftd_arrowleftd", "label": "ArrowLeftD()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftD()", "community": 216, "community_name": "Community 216", "source_file": "components/icons/ArrowLeftD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftlist", "label": "ArrowLeftList.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftList.js", "community": 217, "community_name": "Community 217", "source_file": "components/icons/ArrowLeftList.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftlist_arrowleftlist", "label": "ArrowLeftList()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftList()", "community": 217, "community_name": "Community 217", "source_file": "components/icons/ArrowLeftList.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftm", "label": "ArrowLeftM.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftM.js", "community": 218, "community_name": "Community 218", "source_file": "components/icons/ArrowLeftM.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftm_arrowleftm", "label": "ArrowLeftM()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftM()", "community": 218, "community_name": "Community 218", "source_file": "components/icons/ArrowLeftM.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftorangea", "label": "ArrowLeftOrangeA.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftOrangeA.js", "community": 219, "community_name": "Community 219", "source_file": "components/icons/ArrowLeftOrangeA.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftorangea_arrowleftorangea", "label": "ArrowLeftOrangeA()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftOrangeA()", "community": 219, "community_name": "Community 219", "source_file": "components/icons/ArrowLeftOrangeA.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftoranges", "label": "ArrowLeftOrangeS.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftOrangeS.js", "community": 220, "community_name": "Community 220", "source_file": "components/icons/ArrowLeftOrangeS.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftoranges_arrowleftoranges", "label": "ArrowLeftOrangeS()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftOrangeS()", "community": 220, "community_name": "Community 220", "source_file": "components/icons/ArrowLeftOrangeS.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftp", "label": "ArrowLeftP.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftP.js", "community": 221, "community_name": "Community 221", "source_file": "components/icons/ArrowLeftP.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftp_arrowleftp", "label": "ArrowLeftP()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftP()", "community": 221, "community_name": "Community 221", "source_file": "components/icons/ArrowLeftP.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftpa", "label": "ArrowLeftPA.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftPA.js", "community": 222, "community_name": "Community 222", "source_file": "components/icons/ArrowLeftPA.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftpa_arrowleftpa", "label": "ArrowLeftPA()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftPA()", "community": 222, "community_name": "Community 222", "source_file": "components/icons/ArrowLeftPA.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftph", "label": "ArrowLeftPH.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftPH.js", "community": 223, "community_name": "Community 223", "source_file": "components/icons/ArrowLeftPH.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftph_arrowleftph", "label": "ArrowLeftPH()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftPH()", "community": 223, "community_name": "Community 223", "source_file": "components/icons/ArrowLeftPH.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftpu", "label": "ArrowLeftPU.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftPU.js", "community": 224, "community_name": "Community 224", "source_file": "components/icons/ArrowLeftPU.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftpu_arrowleftpu", "label": "ArrowLeftPU()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftPU()", "community": 224, "community_name": "Community 224", "source_file": "components/icons/ArrowLeftPU.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftsidebar", "label": "ArrowLeftSideBar.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftSideBar.js", "community": 225, "community_name": "Community 225", "source_file": "components/icons/ArrowLeftSideBar.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftsidebar_arrowleftsidebar", "label": "ArrowLeftSideBar()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftSideBar()", "community": 225, "community_name": "Community 225", "source_file": "components/icons/ArrowLeftSideBar.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftwd", "label": "ArrowLeftWD.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftWD.js", "community": 226, "community_name": "Community 226", "source_file": "components/icons/ArrowLeftWD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftwd_arrowleftwd", "label": "ArrowLeftWD()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftWD()", "community": 226, "community_name": "Community 226", "source_file": "components/icons/ArrowLeftWD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftwhited", "label": "ArrowLeftWhiteD.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftWhiteD.js", "community": 227, "community_name": "Community 227", "source_file": "components/icons/ArrowLeftWhiteD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowleftwhited_arrowleftwhited", "label": "ArrowLeftWhiteD()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowLeftWhiteD()", "community": 227, "community_name": "Community 227", "source_file": "components/icons/ArrowLeftWhiteD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowrightd", "label": "ArrowRightD.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowRightD.js", "community": 228, "community_name": "Community 228", "source_file": "components/icons/ArrowRightD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowrightd_arrowrightd", "label": "ArrowRightD()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowRightD()", "community": 228, "community_name": "Community 228", "source_file": "components/icons/ArrowRightD.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowrightp", "label": "ArrowRightP.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowRightP.js", "community": 229, "community_name": "Community 229", "source_file": "components/icons/ArrowRightP.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowrightp_arrowrightp", "label": "ArrowRightP()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowRightP()", "community": 229, "community_name": "Community 229", "source_file": "components/icons/ArrowRightP.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowrightph", "label": "ArrowRightPH.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowRightPH.js", "community": 230, "community_name": "Community 230", "source_file": "components/icons/ArrowRightPH.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowrightph_arrowrightph", "label": "ArrowRightPH()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowRightPH()", "community": 230, "community_name": "Community 230", "source_file": "components/icons/ArrowRightPH.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowrights", "label": "ArrowRightS.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowRightS.js", "community": 52, "community_name": "Community 52", "source_file": "components/icons/ArrowRightS.js", "file_type": "code", "degree": 2}, {"id": "icons_arrowrights_arrowrights", "label": "ArrowRightS()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowRightS()", "community": 52, "community_name": "Community 52", "source_file": "components/icons/ArrowRightS.js", "file_type": "code", "degree": 2}, {"id": "icons_arrowupcomment", "label": "ArrowUpComment.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowUpComment.js", "community": 231, "community_name": "Community 231", "source_file": "components/icons/ArrowUpComment.js", "file_type": "code", "degree": 1}, {"id": "icons_arrowupcomment_arrowupcomment", "label": "ArrowUpComment()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ArrowUpComment()", "community": 231, "community_name": "Community 231", "source_file": "components/icons/ArrowUpComment.js", "file_type": "code", "degree": 1}, {"id": "icons_btext", "label": "BText.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BText.js", "community": 51, "community_name": "Community 51", "source_file": "components/icons/BText.js", "file_type": "code", "degree": 2}, {"id": "icons_btext_btext", "label": "BText()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BText()", "community": 51, "community_name": "Community 51", "source_file": "components/icons/BText.js", "file_type": "code", "degree": 2}, {"id": "icons_bolddislikecomment", "label": "BoldDisLikeComment.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BoldDisLikeComment.js", "community": 232, "community_name": "Community 232", "source_file": "components/icons/BoldDisLikeComment.js", "file_type": "code", "degree": 1}, {"id": "icons_bolddislikecomment_bolddislikecomment", "label": "BoldDisLikeComment()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BoldDisLikeComment()", "community": 232, "community_name": "Community 232", "source_file": "components/icons/BoldDisLikeComment.js", "file_type": "code", "degree": 1}, {"id": "icons_boldlikecomment", "label": "BoldLikeComment.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BoldLikeComment.js", "community": 233, "community_name": "Community 233", "source_file": "components/icons/BoldLikeComment.js", "file_type": "code", "degree": 1}, {"id": "icons_boldlikecomment_boldlikecomment", "label": "BoldLikeComment()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BoldLikeComment()", "community": 233, "community_name": "Community 233", "source_file": "components/icons/BoldLikeComment.js", "file_type": "code", "degree": 1}, {"id": "icons_bottomselect", "label": "BottomSelect.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BottomSelect.js", "community": 234, "community_name": "Community 234", "source_file": "components/icons/BottomSelect.js", "file_type": "code", "degree": 1}, {"id": "icons_bottomselect_bottomselect", "label": "BottomSelect()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BottomSelect()", "community": 234, "community_name": "Community 234", "source_file": "components/icons/BottomSelect.js", "file_type": "code", "degree": 1}, {"id": "icons_calendara", "label": "CalendarA.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarA.js", "community": 235, "community_name": "Community 235", "source_file": "components/icons/CalendarA.js", "file_type": "code", "degree": 1}, {"id": "icons_calendara_calendara", "label": "CalendarA()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarA()", "community": 235, "community_name": "Community 235", "source_file": "components/icons/CalendarA.js", "file_type": "code", "degree": 1}, {"id": "icons_calendaradd", "label": "CalendarAdD.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarAdD.js", "community": 236, "community_name": "Community 236", "source_file": "components/icons/CalendarAdD.js", "file_type": "code", "degree": 1}, {"id": "icons_calendaradd_calendaradd", "label": "CalendarAdD()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarAdD()", "community": 236, "community_name": "Community 236", "source_file": "components/icons/CalendarAdD.js", "file_type": "code", "degree": 1}, {"id": "icons_calendaraddf", "label": "CalendarAddF.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarAddF.js", "community": 0, "community_name": "Community 0", "source_file": "components/icons/CalendarAddF.js", "file_type": "code", "degree": 2}, {"id": "icons_calendaraddf_calendaraddf", "label": "CalendarAddF()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarAddF()", "community": 0, "community_name": "Community 0", "source_file": "components/icons/CalendarAddF.js", "file_type": "code", "degree": 2}, {"id": "icons_calendard", "label": "CalendarD.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarD.js", "community": 237, "community_name": "Community 237", "source_file": "components/icons/CalendarD.js", "file_type": "code", "degree": 1}, {"id": "icons_calendard_calendard", "label": "CalendarD()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarD()", "community": 237, "community_name": "Community 237", "source_file": "components/icons/CalendarD.js", "file_type": "code", "degree": 1}, {"id": "icons_calendaredit", "label": "CalendarEdit.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarEdit.js", "community": 238, "community_name": "Community 238", "source_file": "components/icons/CalendarEdit.js", "file_type": "code", "degree": 1}, {"id": "icons_calendaredit_calendaredit", "label": "CalendarEdit()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarEdit()", "community": 238, "community_name": "Community 238", "source_file": "components/icons/CalendarEdit.js", "file_type": "code", "degree": 1}, {"id": "icons_calendarp", "label": "CalendarP.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarP.js", "community": 239, "community_name": "Community 239", "source_file": "components/icons/CalendarP.js", "file_type": "code", "degree": 1}, {"id": "icons_calendarp_calendarp", "label": "CalendarP()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarP()", "community": 239, "community_name": "Community 239", "source_file": "components/icons/CalendarP.js", "file_type": "code", "degree": 1}, {"id": "icons_calendarpd", "label": "CalendarPD.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarPD.js", "community": 240, "community_name": "Community 240", "source_file": "components/icons/CalendarPD.js", "file_type": "code", "degree": 1}, {"id": "icons_calendarpd_calendarpd", "label": "CalendarPD()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarPD()", "community": 240, "community_name": "Community 240", "source_file": "components/icons/CalendarPD.js", "file_type": "code", "degree": 1}, {"id": "icons_calendartick", "label": "CalendarTick.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarTick.js", "community": 241, "community_name": "Community 241", "source_file": "components/icons/CalendarTick.js", "file_type": "code", "degree": 1}, {"id": "icons_calendartick_calendartick", "label": "CalendarTick()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarTick()", "community": 241, "community_name": "Community 241", "source_file": "components/icons/CalendarTick.js", "file_type": "code", "degree": 1}, {"id": "icons_calendartickgreenp", "label": "CalendarTickGreenP.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarTickGreenP.js", "community": 242, "community_name": "Community 242", "source_file": "components/icons/CalendarTickGreenP.js", "file_type": "code", "degree": 1}, {"id": "icons_calendartickgreenp_calendartickgreenp", "label": "CalendarTickGreenP()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalendarTickGreenP()", "community": 242, "community_name": "Community 242", "source_file": "components/icons/CalendarTickGreenP.js", "file_type": "code", "degree": 1}, {"id": "icons_callc", "label": "CallC.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CallC.js", "community": 14, "community_name": "Community 14", "source_file": "components/icons/CallC.js", "file_type": "code", "degree": 2}, {"id": "icons_callc_callc", "label": "CallC()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CallC()", "community": 14, "community_name": "Community 14", "source_file": "components/icons/CallC.js", "file_type": "code", "degree": 2}, {"id": "icons_calld", "label": "CallD.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CallD.js", "community": 243, "community_name": "Community 243", "source_file": "components/icons/CallD.js", "file_type": "code", "degree": 1}, {"id": "icons_calld_calld", "label": "CallD()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CallD()", "community": 243, "community_name": "Community 243", "source_file": "components/icons/CallD.js", "file_type": "code", "degree": 1}, {"id": "icons_calndard", "label": "CalndarD.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalndarD.js", "community": 244, "community_name": "Community 244", "source_file": "components/icons/CalndarD.js", "file_type": "code", "degree": 1}, {"id": "icons_calndard_calndard", "label": "CalndarD()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CalndarD()", "community": 244, "community_name": "Community 244", "source_file": "components/icons/CalndarD.js", "file_type": "code", "degree": 1}, {"id": "icons_cardd", "label": "CardD.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CardD.js", "community": 245, "community_name": "Community 245", "source_file": "components/icons/CardD.js", "file_type": "code", "degree": 1}, {"id": "icons_cardd_cardd", "label": "CardD()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CardD()", "community": 245, "community_name": "Community 245", "source_file": "components/icons/CardD.js", "file_type": "code", "degree": 1}, {"id": "icons_cardda", "label": "CardDA.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CardDA.js", "community": 246, "community_name": "Community 246", "source_file": "components/icons/CardDA.js", "file_type": "code", "degree": 1}, {"id": "icons_cardda_cardda", "label": "CardDA()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CardDA()", "community": 246, "community_name": "Community 246", "source_file": "components/icons/CardDA.js", "file_type": "code", "degree": 1}, {"id": "icons_cardorangep", "label": "CardOrangeP.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CardOrangeP.js", "community": 247, "community_name": "Community 247", "source_file": "components/icons/CardOrangeP.js", "file_type": "code", "degree": 1}, {"id": "icons_cardorangep_cardorangep", "label": "CardOrangeP()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CardOrangeP()", "community": 247, "community_name": "Community 247", "source_file": "components/icons/CardOrangeP.js", "file_type": "code", "degree": 1}, {"id": "icons_cardtickd", "label": "CardTickD.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CardTickD.js", "community": 248, "community_name": "Community 248", "source_file": "components/icons/CardTickD.js", "file_type": "code", "degree": 1}, {"id": "icons_cardtickd_cardtickd", "label": "CardTickD()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CardTickD()", "community": 248, "community_name": "Community 248", "source_file": "components/icons/CardTickD.js", "file_type": "code", "degree": 1}, {"id": "icons_categoryp", "label": "CategoryP.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoryP.js", "community": 249, "community_name": "Community 249", "source_file": "components/icons/CategoryP.js", "file_type": "code", "degree": 1}, {"id": "icons_categoryp_categoryp", "label": "CategoryP()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoryP()", "community": 249, "community_name": "Community 249", "source_file": "components/icons/CategoryP.js", "file_type": "code", "degree": 1}, {"id": "icons_circleorangesm", "label": "CircleOrangeSm.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CircleOrangeSm.js", "community": 250, "community_name": "Community 250", "source_file": "components/icons/CircleOrangeSm.js", "file_type": "code", "degree": 1}, {"id": "icons_circleorangesm_circleorangesm", "label": "CircleOrangeSm()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CircleOrangeSm()", "community": 250, "community_name": "Community 250", "source_file": "components/icons/CircleOrangeSm.js", "file_type": "code", "degree": 1}, {"id": "icons_clipboard", "label": "ClipBoard.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClipBoard.js", "community": 251, "community_name": "Community 251", "source_file": "components/icons/ClipBoard.js", "file_type": "code", "degree": 1}, {"id": "icons_clipboard_clipboard", "label": "ClipBoard()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClipBoard()", "community": 251, "community_name": "Community 251", "source_file": "components/icons/ClipBoard.js", "file_type": "code", "degree": 1}, {"id": "icons_clocka", "label": "ClockA.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClockA.js", "community": 252, "community_name": "Community 252", "source_file": "components/icons/ClockA.js", "file_type": "code", "degree": 1}, {"id": "icons_clocka_clocka", "label": "ClockA()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClockA()", "community": 252, "community_name": "Community 252", "source_file": "components/icons/ClockA.js", "file_type": "code", "degree": 1}, {"id": "icons_clockclinic", "label": "ClockClinic.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClockClinic.js", "community": 253, "community_name": "Community 253", "source_file": "components/icons/ClockClinic.js", "file_type": "code", "degree": 1}, {"id": "icons_clockclinic_clockclinic", "label": "ClockClinic()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClockClinic()", "community": 253, "community_name": "Community 253", "source_file": "components/icons/ClockClinic.js", "file_type": "code", "degree": 1}, {"id": "icons_clockd", "label": "ClockD.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClockD.js", "community": 254, "community_name": "Community 254", "source_file": "components/icons/ClockD.js", "file_type": "code", "degree": 1}, {"id": "icons_clockd_clockd", "label": "ClockD()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClockD()", "community": 254, "community_name": "Community 254", "source_file": "components/icons/ClockD.js", "file_type": "code", "degree": 1}, {"id": "icons_clockfield", "label": "ClockField.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClockField.js", "community": 255, "community_name": "Community 255", "source_file": "components/icons/ClockField.js", "file_type": "code", "degree": 1}, {"id": "icons_clockfield_clockfield", "label": "ClockField()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClockField()", "community": 255, "community_name": "Community 255", "source_file": "components/icons/ClockField.js", "file_type": "code", "degree": 1}, {"id": "icons_clockp", "label": "ClockP.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClockP.js", "community": 256, "community_name": "Community 256", "source_file": "components/icons/ClockP.js", "file_type": "code", "degree": 1}, {"id": "icons_clockp_clockp", "label": "ClockP()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClockP()", "community": 256, "community_name": "Community 256", "source_file": "components/icons/ClockP.js", "file_type": "code", "degree": 1}, {"id": "icons_clockturn", "label": "ClockTurn.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClockTurn.js", "community": 257, "community_name": "Community 257", "source_file": "components/icons/ClockTurn.js", "file_type": "code", "degree": 1}, {"id": "icons_clockturn_clockturn", "label": "ClockTurn()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ClockTurn()", "community": 257, "community_name": "Community 257", "source_file": "components/icons/ClockTurn.js", "file_type": "code", "degree": 1}, {"id": "icons_closemodald", "label": "CloseModalD.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CloseModalD.js", "community": 258, "community_name": "Community 258", "source_file": "components/icons/CloseModalD.js", "file_type": "code", "degree": 1}, {"id": "icons_closemodald_closemodald", "label": "CloseModalD()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CloseModalD()", "community": 258, "community_name": "Community 258", "source_file": "components/icons/CloseModalD.js", "file_type": "code", "degree": 1}, {"id": "icons_closeorangemodal", "label": "CloseOrangeModal.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CloseOrangeModal.js", "community": 259, "community_name": "Community 259", "source_file": "components/icons/CloseOrangeModal.js", "file_type": "code", "degree": 1}, {"id": "icons_closeorangemodal_closeorangemodal", "label": "CloseOrangeModal()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CloseOrangeModal()", "community": 259, "community_name": "Community 259", "source_file": "components/icons/CloseOrangeModal.js", "file_type": "code", "degree": 1}, {"id": "icons_copyblued", "label": "CopyBlueD.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CopyBlueD.js", "community": 260, "community_name": "Community 260", "source_file": "components/icons/CopyBlueD.js", "file_type": "code", "degree": 1}, {"id": "icons_copyblued_copyblued", "label": "CopyBlueD()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CopyBlueD()", "community": 260, "community_name": "Community 260", "source_file": "components/icons/CopyBlueD.js", "file_type": "code", "degree": 1}, {"id": "icons_dislikecomment", "label": "DisLikeComment.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DisLikeComment.js", "community": 261, "community_name": "Community 261", "source_file": "components/icons/DisLikeComment.js", "file_type": "code", "degree": 1}, {"id": "icons_dislikecomment_dislikecomment", "label": "DisLikeComment()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DisLikeComment()", "community": 261, "community_name": "Community 261", "source_file": "components/icons/DisLikeComment.js", "file_type": "code", "degree": 1}, {"id": "icons_doublearrowleftp", "label": "DoubleArrowLeftP.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DoubleArrowLeftP.js", "community": 262, "community_name": "Community 262", "source_file": "components/icons/DoubleArrowLeftP.js", "file_type": "code", "degree": 1}, {"id": "icons_doublearrowleftp_doublearrowleftp", "label": "DoubleArrowLeftP()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DoubleArrowLeftP()", "community": 262, "community_name": "Community 262", "source_file": "components/icons/DoubleArrowLeftP.js", "file_type": "code", "degree": 1}, {"id": "icons_downloadblue", "label": "DownloadBlue.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DownloadBlue.js", "community": 263, "community_name": "Community 263", "source_file": "components/icons/DownloadBlue.js", "file_type": "code", "degree": 1}, {"id": "icons_downloadblue_downloadblue", "label": "DownloadBlue()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DownloadBlue()", "community": 263, "community_name": "Community 263", "source_file": "components/icons/DownloadBlue.js", "file_type": "code", "degree": 1}, {"id": "icons_downloadd", "label": "DownloadD.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DownloadD.js", "community": 264, "community_name": "Community 264", "source_file": "components/icons/DownloadD.js", "file_type": "code", "degree": 1}, {"id": "icons_downloadd_downloadd", "label": "DownloadD()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DownloadD()", "community": 264, "community_name": "Community 264", "source_file": "components/icons/DownloadD.js", "file_type": "code", "degree": 1}, {"id": "icons_editb", "label": "EditB.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EditB.js", "community": 265, "community_name": "Community 265", "source_file": "components/icons/EditB.js", "file_type": "code", "degree": 1}, {"id": "icons_editb_editb", "label": "EditB()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EditB()", "community": 265, "community_name": "Community 265", "source_file": "components/icons/EditB.js", "file_type": "code", "degree": 1}, {"id": "icons_editgraya", "label": "EditGrayA.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EditGrayA.js", "community": 266, "community_name": "Community 266", "source_file": "components/icons/EditGrayA.js", "file_type": "code", "degree": 1}, {"id": "icons_editgraya_editgraya", "label": "EditGrayA()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EditGrayA()", "community": 266, "community_name": "Community 266", "source_file": "components/icons/EditGrayA.js", "file_type": "code", "degree": 1}, {"id": "icons_editlogin", "label": "EditLogin.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "EditLogin.js", "community": 52, "community_name": "Community 52", "source_file": "components/icons/EditLogin.js", "file_type": "code", "degree": 2}, {"id": "icons_editlogin_editlogin", "label": "EditLogin()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "EditLogin()", "community": 52, "community_name": "Community 52", "source_file": "components/icons/EditLogin.js", "file_type": "code", "degree": 2}, {"id": "icons_editorangea", "label": "EditOrangeA.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EditOrangeA.js", "community": 267, "community_name": "Community 267", "source_file": "components/icons/EditOrangeA.js", "file_type": "code", "degree": 1}, {"id": "icons_editorangea_editorangea", "label": "EditOrangeA()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EditOrangeA()", "community": 267, "community_name": "Community 267", "source_file": "components/icons/EditOrangeA.js", "file_type": "code", "degree": 1}, {"id": "icons_editorangead", "label": "EditOrangeAD.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EditOrangeAD.js", "community": 268, "community_name": "Community 268", "source_file": "components/icons/EditOrangeAD.js", "file_type": "code", "degree": 1}, {"id": "icons_editorangead_editorangead", "label": "EditOrangeAD()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EditOrangeAD()", "community": 268, "community_name": "Community 268", "source_file": "components/icons/EditOrangeAD.js", "file_type": "code", "degree": 1}, {"id": "icons_editturnsd", "label": "EditTurnsD.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EditTurnsD.js", "community": 269, "community_name": "Community 269", "source_file": "components/icons/EditTurnsD.js", "file_type": "code", "degree": 1}, {"id": "icons_editturnsd_editturnsd", "label": "EditTurnsD()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "EditTurnsD()", "community": 269, "community_name": "Community 269", "source_file": "components/icons/EditTurnsD.js", "file_type": "code", "degree": 1}, {"id": "icons_emailc", "label": "EmailC.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "EmailC.js", "community": 14, "community_name": "Community 14", "source_file": "components/icons/EmailC.js", "file_type": "code", "degree": 2}, {"id": "icons_emailc_emailc", "label": "EmailC()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "EmailC()", "community": 14, "community_name": "Community 14", "source_file": "components/icons/EmailC.js", "file_type": "code", "degree": 2}, {"id": "icons_exportp", "label": "ExportP.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ExportP.js", "community": 270, "community_name": "Community 270", "source_file": "components/icons/ExportP.js", "file_type": "code", "degree": 1}, {"id": "icons_exportp_exportp", "label": "ExportP()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ExportP()", "community": 270, "community_name": "Community 270", "source_file": "components/icons/ExportP.js", "file_type": "code", "degree": 1}, {"id": "icons_greencalendarturn", "label": "GreenCalendarTurn.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GreenCalendarTurn.js", "community": 271, "community_name": "Community 271", "source_file": "components/icons/GreenCalendarTurn.js", "file_type": "code", "degree": 1}, {"id": "icons_greencalendarturn_greencalendarturn", "label": "GreenCalendarTurn()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GreenCalendarTurn()", "community": 271, "community_name": "Community 271", "source_file": "components/icons/GreenCalendarTurn.js", "file_type": "code", "degree": 1}, {"id": "icons_iconmultipleselect", "label": "IconMultipleSelect.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IconMultipleSelect.js", "community": 272, "community_name": "Community 272", "source_file": "components/icons/IconMultipleSelect.js", "file_type": "code", "degree": 1}, {"id": "icons_iconmultipleselect_iconmultipleselect", "label": "IconMultipleSelect()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IconMultipleSelect()", "community": 272, "community_name": "Community 272", "source_file": "components/icons/IconMultipleSelect.js", "file_type": "code", "degree": 1}, {"id": "icons_infocirclereda", "label": "InfoCircleRedA.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "InfoCircleRedA.js", "community": 273, "community_name": "Community 273", "source_file": "components/icons/InfoCircleRedA.js", "file_type": "code", "degree": 1}, {"id": "icons_infocirclereda_infocirclereda", "label": "InfoCircleRedA()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "InfoCircleRedA()", "community": 273, "community_name": "Community 273", "source_file": "components/icons/InfoCircleRedA.js", "file_type": "code", "degree": 1}, {"id": "icons_instagram", "label": "Instagram.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Instagram.js", "community": 0, "community_name": "Community 0", "source_file": "components/icons/Instagram.js", "file_type": "code", "degree": 2}, {"id": "icons_instagram_instagram", "label": "Instagram()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Instagram()", "community": 0, "community_name": "Community 0", "source_file": "components/icons/Instagram.js", "file_type": "code", "degree": 2}, {"id": "icons_likecomment", "label": "LikeComment.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LikeComment.js", "community": 274, "community_name": "Community 274", "source_file": "components/icons/LikeComment.js", "file_type": "code", "degree": 1}, {"id": "icons_likecomment_likecomment", "label": "LikeComment()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LikeComment()", "community": 274, "community_name": "Community 274", "source_file": "components/icons/LikeComment.js", "file_type": "code", "degree": 1}, {"id": "icons_liked", "label": "LikeD.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LikeD.js", "community": 275, "community_name": "Community 275", "source_file": "components/icons/LikeD.js", "file_type": "code", "degree": 1}, {"id": "icons_liked_liked", "label": "LikeD()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LikeD()", "community": 275, "community_name": "Community 275", "source_file": "components/icons/LikeD.js", "file_type": "code", "degree": 1}, {"id": "icons_likedi", "label": "LikeDI.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LikeDI.js", "community": 276, "community_name": "Community 276", "source_file": "components/icons/LikeDI.js", "file_type": "code", "degree": 1}, {"id": "icons_likedi_likedi", "label": "LikeDI()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LikeDI()", "community": 276, "community_name": "Community 276", "source_file": "components/icons/LikeDI.js", "file_type": "code", "degree": 1}, {"id": "icons_linkedin", "label": "Linkedin.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Linkedin.js", "community": 0, "community_name": "Community 0", "source_file": "components/icons/Linkedin.js", "file_type": "code", "degree": 2}, {"id": "icons_linkedin_linkedin", "label": "Linkedin()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Linkedin()", "community": 0, "community_name": "Community 0", "source_file": "components/icons/Linkedin.js", "file_type": "code", "degree": 2}, {"id": "icons_linkedinb", "label": "LinkedinB.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LinkedinB.js", "community": 277, "community_name": "Community 277", "source_file": "components/icons/LinkedinB.js", "file_type": "code", "degree": 1}, {"id": "icons_linkedinb_linkedinb", "label": "LinkedinB()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LinkedinB()", "community": 277, "community_name": "Community 277", "source_file": "components/icons/LinkedinB.js", "file_type": "code", "degree": 1}, {"id": "icons_linkedingblued", "label": "LinkedingBlueD.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LinkedingBlueD.js", "community": 278, "community_name": "Community 278", "source_file": "components/icons/LinkedingBlueD.js", "file_type": "code", "degree": 1}, {"id": "icons_linkedingblued_linkedingblued", "label": "LinkedingBlueD()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LinkedingBlueD()", "community": 278, "community_name": "Community 278", "source_file": "components/icons/LinkedingBlueD.js", "file_type": "code", "degree": 1}, {"id": "icons_location", "label": "Location.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Location.js", "community": 279, "community_name": "Community 279", "source_file": "components/icons/Location.js", "file_type": "code", "degree": 1}, {"id": "icons_location_location", "label": "Location()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Location()", "community": 279, "community_name": "Community 279", "source_file": "components/icons/Location.js", "file_type": "code", "degree": 1}, {"id": "icons_locationa", "label": "LocationA.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationA.js", "community": 280, "community_name": "Community 280", "source_file": "components/icons/LocationA.js", "file_type": "code", "degree": 1}, {"id": "icons_locationa_locationa", "label": "LocationA()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationA()", "community": 280, "community_name": "Community 280", "source_file": "components/icons/LocationA.js", "file_type": "code", "degree": 1}, {"id": "icons_locationadd", "label": "LocationAdd.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationAdd.js", "community": 281, "community_name": "Community 281", "source_file": "components/icons/LocationAdd.js", "file_type": "code", "degree": 1}, {"id": "icons_locationadd_locationadd", "label": "LocationAdd()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationAdd()", "community": 281, "community_name": "Community 281", "source_file": "components/icons/LocationAdd.js", "file_type": "code", "degree": 1}, {"id": "icons_locationclinic", "label": "LocationClinic.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationClinic.js", "community": 282, "community_name": "Community 282", "source_file": "components/icons/LocationClinic.js", "file_type": "code", "degree": 1}, {"id": "icons_locationclinic_locationclinic", "label": "LocationClinic()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationClinic()", "community": 282, "community_name": "Community 282", "source_file": "components/icons/LocationClinic.js", "file_type": "code", "degree": 1}, {"id": "icons_locationd", "label": "LocationD.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationD.js", "community": 84, "community_name": "Community 84", "source_file": "components/icons/LocationD.js", "file_type": "code", "degree": 2}, {"id": "icons_locationd_locationd", "label": "LocationD()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationD()", "community": 84, "community_name": "Community 84", "source_file": "components/icons/LocationD.js", "file_type": "code", "degree": 2}, {"id": "icons_locationf", "label": "LocationF.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationF.js", "community": 0, "community_name": "Community 0", "source_file": "components/icons/LocationF.js", "file_type": "code", "degree": 2}, {"id": "icons_locationf_locationf", "label": "LocationF()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationF()", "community": 0, "community_name": "Community 0", "source_file": "components/icons/LocationF.js", "file_type": "code", "degree": 2}, {"id": "icons_locationp", "label": "LocationP.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationP.js", "community": 283, "community_name": "Community 283", "source_file": "components/icons/LocationP.js", "file_type": "code", "degree": 1}, {"id": "icons_locationp_locationp", "label": "LocationP()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationP()", "community": 283, "community_name": "Community 283", "source_file": "components/icons/LocationP.js", "file_type": "code", "degree": 1}, {"id": "icons_locationturn", "label": "LocationTurn.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationTurn.js", "community": 284, "community_name": "Community 284", "source_file": "components/icons/LocationTurn.js", "file_type": "code", "degree": 1}, {"id": "icons_locationturn_locationturn", "label": "LocationTurn()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LocationTurn()", "community": 284, "community_name": "Community 284", "source_file": "components/icons/LocationTurn.js", "file_type": "code", "degree": 1}, {"id": "icons_logopanel", "label": "LogoPanel.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoPanel.js", "community": 285, "community_name": "Community 285", "source_file": "components/icons/LogoPanel.js", "file_type": "code", "degree": 1}, {"id": "icons_logopanel_logopanel", "label": "LogoPanel()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoPanel()", "community": 285, "community_name": "Community 285", "source_file": "components/icons/LogoPanel.js", "file_type": "code", "degree": 1}, {"id": "icons_logopanelhead", "label": "LogoPanelHead.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoPanelHead.js", "community": 286, "community_name": "Community 286", "source_file": "components/icons/LogoPanelHead.js", "file_type": "code", "degree": 1}, {"id": "icons_logopanelhead_logopanelhead", "label": "LogoPanelHead()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoPanelHead()", "community": 286, "community_name": "Community 286", "source_file": "components/icons/LogoPanelHead.js", "file_type": "code", "degree": 1}, {"id": "icons_logoutd", "label": "LogoutD.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoutD.js", "community": 287, "community_name": "Community 287", "source_file": "components/icons/LogoutD.js", "file_type": "code", "degree": 1}, {"id": "icons_logoutd_logoutd", "label": "LogoutD()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoutD()", "community": 287, "community_name": "Community 287", "source_file": "components/icons/LogoutD.js", "file_type": "code", "degree": 1}, {"id": "icons_logoutorangep", "label": "LogoutOrangeP.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoutOrangeP.js", "community": 288, "community_name": "Community 288", "source_file": "components/icons/LogoutOrangeP.js", "file_type": "code", "degree": 1}, {"id": "icons_logoutorangep_logoutorangep", "label": "LogoutOrangeP()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoutOrangeP()", "community": 288, "community_name": "Community 288", "source_file": "components/icons/LogoutOrangeP.js", "file_type": "code", "degree": 1}, {"id": "icons_logoutp", "label": "LogoutP.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoutP.js", "community": 289, "community_name": "Community 289", "source_file": "components/icons/LogoutP.js", "file_type": "code", "degree": 1}, {"id": "icons_logoutp_logoutp", "label": "LogoutP()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoutP()", "community": 289, "community_name": "Community 289", "source_file": "components/icons/LogoutP.js", "file_type": "code", "degree": 1}, {"id": "icons_menus", "label": "MenuS.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MenuS.js", "community": 290, "community_name": "Community 290", "source_file": "components/icons/MenuS.js", "file_type": "code", "degree": 1}, {"id": "icons_menus_menus", "label": "MenuS()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MenuS()", "community": 290, "community_name": "Community 290", "source_file": "components/icons/MenuS.js", "file_type": "code", "degree": 1}, {"id": "icons_messaged", "label": "MessageD.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MessageD.js", "community": 291, "community_name": "Community 291", "source_file": "components/icons/MessageD.js", "file_type": "code", "degree": 1}, {"id": "icons_messaged_messaged", "label": "MessageD()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MessageD()", "community": 291, "community_name": "Community 291", "source_file": "components/icons/MessageD.js", "file_type": "code", "degree": 1}, {"id": "icons_messagenotifd", "label": "MessageNotifD.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MessageNotifD.js", "community": 292, "community_name": "Community 292", "source_file": "components/icons/MessageNotifD.js", "file_type": "code", "degree": 1}, {"id": "icons_messagenotifd_messagenotifd", "label": "MessageNotifd()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MessageNotifd()", "community": 292, "community_name": "Community 292", "source_file": "components/icons/MessageNotifD.js", "file_type": "code", "degree": 1}, {"id": "icons_moonp", "label": "MoonP.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MoonP.js", "community": 293, "community_name": "Community 293", "source_file": "components/icons/MoonP.js", "file_type": "code", "degree": 1}, {"id": "icons_moonp_moonp", "label": "MoonP()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MoonP()", "community": 293, "community_name": "Community 293", "source_file": "components/icons/MoonP.js", "file_type": "code", "degree": 1}, {"id": "icons_notfoundcover", "label": "NotFoundCover.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NotFoundCover.js", "community": 294, "community_name": "Community 294", "source_file": "components/icons/NotFoundCover.js", "file_type": "code", "degree": 1}, {"id": "icons_notfoundcover_notfoundcover", "label": "NotFoundCover()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NotFoundCover()", "community": 294, "community_name": "Community 294", "source_file": "components/icons/NotFoundCover.js", "file_type": "code", "degree": 1}, {"id": "icons_notificationd", "label": "NotificationD.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NotificationD.js", "community": 295, "community_name": "Community 295", "source_file": "components/icons/NotificationD.js", "file_type": "code", "degree": 1}, {"id": "icons_notificationd_notificationd", "label": "NotificationD()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NotificationD()", "community": 295, "community_name": "Community 295", "source_file": "components/icons/NotificationD.js", "file_type": "code", "degree": 1}, {"id": "icons_notificationp", "label": "NotificationP.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NotificationP.js", "community": 296, "community_name": "Community 296", "source_file": "components/icons/NotificationP.js", "file_type": "code", "degree": 1}, {"id": "icons_notificationp_notificationp", "label": "NotificationP()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NotificationP()", "community": 296, "community_name": "Community 296", "source_file": "components/icons/NotificationP.js", "file_type": "code", "degree": 1}, {"id": "icons_numbernotfound", "label": "NumberNotFound.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "NumberNotFound.js", "community": 101, "community_name": "Community 101", "source_file": "components/icons/NumberNotFound.js", "file_type": "code", "degree": 2}, {"id": "icons_numbernotfound_numbernotfound", "label": "NumberNotFound()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "NumberNotFound()", "community": 101, "community_name": "Community 101", "source_file": "components/icons/NumberNotFound.js", "file_type": "code", "degree": 2}, {"id": "icons_peoplebluep", "label": "PeopleBlueP.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PeopleBlueP.js", "community": 297, "community_name": "Community 297", "source_file": "components/icons/PeopleBlueP.js", "file_type": "code", "degree": 1}, {"id": "icons_peoplebluep_peoplebluep", "label": "PeopleBlueP()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PeopleBlueP()", "community": 297, "community_name": "Community 297", "source_file": "components/icons/PeopleBlueP.js", "file_type": "code", "degree": 1}, {"id": "icons_plusb", "label": "PlusB.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PlusB.js", "community": 298, "community_name": "Community 298", "source_file": "components/icons/PlusB.js", "file_type": "code", "degree": 1}, {"id": "icons_plusb_plusb", "label": "PlusB()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PlusB()", "community": 298, "community_name": "Community 298", "source_file": "components/icons/PlusB.js", "file_type": "code", "degree": 1}, {"id": "icons_plusbluep", "label": "PlusBlueP.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PlusBlueP.js", "community": 299, "community_name": "Community 299", "source_file": "components/icons/PlusBlueP.js", "file_type": "code", "degree": 1}, {"id": "icons_plusbluep_plusbluep", "label": "PlusBlueP()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PlusBlueP()", "community": 299, "community_name": "Community 299", "source_file": "components/icons/PlusBlueP.js", "file_type": "code", "degree": 1}, {"id": "icons_pointd", "label": "PointD.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PointD.js", "community": 300, "community_name": "Community 300", "source_file": "components/icons/PointD.js", "file_type": "code", "degree": 1}, {"id": "icons_pointd_pointd", "label": "PointD()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PointD()", "community": 300, "community_name": "Community 300", "source_file": "components/icons/PointD.js", "file_type": "code", "degree": 1}, {"id": "icons_profileaddp", "label": "ProfileAddP.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfileAddP.js", "community": 301, "community_name": "Community 301", "source_file": "components/icons/ProfileAddP.js", "file_type": "code", "degree": 1}, {"id": "icons_profileaddp_profileaddp", "label": "ProfileAddP()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfileAddP()", "community": 301, "community_name": "Community 301", "source_file": "components/icons/ProfileAddP.js", "file_type": "code", "degree": 1}, {"id": "icons_profilecirclep", "label": "ProfileCircleP.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfileCircleP.js", "community": 302, "community_name": "Community 302", "source_file": "components/icons/ProfileCircleP.js", "file_type": "code", "degree": 1}, {"id": "icons_profilecirclep_profilecirclep", "label": "ProfileCircleP()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfileCircleP()", "community": 302, "community_name": "Community 302", "source_file": "components/icons/ProfileCircleP.js", "file_type": "code", "degree": 1}, {"id": "icons_profiled", "label": "ProfileD.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfileD.js", "community": 303, "community_name": "Community 303", "source_file": "components/icons/ProfileD.js", "file_type": "code", "degree": 1}, {"id": "icons_profiled_profiled", "label": "ProfileD()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfileD()", "community": 303, "community_name": "Community 303", "source_file": "components/icons/ProfileD.js", "file_type": "code", "degree": 1}, {"id": "icons_profilep", "label": "ProfileP.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfileP.js", "community": 304, "community_name": "Community 304", "source_file": "components/icons/ProfileP.js", "file_type": "code", "degree": 1}, {"id": "icons_profilep_profilep", "label": "ProfileP()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfileP()", "community": 304, "community_name": "Community 304", "source_file": "components/icons/ProfileP.js", "file_type": "code", "degree": 1}, {"id": "icons_profilepa", "label": "ProfilePA.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfilePA.js", "community": 305, "community_name": "Community 305", "source_file": "components/icons/ProfilePA.js", "file_type": "code", "degree": 1}, {"id": "icons_profilepa_profilepa", "label": "ProfilePA()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfilePA()", "community": 305, "community_name": "Community 305", "source_file": "components/icons/ProfilePA.js", "file_type": "code", "degree": 1}, {"id": "icons_redoa", "label": "RedoA.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RedoA.js", "community": 306, "community_name": "Community 306", "source_file": "components/icons/RedoA.js", "file_type": "code", "degree": 1}, {"id": "icons_redoa_redoa", "label": "RedoA()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RedoA()", "community": 306, "community_name": "Community 306", "source_file": "components/icons/RedoA.js", "file_type": "code", "degree": 1}, {"id": "icons_refresha", "label": "RefreshA.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RefreshA.js", "community": 307, "community_name": "Community 307", "source_file": "components/icons/RefreshA.js", "file_type": "code", "degree": 1}, {"id": "icons_refresha_refresha", "label": "RefreshA()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RefreshA()", "community": 307, "community_name": "Community 307", "source_file": "components/icons/RefreshA.js", "file_type": "code", "degree": 1}, {"id": "icons_retrylogin", "label": "RetryLogin.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RetryLogin.js", "community": 308, "community_name": "Community 308", "source_file": "components/icons/RetryLogin.js", "file_type": "code", "degree": 1}, {"id": "icons_retrylogin_retrylogin", "label": "RetryLogin()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RetryLogin()", "community": 308, "community_name": "Community 308", "source_file": "components/icons/RetryLogin.js", "file_type": "code", "degree": 1}, {"id": "icons_routingc", "label": "RoutingC.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RoutingC.js", "community": 309, "community_name": "Community 309", "source_file": "components/icons/RoutingC.js", "file_type": "code", "degree": 1}, {"id": "icons_routingc_routingc", "label": "RoutingC()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RoutingC()", "community": 309, "community_name": "Community 309", "source_file": "components/icons/RoutingC.js", "file_type": "code", "degree": 1}, {"id": "icons_routingwhitec", "label": "RoutingWhiteC.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RoutingWhiteC.js", "community": 310, "community_name": "Community 310", "source_file": "components/icons/RoutingWhiteC.js", "file_type": "code", "degree": 1}, {"id": "icons_routingwhitec_routingwhitec", "label": "RoutingWhiteC()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RoutingWhiteC()", "community": 310, "community_name": "Community 310", "source_file": "components/icons/RoutingWhiteC.js", "file_type": "code", "degree": 1}, {"id": "icons_search", "label": "Search.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Search.js", "community": 311, "community_name": "Community 311", "source_file": "components/icons/Search.js", "file_type": "code", "degree": 1}, {"id": "icons_search_search", "label": "Search()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Search()", "community": 311, "community_name": "Community 311", "source_file": "components/icons/Search.js", "file_type": "code", "degree": 1}, {"id": "icons_searchd", "label": "SearchD.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchD.js", "community": 312, "community_name": "Community 312", "source_file": "components/icons/SearchD.js", "file_type": "code", "degree": 1}, {"id": "icons_searchd_searchd", "label": "SearchD()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchD()", "community": 312, "community_name": "Community 312", "source_file": "components/icons/SearchD.js", "file_type": "code", "degree": 1}, {"id": "icons_searchheaderp", "label": "SearchHeaderP.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchHeaderP.js", "community": 313, "community_name": "Community 313", "source_file": "components/icons/SearchHeaderP.js", "file_type": "code", "degree": 1}, {"id": "icons_searchheaderp_searchheaderp", "label": "SearchHeaderP()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchHeaderP()", "community": 313, "community_name": "Community 313", "source_file": "components/icons/SearchHeaderP.js", "file_type": "code", "degree": 1}, {"id": "icons_settingd", "label": "SettingD.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingD.js", "community": 314, "community_name": "Community 314", "source_file": "components/icons/SettingD.js", "file_type": "code", "degree": 1}, {"id": "icons_settingd_settingd", "label": "SettingD()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingD()", "community": 314, "community_name": "Community 314", "source_file": "components/icons/SettingD.js", "file_type": "code", "degree": 1}, {"id": "icons_settingp", "label": "SettingP.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingP.js", "community": 315, "community_name": "Community 315", "source_file": "components/icons/SettingP.js", "file_type": "code", "degree": 1}, {"id": "icons_settingp_settingp", "label": "SettingP()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingP()", "community": 315, "community_name": "Community 315", "source_file": "components/icons/SettingP.js", "file_type": "code", "degree": 1}, {"id": "icons_settingpa", "label": "SettingPA.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingPA.js", "community": 316, "community_name": "Community 316", "source_file": "components/icons/SettingPA.js", "file_type": "code", "degree": 1}, {"id": "icons_settingpa_settingpa", "label": "SettingPA()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingPA()", "community": 316, "community_name": "Community 316", "source_file": "components/icons/SettingPA.js", "file_type": "code", "degree": 1}, {"id": "icons_sharedi", "label": "ShareDI.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareDI.js", "community": 317, "community_name": "Community 317", "source_file": "components/icons/ShareDI.js", "file_type": "code", "degree": 1}, {"id": "icons_sharedi_sharedi", "label": "ShareDI()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ShareDI()", "community": 317, "community_name": "Community 317", "source_file": "components/icons/ShareDI.js", "file_type": "code", "degree": 1}, {"id": "icons_sortd", "label": "SortD.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SortD.js", "community": 74, "community_name": "Community 74", "source_file": "components/icons/SortD.js", "file_type": "code", "degree": 2}, {"id": "icons_sortd_sortd", "label": "SortD()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SortD()", "community": 74, "community_name": "Community 74", "source_file": "components/icons/SortD.js", "file_type": "code", "degree": 2}, {"id": "icons_stardi", "label": "StarDI.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "StarDI.js", "community": 318, "community_name": "Community 318", "source_file": "components/icons/StarDI.js", "file_type": "code", "degree": 1}, {"id": "icons_stardi_stardi", "label": "StarDI()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "StarDI()", "community": 318, "community_name": "Community 318", "source_file": "components/icons/StarDI.js", "file_type": "code", "degree": 1}, {"id": "icons_stethoscopef", "label": "StethoscopeF.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "StethoscopeF.js", "community": 0, "community_name": "Community 0", "source_file": "components/icons/StethoscopeF.js", "file_type": "code", "degree": 2}, {"id": "icons_stethoscopef_stethoscopef", "label": "StethoscopeF()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "StethoscopeF()", "community": 0, "community_name": "Community 0", "source_file": "components/icons/StethoscopeF.js", "file_type": "code", "degree": 2}, {"id": "icons_sun", "label": "Sun.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Sun.js", "community": 319, "community_name": "Community 319", "source_file": "components/icons/Sun.js", "file_type": "code", "degree": 1}, {"id": "icons_sun_sun", "label": "Sun()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Sun()", "community": 319, "community_name": "Community 319", "source_file": "components/icons/Sun.js", "file_type": "code", "degree": 1}, {"id": "icons_telefonposter", "label": "TelefonPoster.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TelefonPoster.js", "community": 320, "community_name": "Community 320", "source_file": "components/icons/TelefonPoster.js", "file_type": "code", "degree": 1}, {"id": "icons_telefonposter_telefonposter", "label": "TelefonPoster()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TelefonPoster()", "community": 320, "community_name": "Community 320", "source_file": "components/icons/TelefonPoster.js", "file_type": "code", "degree": 1}, {"id": "icons_telegram", "label": "Telegram.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Telegram.js", "community": 0, "community_name": "Community 0", "source_file": "components/icons/Telegram.js", "file_type": "code", "degree": 2}, {"id": "icons_telegram_telegram", "label": "Telegram()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Telegram()", "community": 0, "community_name": "Community 0", "source_file": "components/icons/Telegram.js", "file_type": "code", "degree": 2}, {"id": "icons_telegramb", "label": "TelegramB.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TelegramB.js", "community": 321, "community_name": "Community 321", "source_file": "components/icons/TelegramB.js", "file_type": "code", "degree": 1}, {"id": "icons_telegramb_telegramb", "label": "TelegramB()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TelegramB()", "community": 321, "community_name": "Community 321", "source_file": "components/icons/TelegramB.js", "file_type": "code", "degree": 1}, {"id": "icons_telegramblued", "label": "TelegramBlueD.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TelegramBlueD.js", "community": 322, "community_name": "Community 322", "source_file": "components/icons/TelegramBlueD.js", "file_type": "code", "degree": 1}, {"id": "icons_telegramblued_telegramblued", "label": "TelegramBlueD()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TelegramBlueD()", "community": 322, "community_name": "Community 322", "source_file": "components/icons/TelegramBlueD.js", "file_type": "code", "degree": 1}, {"id": "icons_tickalert", "label": "TickAlert.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TickAlert.js", "community": 323, "community_name": "Community 323", "source_file": "components/icons/TickAlert.js", "file_type": "code", "degree": 1}, {"id": "icons_tickalert_tickalert", "label": "TickAlert()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TickAlert()", "community": 323, "community_name": "Community 323", "source_file": "components/icons/TickAlert.js", "file_type": "code", "degree": 1}, {"id": "icons_tickcircle", "label": "TickCircle.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TickCircle.js", "community": 324, "community_name": "Community 324", "source_file": "components/icons/TickCircle.js", "file_type": "code", "degree": 1}, {"id": "icons_tickcircle_tickcircle", "label": "TickCircle()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TickCircle()", "community": 324, "community_name": "Community 324", "source_file": "components/icons/TickCircle.js", "file_type": "code", "degree": 1}, {"id": "icons_tickcirclegreena", "label": "TickCircleGreenA.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TickCircleGreenA.js", "community": 325, "community_name": "Community 325", "source_file": "components/icons/TickCircleGreenA.js", "file_type": "code", "degree": 1}, {"id": "icons_tickcirclegreena_tickcirclegreena", "label": "TickCircleGreenA()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TickCircleGreenA()", "community": 325, "community_name": "Community 325", "source_file": "components/icons/TickCircleGreenA.js", "file_type": "code", "degree": 1}, {"id": "icons_tickcircleorange", "label": "TickCircleOrange.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TickCircleOrange.js", "community": 326, "community_name": "Community 326", "source_file": "components/icons/TickCircleOrange.js", "file_type": "code", "degree": 1}, {"id": "icons_tickcircleorange_tickcircleorange", "label": "TickCircleOrange()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TickCircleOrange()", "community": 326, "community_name": "Community 326", "source_file": "components/icons/TickCircleOrange.js", "file_type": "code", "degree": 1}, {"id": "icons_tickorangea", "label": "TickOrangeA.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TickOrangeA.js", "community": 16, "community_name": "Community 16", "source_file": "components/icons/TickOrangeA.js", "file_type": "code", "degree": 2}, {"id": "icons_tickorangea_tickorangea", "label": "TickOrangeA()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TickOrangeA()", "community": 16, "community_name": "Community 16", "source_file": "components/icons/TickOrangeA.js", "file_type": "code", "degree": 2}, {"id": "icons_ticketd", "label": "TicketD.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TicketD.js", "community": 327, "community_name": "Community 327", "source_file": "components/icons/TicketD.js", "file_type": "code", "degree": 1}, {"id": "icons_ticketd_ticketd", "label": "TicketD()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TicketD()", "community": 327, "community_name": "Community 327", "source_file": "components/icons/TicketD.js", "file_type": "code", "degree": 1}, {"id": "icons_trashb", "label": "TrashB.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TrashB.js", "community": 328, "community_name": "Community 328", "source_file": "components/icons/TrashB.js", "file_type": "code", "degree": 1}, {"id": "icons_trashb_trashb", "label": "TrashB()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TrashB()", "community": 328, "community_name": "Community 328", "source_file": "components/icons/TrashB.js", "file_type": "code", "degree": 1}, {"id": "icons_trashoranged", "label": "TrashOrangeD.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TrashOrangeD.js", "community": 329, "community_name": "Community 329", "source_file": "components/icons/TrashOrangeD.js", "file_type": "code", "degree": 1}, {"id": "icons_trashoranged_trashoranged", "label": "TrashOrangeD()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TrashOrangeD()", "community": 329, "community_name": "Community 329", "source_file": "components/icons/TrashOrangeD.js", "file_type": "code", "degree": 1}, {"id": "icons_underline", "label": "Underline.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Underline.js", "community": 330, "community_name": "Community 330", "source_file": "components/icons/Underline.js", "file_type": "code", "degree": 1}, {"id": "icons_underline_underline", "label": "Underline()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Underline()", "community": 330, "community_name": "Community 330", "source_file": "components/icons/Underline.js", "file_type": "code", "degree": 1}, {"id": "icons_underlinelg", "label": "UnderlineLG.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "UnderlineLG.js", "community": 16, "community_name": "Community 16", "source_file": "components/icons/UnderlineLG.js", "file_type": "code", "degree": 2}, {"id": "icons_underlinelg_underlinelg", "label": "UnderlineLG()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "UnderlineLG()", "community": 16, "community_name": "Community 16", "source_file": "components/icons/UnderlineLG.js", "file_type": "code", "degree": 2}, {"id": "icons_updatelist", "label": "UpdateList.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateList.js", "community": 331, "community_name": "Community 331", "source_file": "components/icons/UpdateList.js", "file_type": "code", "degree": 1}, {"id": "icons_updatelist_updatelist", "label": "UpdateList()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateList()", "community": 331, "community_name": "Community 331", "source_file": "components/icons/UpdateList.js", "file_type": "code", "degree": 1}, {"id": "icons_useredit", "label": "UserEdit.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UserEdit.js", "community": 332, "community_name": "Community 332", "source_file": "components/icons/UserEdit.js", "file_type": "code", "degree": 1}, {"id": "icons_useredit_useredit", "label": "UserEdit()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UserEdit()", "community": 332, "community_name": "Community 332", "source_file": "components/icons/UserEdit.js", "file_type": "code", "degree": 1}, {"id": "icons_userlogin", "label": "UserLogin.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UserLogin.js", "community": 333, "community_name": "Community 333", "source_file": "components/icons/UserLogin.js", "file_type": "code", "degree": 1}, {"id": "icons_userlogin_userlogin", "label": "UserLogin()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UserLogin()", "community": 333, "community_name": "Community 333", "source_file": "components/icons/UserLogin.js", "file_type": "code", "degree": 1}, {"id": "icons_warnp", "label": "WarnP.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WarnP.js", "community": 334, "community_name": "Community 334", "source_file": "components/icons/WarnP.js", "file_type": "code", "degree": 1}, {"id": "icons_warnp_warnp", "label": "WarnP()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WarnP()", "community": 334, "community_name": "Community 334", "source_file": "components/icons/WarnP.js", "file_type": "code", "degree": 1}, {"id": "icons_whatsapp", "label": "Whatsapp.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Whatsapp.js", "community": 0, "community_name": "Community 0", "source_file": "components/icons/Whatsapp.js", "file_type": "code", "degree": 2}, {"id": "icons_whatsapp_whatsapp", "label": "Whatsapp()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Whatsapp()", "community": 0, "community_name": "Community 0", "source_file": "components/icons/Whatsapp.js", "file_type": "code", "degree": 2}, {"id": "icons_whatsappb", "label": "WhatsappB.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WhatsappB.js", "community": 335, "community_name": "Community 335", "source_file": "components/icons/WhatsappB.js", "file_type": "code", "degree": 1}, {"id": "icons_whatsappb_whatsappb", "label": "WhatsappB()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WhatsappB()", "community": 335, "community_name": "Community 335", "source_file": "components/icons/WhatsappB.js", "file_type": "code", "degree": 1}, {"id": "icons_whatsappblued", "label": "WhatsappBlueD.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WhatsappBlueD.js", "community": 336, "community_name": "Community 336", "source_file": "components/icons/WhatsappBlueD.js", "file_type": "code", "degree": 1}, {"id": "icons_whatsappblued_whatsappblued", "label": "WhatsappBlueD()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WhatsappBlueD()", "community": 336, "community_name": "Community 336", "source_file": "components/icons/WhatsappBlueD.js", "file_type": "code", "degree": 1}, {"id": "icons_whatsappc", "label": "WhatsappC.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "WhatsappC.js", "community": 14, "community_name": "Community 14", "source_file": "components/icons/WhatsappC.js", "file_type": "code", "degree": 2}, {"id": "icons_whatsappc_whatsappc", "label": "WhatsappC()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "WhatsappC()", "community": 14, "community_name": "Community 14", "source_file": "components/icons/WhatsappC.js", "file_type": "code", "degree": 2}, {"id": "icons_youtube", "label": "Youtube.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Youtube.js", "community": 337, "community_name": "Community 337", "source_file": "components/icons/Youtube.js", "file_type": "code", "degree": 1}, {"id": "icons_youtube_youtube", "label": "Youtube()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Youtube()", "community": 337, "community_name": "Community 337", "source_file": "components/icons/Youtube.js", "file_type": "code", "degree": 1}, {"id": "layout_stlayout", "label": "StLayout.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "StLayout.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/StLayout.js", "file_type": "code", "degree": 5}, {"id": "layout_stlayout_stlayout", "label": "StLayout()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "StLayout()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/StLayout.js", "file_type": "code", "degree": 2}, {"id": "footer_logonamad", "label": "LogoNamad.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoNamad.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/footer/LogoNamad.js", "file_type": "code", "degree": 3}, {"id": "footer_logonamad_namads", "label": "Namads", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Namads", "community": 0, "community_name": "Community 0", "source_file": "components/layout/footer/LogoNamad.js", "file_type": "code", "degree": 1}, {"id": "footer_logonamad_logonamad", "label": "LogoNamad()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LogoNamad()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/footer/LogoNamad.js", "file_type": "code", "degree": 2}, {"id": "footer_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 25.6, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/footer/index.js", "file_type": "code", "degree": 25}, {"id": "footer_index_head", "label": "head", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "head", "community": 0, "community_name": "Community 0", "source_file": "components/layout/footer/index.js", "file_type": "code", "degree": 1}, {"id": "footer_index_buildsocialurl", "label": "buildSocialUrl()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildSocialUrl()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/footer/index.js", "file_type": "code", "degree": 1}, {"id": "footer_index_footer", "label": "Footer()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Footer()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/footer/index.js", "file_type": "code", "degree": 3}, {"id": "menu_headmenu", "label": "HeadMenu.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HeadMenu.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/footer/menu/HeadMenu.js", "file_type": "code", "degree": 2}, {"id": "menu_headmenu_headmenu", "label": "HeadMenu()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HeadMenu()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/footer/menu/HeadMenu.js", "file_type": "code", "degree": 2}, {"id": "menu_listmenu", "label": "ListMenu.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ListMenu.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/footer/menu/ListMenu.js", "file_type": "code", "degree": 2}, {"id": "menu_listmenu_listmenu", "label": "ListMenu()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ListMenu()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/footer/menu/ListMenu.js", "file_type": "code", "degree": 2}, {"id": "header_content", "label": "Content.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Content.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/Content.js", "file_type": "code", "degree": 12}, {"id": "header_content_content", "label": "Content()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Content()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/Content.js", "file_type": "code", "degree": 2}, {"id": "header_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/index.js", "file_type": "code", "degree": 5}, {"id": "header_index_header", "label": "Header()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Header()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/index.js", "file_type": "code", "degree": 3}, {"id": "list_row", "label": "Row.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Row.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/list/Row.js", "file_type": "code", "degree": 2}, {"id": "list_row_row", "label": "Row()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Row()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/list/Row.js", "file_type": "code", "degree": 2}, {"id": "col_bggray", "label": "BgGray.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BgGray.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/list/col/BgGray.js", "file_type": "code", "degree": 2}, {"id": "col_bggray_bggray", "label": "BgGray()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BgGray()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/list/col/BgGray.js", "file_type": "code", "degree": 2}, {"id": "col_buttonmenu", "label": "ButtonMenu.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonMenu.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/list/col/ButtonMenu.js", "file_type": "code", "degree": 2}, {"id": "col_buttonmenu_buttonmenu", "label": "ButtonMenu()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonMenu()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/list/col/ButtonMenu.js", "file_type": "code", "degree": 2}, {"id": "col_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/list/col/index.js", "file_type": "code", "degree": 2}, {"id": "col_index_col", "label": "Col()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Col()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/list/col/index.js", "file_type": "code", "degree": 2}, {"id": "profile_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/profile/index.js", "file_type": "code", "degree": 2}, {"id": "profile_index_profileuser", "label": "ProfileUser()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfileUser()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/header/profile/index.js", "file_type": "code", "degree": 2}, {"id": "layout_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/index.js", "file_type": "code", "degree": 8}, {"id": "layout_index_layout", "label": "Layout()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Layout()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/index.js", "file_type": "code", "degree": 2}, {"id": "sidebar_cards", "label": "Cards.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Cards.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/sidebar/Cards.js", "file_type": "code", "degree": 2}, {"id": "sidebar_cards_cards", "label": "Cards()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Cards()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/sidebar/Cards.js", "file_type": "code", "degree": 2}, {"id": "sidebar_head", "label": "Head.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Head.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/sidebar/Head.js", "file_type": "code", "degree": 2}, {"id": "sidebar_head_head", "label": "Head()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Head()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/sidebar/Head.js", "file_type": "code", "degree": 3}, {"id": "sidebar_list", "label": "List.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "List.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/sidebar/List.js", "file_type": "code", "degree": 4}, {"id": "sidebar_list_list", "label": "List()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "List()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/sidebar/List.js", "file_type": "code", "degree": 2}, {"id": "sidebar_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 0, "community_name": "Community 0", "source_file": "components/layout/sidebar/index.js", "file_type": "code", "degree": 8}, {"id": "sidebar_index_sidebar", "label": "Sidebar()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Sidebar()", "community": 0, "community_name": "Community 0", "source_file": "components/layout/sidebar/index.js", "file_type": "code", "degree": 2}, {"id": "loginverify_index", "label": "index.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 342, "community_name": "Community 342", "source_file": "components/loginVerify/index.js", "file_type": "code", "degree": 1}, {"id": "loginverify_index_loginverifypage", "label": "LoginVerifyPage()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginVerifyPage()", "community": 342, "community_name": "Community 342", "source_file": "components/loginVerify/index.js", "file_type": "code", "degree": 1}, {"id": "maintenance_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 400, "community_name": "Community 400", "source_file": "components/maintenance/index.js", "file_type": "code", "degree": 1}, {"id": "maintenance_index_maintenancepage", "label": "MaintenancePage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MaintenancePage()", "community": 400, "community_name": "Community 400", "source_file": "components/maintenance/index.js", "file_type": "code", "degree": 1}, {"id": "notfound_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 101, "community_name": "Community 101", "source_file": "components/notFound/index.js", "file_type": "code", "degree": 3}, {"id": "notfound_index_notfoundpage", "label": "NotFoundPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NotFoundPage()", "community": 101, "community_name": "Community 101", "source_file": "components/notFound/index.js", "file_type": "code", "degree": 1}, {"id": "register_contentlogin", "label": "ContentLogin.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentLogin.js", "community": 29, "community_name": "Community 29", "source_file": "components/register/ContentLogin.js", "file_type": "code", "degree": 1}, {"id": "register_contentlogin_contentlogin", "label": "ContentLogin()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentLogin()", "community": 29, "community_name": "Community 29", "source_file": "components/register/ContentLogin.js", "file_type": "code", "degree": 2}, {"id": "register_contentverify", "label": "ContentVerify.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentVerify.js", "community": 349, "community_name": "Community 349", "source_file": "components/register/ContentVerify.js", "file_type": "code", "degree": 1}, {"id": "register_contentverify_contentverify", "label": "ContentVerify()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ContentVerify()", "community": 349, "community_name": "Community 349", "source_file": "components/register/ContentVerify.js", "file_type": "code", "degree": 1}, {"id": "register_layoutregister", "label": "LayoutRegister.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "LayoutRegister.js", "community": 97, "community_name": "Community 97", "source_file": "components/register/LayoutRegister.js", "file_type": "code", "degree": 3}, {"id": "register_layoutregister_about", "label": "about", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "about", "community": 97, "community_name": "Community 97", "source_file": "components/register/LayoutRegister.js", "file_type": "code", "degree": 1}, {"id": "register_layoutregister_layoutregister", "label": "LayoutRegister()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "LayoutRegister()", "community": 97, "community_name": "Community 97", "source_file": "components/register/LayoutRegister.js", "file_type": "code", "degree": 2}, {"id": "register_loginpage", "label": "LogInPage.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogInPage.js", "community": 350, "community_name": "Community 350", "source_file": "components/register/LogInPage.js", "file_type": "code", "degree": 1}, {"id": "register_loginpage_loginpage", "label": "LogInPage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LogInPage()", "community": 350, "community_name": "Community 350", "source_file": "components/register/LogInPage.js", "file_type": "code", "degree": 1}, {"id": "element_otpform", "label": "OTPForm.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "OTPForm.js", "community": 52, "community_name": "Community 52", "source_file": "components/register/element/OTPForm.js", "file_type": "code", "degree": 2}, {"id": "element_otpform_otpform", "label": "OTPForm()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "OTPForm()", "community": 52, "community_name": "Community 52", "source_file": "components/register/element/OTPForm.js", "file_type": "code", "degree": 2}, {"id": "register_index", "label": "index.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 97, "community_name": "Community 97", "source_file": "components/register/index.js", "file_type": "code", "degree": 3}, {"id": "register_index_registerpage", "label": "RegisterPage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterPage()", "community": 97, "community_name": "Community 97", "source_file": "components/register/index.js", "file_type": "code", "degree": 1}, {"id": "verificationpage_recode", "label": "Recode.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Recode.js", "community": 52, "community_name": "Community 52", "source_file": "components/register/verificationPage/Recode.js", "file_type": "code", "degree": 2}, {"id": "verificationpage_recode_recode", "label": "Recode()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Recode()", "community": 52, "community_name": "Community 52", "source_file": "components/register/verificationPage/Recode.js", "file_type": "code", "degree": 2}, {"id": "verificationpage_sendreq", "label": "SendReq.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SendReq.js", "community": 52, "community_name": "Community 52", "source_file": "components/register/verificationPage/SendReq.js", "file_type": "code", "degree": 2}, {"id": "verificationpage_sendreq_sendreq", "label": "SendReq()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SendReq()", "community": 52, "community_name": "Community 52", "source_file": "components/register/verificationPage/SendReq.js", "file_type": "code", "degree": 2}, {"id": "verificationpage_index", "label": "index.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 52, "community_name": "Community 52", "source_file": "components/register/verificationPage/index.js", "file_type": "code", "degree": 11}, {"id": "verificationpage_index_verificationpage", "label": "VerificationPage()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "VerificationPage()", "community": 52, "community_name": "Community 52", "source_file": "components/register/verificationPage/index.js", "file_type": "code", "degree": 1}, {"id": "smsearch_autocompletesearch", "label": "AutoCompleteSearch.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoCompleteSearch.js", "community": 88, "community_name": "Community 88", "source_file": "components/searchHead/smSearch/AutoCompleteSearch.js", "file_type": "code", "degree": 2}, {"id": "smsearch_autocompletesearch_autocompletesearch", "label": "AutoCompleteSearch()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AutoCompleteSearch()", "community": 88, "community_name": "Community 88", "source_file": "components/searchHead/smSearch/AutoCompleteSearch.js", "file_type": "code", "degree": 2}, {"id": "smsearch_index", "label": "index.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 88, "community_name": "Community 88", "source_file": "components/searchHead/smSearch/index.js", "file_type": "code", "degree": 4}, {"id": "smsearch_index_smsearch", "label": "SmSearch()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SmSearch()", "community": 88, "community_name": "Community 88", "source_file": "components/searchHead/smSearch/index.js", "file_type": "code", "degree": 2}, {"id": "detail_doctorgrid", "label": "DoctorGrid.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorGrid.js", "community": 371, "community_name": "Community 371", "source_file": "components/specialties/detail/DoctorGrid.js", "file_type": "code", "degree": 2}, {"id": "detail_doctorgrid_doctorgrid", "label": "DoctorGrid()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorGrid()", "community": 371, "community_name": "Community 371", "source_file": "components/specialties/detail/DoctorGrid.js", "file_type": "code", "degree": 2}, {"id": "components_specialties_detail_faq_js_detail_faq", "label": "Faq.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Faq.js", "community": 405, "community_name": "Community 405", "source_file": "components/specialties/detail/Faq.js", "file_type": "code", "degree": 1}, {"id": "components_specialties_detail_faq_js_detail_faq_faq", "label": "Faq()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Faq()", "community": 405, "community_name": "Community 405", "source_file": "components/specialties/detail/Faq.js", "file_type": "code", "degree": 1}, {"id": "components_specialties_detail_index_js_detail_index", "label": "index.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 371, "community_name": "Community 371", "source_file": "components/specialties/detail/index.js", "file_type": "code", "degree": 3}, {"id": "detail_index_specialtydetailpage", "label": "SpecialtyDetailPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SpecialtyDetailPage()", "community": 371, "community_name": "Community 371", "source_file": "components/specialties/detail/index.js", "file_type": "code", "degree": 1}, {"id": "specialties_index", "label": "index.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 88, "community_name": "Community 88", "source_file": "components/specialties/index.js", "file_type": "code", "degree": 3}, {"id": "specialties_index_specialtiespage", "label": "SpecialtiesPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SpecialtiesPage()", "community": 88, "community_name": "Community 88", "source_file": "components/specialties/index.js", "file_type": "code", "degree": 1}, {"id": "list_itemspecialties", "label": "ItemSpecialties.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemSpecialties.js", "community": 100, "community_name": "Community 100", "source_file": "components/specialties/list/ItemSpecialties.js", "file_type": "code", "degree": 3}, {"id": "list_itemspecialties_specialtyhref", "label": "specialtyHref()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "specialtyHref()", "community": 100, "community_name": "Community 100", "source_file": "components/specialties/list/ItemSpecialties.js", "file_type": "code", "degree": 2}, {"id": "list_itemspecialties_itemspecialties", "label": "ItemSpecialties()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ItemSpecialties()", "community": 100, "community_name": "Community 100", "source_file": "components/specialties/list/ItemSpecialties.js", "file_type": "code", "degree": 3}, {"id": "components_specialties_list_index_js_list_index", "label": "index.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 100, "community_name": "Community 100", "source_file": "components/specialties/list/index.js", "file_type": "code", "degree": 3}, {"id": "components_specialties_list_index_js_list_index_list", "label": "List()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "List()", "community": 100, "community_name": "Community 100", "source_file": "components/specialties/list/index.js", "file_type": "code", "degree": 1}, {"id": "constans_index", "label": "index.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 92, "community_name": "Community 92", "source_file": "constans/index.js", "file_type": "code", "degree": 4}, {"id": "constans_index_listnav", "label": "listNav", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "listNav", "community": 92, "community_name": "Community 92", "source_file": "constans/index.js", "file_type": "code", "degree": 1}, {"id": "constans_index_frequentsearches", "label": "frequentSearches", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "frequentSearches", "community": 92, "community_name": "Community 92", "source_file": "constans/index.js", "file_type": "code", "degree": 1}, {"id": "constans_index_footerr", "label": "footerR", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "footerR", "community": 92, "community_name": "Community 92", "source_file": "constans/index.js", "file_type": "code", "degree": 1}, {"id": "constans_index_footerl", "label": "footerL", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "footerL", "community": 92, "community_name": "Community 92", "source_file": "constans/index.js", "file_type": "code", "degree": 1}, {"id": "context_provinceprovider", "label": "ProvinceProvider.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ProvinceProvider.js", "community": 370, "community_name": "Community 370", "source_file": "context/ProvinceProvider.js", "file_type": "code", "degree": 3}, {"id": "context_provinceprovider_provincecontext", "label": "ProvinceContext", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProvinceContext", "community": 370, "community_name": "Community 370", "source_file": "context/ProvinceProvider.js", "file_type": "code", "degree": 1}, {"id": "context_provinceprovider_provinceprovider", "label": "ProvinceProvider()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ProvinceProvider()", "community": 370, "community_name": "Community 370", "source_file": "context/ProvinceProvider.js", "file_type": "code", "degree": 2}, {"id": "context_provinceprovider_useprovince", "label": "useProvince()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "useProvince()", "community": 370, "community_name": "Community 370", "source_file": "context/ProvinceProvider.js", "file_type": "code", "degree": 3}, {"id": "context_provinceprovider_test", "label": "ProvinceProvider.test.jsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ProvinceProvider.test.jsx", "community": 370, "community_name": "Community 370", "source_file": "context/ProvinceProvider.test.jsx", "file_type": "code", "degree": 2}, {"id": "context_provinceprovider_test_probe", "label": "Probe()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Probe()", "community": 370, "community_name": "Community 370", "source_file": "context/ProvinceProvider.test.jsx", "file_type": "code", "degree": 2}, {"id": "context_provinceprovider_test_sethostname", "label": "setHostname()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "setHostname()", "community": 370, "community_name": "Community 370", "source_file": "context/ProvinceProvider.test.jsx", "file_type": "code", "degree": 1}, {"id": "eslint_config", "label": "eslint.config.mjs", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint.config.mjs", "community": 195, "community_name": "Community 195", "source_file": "eslint.config.mjs", "file_type": "code", "degree": 1}, {"id": "eslint_config_eslintconfig", "label": "eslintConfig", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "eslintConfig", "community": 195, "community_name": "Community 195", "source_file": "eslint.config.mjs", "file_type": "code", "degree": 1}, {"id": "helper_index", "label": "index.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 37.5, "font": {"size": 12, "color": "#ffffff"}, "title": "index.js", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 44}, {"id": "helper_index_numbertoarstyle", "label": "numberToArStyle()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "numberToArStyle()", "community": 15, "community_name": "Community 15", "source_file": "helper/index.js", "file_type": "code", "degree": 3}, {"id": "helper_index_name_honorifics", "label": "NAME_HONORIFICS", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NAME_HONORIFICS", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_normalizedoctornamequery", "label": "normalizeDoctorNameQuery()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeDoctorNameQuery()", "community": 369, "community_name": "Community 369", "source_file": "helper/index.js", "file_type": "code", "degree": 5}, {"id": "helper_index_isactiveurl", "label": "isActiveURL()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isActiveURL()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_normalizeblog", "label": "normalizeBlog()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeBlog()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 2}, {"id": "helper_index_blogcover", "label": "blogCover()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "blogCover()", "community": 45, "community_name": "Community 45", "source_file": "helper/index.js", "file_type": "code", "degree": 7}, {"id": "helper_index_imageurl", "label": "imageUrl()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "imageUrl()", "community": 45, "community_name": "Community 45", "source_file": "helper/index.js", "file_type": "code", "degree": 16}, {"id": "helper_index_doctortitle", "label": "doctorTitle()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "doctorTitle()", "community": 372, "community_name": "Community 372", "source_file": "helper/index.js", "file_type": "code", "degree": 8}, {"id": "helper_index_converttojalali", "label": "convertToJalali()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "convertToJalali()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_converttimestamptojalali", "label": "convertTimestampToJalali()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "convertTimestampToJalali()", "community": 1, "community_name": "Community 1", "source_file": "helper/index.js", "file_type": "code", "degree": 8}, {"id": "helper_index_converttimestamptotime", "label": "convertTimestampToTime()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "convertTimestampToTime()", "community": 1, "community_name": "Community 1", "source_file": "helper/index.js", "file_type": "code", "degree": 4}, {"id": "helper_index_handletwolength", "label": "handleTwoLength()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleTwoLength()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_checkallvalues", "label": "checkAllValues()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "checkAllValues()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_checktimes", "label": "checkTimes()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "checkTimes()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_uploadimage", "label": "uploadImage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "uploadImage()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_alert", "label": "alert()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "alert()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_formatphonenumber", "label": "formatPhoneNumber()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "formatPhoneNumber()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_validatephonenumber", "label": "validatePhoneNumber()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "validatePhoneNumber()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_searchonlist", "label": "searchOnList()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "searchOnList()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_clearfilterparams", "label": "clearFilterParams()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "clearFilterParams()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_cleardoctorclinicparams", "label": "clearDoctorClinicParams()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "clearDoctorClinicParams()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_filterlist", "label": "filterList()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "filterList()", "community": 71, "community_name": "Community 71", "source_file": "helper/index.js", "file_type": "code", "degree": 3}, {"id": "helper_index_getcleannumbervalue", "label": "getCleanNumberValue()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getCleanNumberValue()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_hasdatachanged", "label": "hasDataChanged()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hasDataChanged()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_getparseduserinfo", "label": "getParsedUserInfo()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getParsedUserInfo()", "community": 40, "community_name": "Community 40", "source_file": "helper/index.js", "file_type": "code", "degree": 2}, {"id": "helper_index_handletimeexpirestoken", "label": "handleTimeExpiresToken()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "handleTimeExpiresToken()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_removeadditionalkeysdashboard", "label": "removeAdditionalKeysDashboard()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "removeAdditionalKeysDashboard()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_changedatetype", "label": "changeDateType()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "changeDateType()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_removetokenhead", "label": "removeTokenHead", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "removeTokenHead", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_datetotimestamp", "label": "dateToTimestamp()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "dateToTimestamp()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_degreeval", "label": "degreeVal", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "degreeVal", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_addlabeltolist", "label": "addLabelToList()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "addLabelToList()", "community": 113, "community_name": "Community 113", "source_file": "helper/index.js", "file_type": "code", "degree": 2}, {"id": "helper_index_queryfordoctorsfilter", "label": "QueryForDoctorsFilter()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "QueryForDoctorsFilter()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_queryforclinicdoctorfilter", "label": "QueryForClinicDoctorFilter()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "QueryForClinicDoctorFilter()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_queryfordoctorsreq", "label": "QueryForDoctorsReq()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "QueryForDoctorsReq()", "community": 369, "community_name": "Community 369", "source_file": "helper/index.js", "file_type": "code", "degree": 2}, {"id": "helper_index_queryfordoctorsclinicreq", "label": "QueryForDoctorsClinicReq()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "QueryForDoctorsClinicReq()", "community": 369, "community_name": "Community 369", "source_file": "helper/index.js", "file_type": "code", "degree": 2}, {"id": "helper_index_builddoctorparams", "label": "buildDoctorParams()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "buildDoctorParams()", "community": 369, "community_name": "Community 369", "source_file": "helper/index.js", "file_type": "code", "degree": 3}, {"id": "helper_index_queryforclinicsfilter", "label": "QueryForClinicsFilter()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "QueryForClinicsFilter()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_buildclinicparams", "label": "buildClinicParams()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "buildClinicParams()", "community": 29, "community_name": "Community 29", "source_file": "helper/index.js", "file_type": "code", "degree": 2}, {"id": "helper_index_timeago", "label": "timeAgo()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "timeAgo()", "community": 55, "community_name": "Community 55", "source_file": "helper/index.js", "file_type": "code", "degree": 2}, {"id": "helper_index_isuserloggedin", "label": "isUserLoggedIn()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "isUserLoggedIn()", "community": 5, "community_name": "Community 5", "source_file": "helper/index.js", "file_type": "code", "degree": 2}, {"id": "helper_index_converttimestamptopersiandatesimple", "label": "convertTimestampToPersianDateSimple()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "convertTimestampToPersianDateSimple()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_changenumtodefault", "label": "changeNumToDefault()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "changeNumToDefault()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_isvalidirannationalcode", "label": "isValidIranNationalCode()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isValidIranNationalCode()", "community": 7, "community_name": "Community 7", "source_file": "helper/index.js", "file_type": "code", "degree": 1}, {"id": "helper_index_test", "label": "index.test.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.test.js", "community": 359, "community_name": "Community 359", "source_file": "helper/index.test.js", "file_type": "code", "degree": 0}, {"id": "hooks_usecanonicalurl", "label": "useCanonicalUrl.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useCanonicalUrl.js", "community": 116, "community_name": "Community 116", "source_file": "hooks/useCanonicalUrl.js", "file_type": "code", "degree": 2}, {"id": "hooks_usecanonicalurl_usecanonicalurl", "label": "useCanonicalUrl()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useCanonicalUrl()", "community": 116, "community_name": "Community 116", "source_file": "hooks/useCanonicalUrl.js", "file_type": "code", "degree": 2}, {"id": "hooks_usecanonicalurl_usecanonicalurlinjection", "label": "useCanonicalUrlInjection()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useCanonicalUrlInjection()", "community": 116, "community_name": "Community 116", "source_file": "hooks/useCanonicalUrl.js", "file_type": "code", "degree": 2}, {"id": "jsconfig", "label": "jsconfig.json", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "jsconfig.json", "community": 102, "community_name": "Community 102", "source_file": "jsconfig.json", "file_type": "code", "degree": 1}, {"id": "jsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 102, "community_name": "Community 102", "source_file": "jsconfig.json", "file_type": "code", "degree": 2}, {"id": "jsconfig_compileroptions_paths", "label": "paths", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "paths", "community": 102, "community_name": "Community 102", "source_file": "jsconfig.json", "file_type": "code", "degree": 2}, {"id": "jsconfig_paths", "label": "@/*", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@/*", "community": 102, "community_name": "Community 102", "source_file": "jsconfig.json", "file_type": "code", "degree": 1}, {"id": "lib_ability", "label": "ability.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ability.js", "community": 379, "community_name": "Community 379", "source_file": "lib/ability.js", "file_type": "code", "degree": 1}, {"id": "lib_ability_defineabilitiesfor", "label": "defineAbilitiesFor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "defineAbilitiesFor()", "community": 379, "community_name": "Community 379", "source_file": "lib/ability.js", "file_type": "code", "degree": 3}, {"id": "lib_appointmentslots", "label": "appointmentSlots.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "appointmentSlots.js", "community": 117, "community_name": "Community 117", "source_file": "lib/appointmentSlots.js", "file_type": "code", "degree": 3}, {"id": "lib_appointmentslots_adaptslots", "label": "adaptSlots()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "adaptSlots()", "community": 117, "community_name": "Community 117", "source_file": "lib/appointmentSlots.js", "file_type": "code", "degree": 1}, {"id": "lib_appointmentslots_adaptserviceslots", "label": "adaptServiceSlots()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "adaptServiceSlots()", "community": 117, "community_name": "Community 117", "source_file": "lib/appointmentSlots.js", "file_type": "code", "degree": 1}, {"id": "lib_appointmentslots_hasavailable", "label": "hasAvailable()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hasAvailable()", "community": 117, "community_name": "Community 117", "source_file": "lib/appointmentSlots.js", "file_type": "code", "degree": 1}, {"id": "lib_auth", "label": "auth.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.js", "community": 379, "community_name": "Community 379", "source_file": "lib/auth.js", "file_type": "code", "degree": 1}, {"id": "lib_auth_getuser", "label": "getUser()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getUser()", "community": 379, "community_name": "Community 379", "source_file": "lib/auth.js", "file_type": "code", "degree": 3}, {"id": "lib_breadcrumb", "label": "breadcrumb.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "breadcrumb.js", "community": 140, "community_name": "Community 140", "source_file": "lib/breadcrumb.js", "file_type": "code", "degree": 3}, {"id": "lib_breadcrumb_normalizebreadcrumb", "label": "normalizeBreadcrumb()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeBreadcrumb()", "community": 140, "community_name": "Community 140", "source_file": "lib/breadcrumb.js", "file_type": "code", "degree": 3}, {"id": "lib_breadcrumb_absoluteurl", "label": "absoluteUrl()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "absoluteUrl()", "community": 140, "community_name": "Community 140", "source_file": "lib/breadcrumb.js", "file_type": "code", "degree": 2}, {"id": "lib_breadcrumb_buildbreadcrumbjsonld", "label": "buildBreadcrumbJsonLd()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "buildBreadcrumbJsonLd()", "community": 140, "community_name": "Community 140", "source_file": "lib/breadcrumb.js", "file_type": "code", "degree": 4}, {"id": "lib_breadcrumb_test", "label": "breadcrumb.test.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "breadcrumb.test.js", "community": 401, "community_name": "Community 401", "source_file": "lib/breadcrumb.test.js", "file_type": "code", "degree": 0}, {"id": "lib_buildsearchurl", "label": "buildSearchUrl.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildSearchUrl.js", "community": 369, "community_name": "Community 369", "source_file": "lib/buildSearchUrl.js", "file_type": "code", "degree": 1}, {"id": "lib_buildsearchurl_buildsearchurl", "label": "buildSearchUrl()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "buildSearchUrl()", "community": 369, "community_name": "Community 369", "source_file": "lib/buildSearchUrl.js", "file_type": "code", "degree": 2}, {"id": "lib_canonicalstrategy_test", "label": "canonicalStrategy.test.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "canonicalStrategy.test.js", "community": 383, "community_name": "Community 383", "source_file": "lib/canonicalStrategy.test.js", "file_type": "code", "degree": 0}, {"id": "lib_cliniccontact", "label": "clinicContact.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "clinicContact.js", "community": 81, "community_name": "Community 81", "source_file": "lib/clinicContact.js", "file_type": "code", "degree": 7}, {"id": "lib_cliniccontact_getclinicphone", "label": "getClinicPhone()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getClinicPhone()", "community": 81, "community_name": "Community 81", "source_file": "lib/clinicContact.js", "file_type": "code", "degree": 4}, {"id": "lib_cliniccontact_telhref", "label": "telHref()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "telHref()", "community": 81, "community_name": "Community 81", "source_file": "lib/clinicContact.js", "file_type": "code", "degree": 2}, {"id": "lib_cliniccontact_toe164ir", "label": "toE164Ir()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "toE164Ir()", "community": 81, "community_name": "Community 81", "source_file": "lib/clinicContact.js", "file_type": "code", "degree": 2}, {"id": "lib_cliniccontact_getcliniccity", "label": "getClinicCity()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getClinicCity()", "community": 81, "community_name": "Community 81", "source_file": "lib/clinicContact.js", "file_type": "code", "degree": 3}, {"id": "lib_cliniccontact_getclinicstate", "label": "getClinicState()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getClinicState()", "community": 81, "community_name": "Community 81", "source_file": "lib/clinicContact.js", "file_type": "code", "degree": 3}, {"id": "lib_cliniccontact_getclinicaddress", "label": "getClinicAddress()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "getClinicAddress()", "community": 81, "community_name": "Community 81", "source_file": "lib/clinicContact.js", "file_type": "code", "degree": 5}, {"id": "lib_cliniccontact_hascliniccontact", "label": "hasClinicContact()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "hasClinicContact()", "community": 81, "community_name": "Community 81", "source_file": "lib/clinicContact.js", "file_type": "code", "degree": 4}, {"id": "lib_domainhelpers", "label": "domainHelpers.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "domainHelpers.js", "community": 45, "community_name": "Community 45", "source_file": "lib/domainHelpers.js", "file_type": "code", "degree": 6}, {"id": "lib_domainhelpers_finddomainbycityid", "label": "findDomainByCityId()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "findDomainByCityId()", "community": 72, "community_name": "Community 72", "source_file": "lib/domainHelpers.js", "file_type": "code", "degree": 4}, {"id": "lib_domainhelpers_findcitybyid", "label": "findCityById()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "findCityById()", "community": 45, "community_name": "Community 45", "source_file": "lib/domainHelpers.js", "file_type": "code", "degree": 5}, {"id": "lib_domainhelpers_domainscopecityid", "label": "domainScopeCityId()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "domainScopeCityId()", "community": 45, "community_name": "Community 45", "source_file": "lib/domainHelpers.js", "file_type": "code", "degree": 4}, {"id": "lib_domainhelpers_isblogvisibleondomain", "label": "isBlogVisibleOnDomain()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "isBlogVisibleOnDomain()", "community": 45, "community_name": "Community 45", "source_file": "lib/domainHelpers.js", "file_type": "code", "degree": 2}, {"id": "lib_domainhelpers_resolvecitydisplayname", "label": "resolveCityDisplayName()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveCityDisplayName()", "community": 402, "community_name": "Community 402", "source_file": "lib/domainHelpers.js", "file_type": "code", "degree": 6}, {"id": "lib_domainhelpers_extractentitycityid", "label": "extractEntityCityId()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "extractEntityCityId()", "community": 81, "community_name": "Community 81", "source_file": "lib/domainHelpers.js", "file_type": "code", "degree": 7}, {"id": "lib_domainhelpers_test", "label": "domainHelpers.test.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "domainHelpers.test.js", "community": 382, "community_name": "Community 382", "source_file": "lib/domainHelpers.test.js", "file_type": "code", "degree": 2}, {"id": "lib_domainhelpers_test_yasuj", "label": "YASUJ", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "YASUJ", "community": 382, "community_name": "Community 382", "source_file": "lib/domainHelpers.test.js", "file_type": "code", "degree": 1}, {"id": "lib_domainhelpers_test_root", "label": "ROOT", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ROOT", "community": 382, "community_name": "Community 382", "source_file": "lib/domainHelpers.test.js", "file_type": "code", "degree": 1}, {"id": "lib_entityquality", "label": "entityQuality.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "entityQuality.js", "community": 372, "community_name": "Community 372", "source_file": "lib/entityQuality.js", "file_type": "code", "degree": 6}, {"id": "lib_entityquality_placeholder_names", "label": "PLACEHOLDER_NAMES", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PLACEHOLDER_NAMES", "community": 372, "community_name": "Community 372", "source_file": "lib/entityQuality.js", "file_type": "code", "degree": 1}, {"id": "lib_entityquality_hasrealname", "label": "hasRealName()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "hasRealName()", "community": 372, "community_name": "Community 372", "source_file": "lib/entityQuality.js", "file_type": "code", "degree": 3}, {"id": "lib_entityquality_isthindoctor", "label": "isThinDoctor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "isThinDoctor()", "community": 372, "community_name": "Community 372", "source_file": "lib/entityQuality.js", "file_type": "code", "degree": 4}, {"id": "lib_entityquality_isunclaimeddoctor", "label": "isUnclaimedDoctor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "isUnclaimedDoctor()", "community": 372, "community_name": "Community 372", "source_file": "lib/entityQuality.js", "file_type": "code", "degree": 2}, {"id": "lib_entityquality_isnoindexdoctor", "label": "isNoindexDoctor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "isNoindexDoctor()", "community": 372, "community_name": "Community 372", "source_file": "lib/entityQuality.js", "file_type": "code", "degree": 4}, {"id": "lib_entityquality_isthinclinic", "label": "isThinClinic()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "isThinClinic()", "community": 372, "community_name": "Community 372", "source_file": "lib/entityQuality.js", "file_type": "code", "degree": 3}, {"id": "lib_getcanonicalurl", "label": "getCanonicalUrl.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 18.8, "font": {"size": 12, "color": "#ffffff"}, "title": "getCanonicalUrl.js", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 14}, {"id": "lib_getcanonicalurl_static_shared_pages", "label": "STATIC_SHARED_PAGES", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "STATIC_SHARED_PAGES", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 1}, {"id": "lib_getcanonicalurl_canonical_query_keys", "label": "CANONICAL_QUERY_KEYS", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CANONICAL_QUERY_KEYS", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 1}, {"id": "lib_getcanonicalurl_normalizehost", "label": "normalizeHost()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeHost()", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 2}, {"id": "lib_getcanonicalurl_buildcanonicalpath", "label": "buildCanonicalPath()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "buildCanonicalPath()", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 4}, {"id": "lib_getcanonicalurl_buildcanonicalurl", "label": "buildCanonicalUrl()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "buildCanonicalUrl()", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 10}, {"id": "lib_getcanonicalurl_getrequestorigin", "label": "getRequestOrigin()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "getRequestOrigin()", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 8}, {"id": "lib_getcanonicalurl_buildmaincanonicalurl", "label": "buildMainCanonicalUrl()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "buildMainCanonicalUrl()", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 3}, {"id": "lib_getcanonicalurl_listing_paths", "label": "LISTING_PATHS", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LISTING_PATHS", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 1}, {"id": "lib_getcanonicalurl_buildfilteredlistingcanonical", "label": "buildFilteredListingCanonical()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "buildFilteredListingCanonical()", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 3}, {"id": "lib_getcanonicalurl_buildcanonicalquery", "label": "buildCanonicalQuery()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "buildCanonicalQuery()", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 2}, {"id": "lib_getcanonicalurl_getentitycanonical", "label": "getEntityCanonical()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getEntityCanonical()", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 4}, {"id": "lib_getcanonicalurl_getentityorigin", "label": "getEntityOrigin()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "getEntityOrigin()", "community": 81, "community_name": "Community 81", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 8}, {"id": "lib_getcanonicalurl_getblogcanonicalorigin", "label": "getBlogCanonicalOrigin()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "getBlogCanonicalOrigin()", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 5}, {"id": "lib_getcanonicalurl_getcanonicalurl", "label": "getCanonicalUrl()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "getCanonicalUrl()", "community": 72, "community_name": "Community 72", "source_file": "lib/getCanonicalUrl.js", "file_type": "code", "degree": 7}, {"id": "lib_getstateinfo", "label": "getStateInfo.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getStateInfo.js", "community": 29, "community_name": "Community 29", "source_file": "lib/getStateInfo.js", "file_type": "code", "degree": 3}, {"id": "lib_getstateinfo_sitecontextcache", "label": "siteContextCache", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "siteContextCache", "community": 29, "community_name": "Community 29", "source_file": "lib/getStateInfo.js", "file_type": "code", "degree": 1}, {"id": "lib_getstateinfo_fetchsitecontext", "label": "fetchSiteContext()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchSiteContext()", "community": 29, "community_name": "Community 29", "source_file": "lib/getStateInfo.js", "file_type": "code", "degree": 3}, {"id": "lib_getstateinfo_getstateinfo", "label": "getStateInfo()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 28.1, "font": {"size": 12, "color": "#ffffff"}, "title": "getStateInfo()", "community": 29, "community_name": "Community 29", "source_file": "lib/getStateInfo.js", "file_type": "code", "degree": 29}, {"id": "lib_getstateinfo_test", "label": "getStateInfo.test.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getStateInfo.test.js", "community": 339, "community_name": "Community 339", "source_file": "lib/getStateInfo.test.js", "file_type": "code", "degree": 1}, {"id": "lib_getstateinfo_test_hostref", "label": "{ hostRef }", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "{ hostRef }", "community": 339, "community_name": "Community 339", "source_file": "lib/getStateInfo.test.js", "file_type": "code", "degree": 1}, {"id": "lib_getstateinfoclient", "label": "getStateInfoClient.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getStateInfoClient.js", "community": 73, "community_name": "Community 73", "source_file": "lib/getStateInfoClient.js", "file_type": "code", "degree": 1}, {"id": "lib_getstateinfoclient_getstateinfoclient", "label": "getStateInfoClient()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getStateInfoClient()", "community": 73, "community_name": "Community 73", "source_file": "lib/getStateInfoClient.js", "file_type": "code", "degree": 2}, {"id": "lib_lib_test", "label": "lib.test.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "lib.test.js", "community": 360, "community_name": "Community 360", "source_file": "lib/lib.test.js", "file_type": "code", "degree": 0}, {"id": "lib_listingintro", "label": "listingIntro.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "listingIntro.js", "community": 70, "community_name": "Community 70", "source_file": "lib/listingIntro.js", "file_type": "code", "degree": 6}, {"id": "lib_listingintro_hash", "label": "hash()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hash()", "community": 70, "community_name": "Community 70", "source_file": "lib/listingIntro.js", "file_type": "code", "degree": 1}, {"id": "lib_listingintro_pick", "label": "pick()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "pick()", "community": 70, "community_name": "Community 70", "source_file": "lib/listingIntro.js", "file_type": "code", "degree": 3}, {"id": "lib_listingintro_doctor_intros", "label": "DOCTOR_INTROS()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "DOCTOR_INTROS()", "community": 70, "community_name": "Community 70", "source_file": "lib/listingIntro.js", "file_type": "code", "degree": 2}, {"id": "lib_listingintro_clinic_intros", "label": "CLINIC_INTROS()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CLINIC_INTROS()", "community": 70, "community_name": "Community 70", "source_file": "lib/listingIntro.js", "file_type": "code", "degree": 2}, {"id": "lib_listingintro_builddoctorsintro", "label": "buildDoctorsIntro()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "buildDoctorsIntro()", "community": 70, "community_name": "Community 70", "source_file": "lib/listingIntro.js", "file_type": "code", "degree": 4}, {"id": "lib_listingintro_buildclinicsintro", "label": "buildClinicsIntro()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "buildClinicsIntro()", "community": 70, "community_name": "Community 70", "source_file": "lib/listingIntro.js", "file_type": "code", "degree": 4}, {"id": "lib_listingrobots", "label": "listingRobots.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "listingRobots.js", "community": 89, "community_name": "Community 89", "source_file": "lib/listingRobots.js", "file_type": "code", "degree": 4}, {"id": "lib_listingrobots_non_filter_keys", "label": "NON_FILTER_KEYS", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NON_FILTER_KEYS", "community": 89, "community_name": "Community 89", "source_file": "lib/listingRobots.js", "file_type": "code", "degree": 1}, {"id": "lib_listingrobots_isempty", "label": "isEmpty()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isEmpty()", "community": 89, "community_name": "Community 89", "source_file": "lib/listingRobots.js", "file_type": "code", "degree": 1}, {"id": "lib_listingrobots_haslistingfilters", "label": "hasListingFilters()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "hasListingFilters()", "community": 89, "community_name": "Community 89", "source_file": "lib/listingRobots.js", "file_type": "code", "degree": 2}, {"id": "lib_listingrobots_listingrobots", "label": "listingRobots()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "listingRobots()", "community": 89, "community_name": "Community 89", "source_file": "lib/listingRobots.js", "file_type": "code", "degree": 4}, {"id": "lib_listingrobots_test", "label": "listingRobots.test.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "listingRobots.test.js", "community": 378, "community_name": "Community 378", "source_file": "lib/listingRobots.test.js", "file_type": "code", "degree": 1}, {"id": "lib_listingrobots_test_isnoindex", "label": "isNoindex()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isNoindex()", "community": 378, "community_name": "Community 378", "source_file": "lib/listingRobots.test.js", "file_type": "code", "degree": 1}, {"id": "lib_maintenance", "label": "maintenance.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "maintenance.js", "community": 29, "community_name": "Community 29", "source_file": "lib/maintenance.js", "file_type": "code", "degree": 3}, {"id": "lib_maintenance_ismaintenanceerror", "label": "isMaintenanceError()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "isMaintenanceError()", "community": 29, "community_name": "Community 29", "source_file": "lib/maintenance.js", "file_type": "code", "degree": 2}, {"id": "lib_maintenance_maintenancemessage", "label": "maintenanceMessage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "maintenanceMessage()", "community": 29, "community_name": "Community 29", "source_file": "lib/maintenance.js", "file_type": "code", "degree": 1}, {"id": "lib_maintenance_isnextredirecterror", "label": "isNextRedirectError()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "isNextRedirectError()", "community": 29, "community_name": "Community 29", "source_file": "lib/maintenance.js", "file_type": "code", "degree": 4}, {"id": "lib_money", "label": "money.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "money.js", "community": 397, "community_name": "Community 397", "source_file": "lib/money.js", "file_type": "code", "degree": 3}, {"id": "lib_money_rialtotoman", "label": "rialToToman()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "rialToToman()", "community": 397, "community_name": "Community 397", "source_file": "lib/money.js", "file_type": "code", "degree": 3}, {"id": "lib_money_tomantorial", "label": "tomanToRial()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tomanToRial()", "community": 397, "community_name": "Community 397", "source_file": "lib/money.js", "file_type": "code", "degree": 1}, {"id": "lib_money_formattoman", "label": "formatToman()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatToman()", "community": 397, "community_name": "Community 397", "source_file": "lib/money.js", "file_type": "code", "degree": 4}, {"id": "lib_multidomainclient_test", "label": "multiDomainClient.test.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "multiDomainClient.test.js", "community": 340, "community_name": "Community 340", "source_file": "lib/multiDomainClient.test.js", "file_type": "code", "degree": 1}, {"id": "lib_multidomainclient_test_setlocation", "label": "setLocation()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "setLocation()", "community": 340, "community_name": "Community 340", "source_file": "lib/multiDomainClient.test.js", "file_type": "code", "degree": 1}, {"id": "lib_refreshcookie", "label": "refreshCookie.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "refreshCookie.js", "community": 68, "community_name": "Community 68", "source_file": "lib/refreshCookie.js", "file_type": "code", "degree": 3}, {"id": "lib_refreshcookie_cookiedomain", "label": "cookieDomain()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "cookieDomain()", "community": 68, "community_name": "Community 68", "source_file": "lib/refreshCookie.js", "file_type": "code", "degree": 3}, {"id": "lib_refreshcookie_setrefreshcookie", "label": "setRefreshCookie()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "setRefreshCookie()", "community": 68, "community_name": "Community 68", "source_file": "lib/refreshCookie.js", "file_type": "code", "degree": 4}, {"id": "lib_refreshcookie_clearrefreshcookie", "label": "clearRefreshCookie()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "clearRefreshCookie()", "community": 68, "community_name": "Community 68", "source_file": "lib/refreshCookie.js", "file_type": "code", "degree": 4}, {"id": "lib_representationadapters", "label": "representationAdapters.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "representationAdapters.js", "community": 6, "community_name": "Community 6", "source_file": "lib/representationAdapters.js", "file_type": "code", "degree": 1}, {"id": "lib_representationadapters_buildpatientuser", "label": "buildPatientUser()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "buildPatientUser()", "community": 6, "community_name": "Community 6", "source_file": "lib/representationAdapters.js", "file_type": "code", "degree": 2}, {"id": "lib_req", "label": "req.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "req.js", "community": 29, "community_name": "Community 29", "source_file": "lib/req.js", "file_type": "code", "degree": 2}, {"id": "lib_req_axiosinstance", "label": "axiosInstance", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "axiosInstance", "community": 29, "community_name": "Community 29", "source_file": "lib/req.js", "file_type": "code", "degree": 1}, {"id": "lib_req_fetchreq", "label": "fetchReq()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "fetchReq()", "community": 29, "community_name": "Community 29", "source_file": "lib/req.js", "file_type": "code", "degree": 9}, {"id": "lib_rootcity", "label": "rootCity.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "rootCity.js", "community": 402, "community_name": "Community 402", "source_file": "lib/rootCity.js", "file_type": "code", "degree": 1}, {"id": "lib_rootcity_isrootcity", "label": "isRootCity()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "isRootCity()", "community": 402, "community_name": "Community 402", "source_file": "lib/rootCity.js", "file_type": "code", "degree": 9}, {"id": "lib_sanitize", "label": "sanitize.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitize.js", "community": 6, "community_name": "Community 6", "source_file": "lib/sanitize.js", "file_type": "code", "degree": 3}, {"id": "lib_sanitize_sanitizehtml", "label": "sanitizeHtml()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sanitizeHtml()", "community": 4, "community_name": "Community 4", "source_file": "lib/sanitize.js", "file_type": "code", "degree": 3}, {"id": "lib_sanitize_safejsonld", "label": "safeJsonLd()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "safeJsonLd()", "community": 86, "community_name": "Community 86", "source_file": "lib/sanitize.js", "file_type": "code", "degree": 7}, {"id": "lib_sanitize_safejsonparse", "label": "safeJsonParse()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "safeJsonParse()", "community": 6, "community_name": "Community 6", "source_file": "lib/sanitize.js", "file_type": "code", "degree": 2}, {"id": "lib_servertoken", "label": "serverToken.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "serverToken.js", "community": 6, "community_name": "Community 6", "source_file": "lib/serverToken.js", "file_type": "code", "degree": 1}, {"id": "lib_servertoken_getserveraccesstoken", "label": "getServerAccessToken()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getServerAccessToken()", "community": 6, "community_name": "Community 6", "source_file": "lib/serverToken.js", "file_type": "code", "degree": 2}, {"id": "lib_specialtycontent", "label": "specialtyContent.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "specialtyContent.js", "community": 86, "community_name": "Community 86", "source_file": "lib/specialtyContent.js", "file_type": "code", "degree": 8}, {"id": "lib_specialtycontent_hash", "label": "hash()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "hash()", "community": 86, "community_name": "Community 86", "source_file": "lib/specialtyContent.js", "file_type": "code", "degree": 1}, {"id": "lib_specialtycontent_pick", "label": "pick()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "pick()", "community": 86, "community_name": "Community 86", "source_file": "lib/specialtyContent.js", "file_type": "code", "degree": 2}, {"id": "lib_specialtycontent_openingvariants", "label": "openingVariants()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "openingVariants()", "community": 86, "community_name": "Community 86", "source_file": "lib/specialtyContent.js", "file_type": "code", "degree": 2}, {"id": "lib_specialtycontent_bodyvariants", "label": "bodyVariants()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "bodyVariants()", "community": 86, "community_name": "Community 86", "source_file": "lib/specialtyContent.js", "file_type": "code", "degree": 2}, {"id": "lib_specialtycontent_closingvariants", "label": "closingVariants()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "closingVariants()", "community": 86, "community_name": "Community 86", "source_file": "lib/specialtyContent.js", "file_type": "code", "degree": 2}, {"id": "lib_specialtycontent_buildspecialtyintro", "label": "buildSpecialtyIntro()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "buildSpecialtyIntro()", "community": 86, "community_name": "Community 86", "source_file": "lib/specialtyContent.js", "file_type": "code", "degree": 6}, {"id": "lib_specialtycontent_builddoctorfaq", "label": "buildDoctorFaq()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "buildDoctorFaq()", "community": 372, "community_name": "Community 372", "source_file": "lib/specialtyContent.js", "file_type": "code", "degree": 3}, {"id": "lib_specialtycontent_buildspecialtyfaq", "label": "buildSpecialtyFaq()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "buildSpecialtyFaq()", "community": 86, "community_name": "Community 86", "source_file": "lib/specialtyContent.js", "file_type": "code", "degree": 2}, {"id": "lib_specialtycontent_test", "label": "specialtyContent.test.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "specialtyContent.test.js", "community": 381, "community_name": "Community 381", "source_file": "lib/specialtyContent.test.js", "file_type": "code", "degree": 3}, {"id": "lib_specialtycontent_test_words", "label": "words()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "words()", "community": 381, "community_name": "Community 381", "source_file": "lib/specialtyContent.test.js", "file_type": "code", "degree": 1}, {"id": "lib_specialtycontent_test_cities", "label": "CITIES", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CITIES", "community": 381, "community_name": "Community 381", "source_file": "lib/specialtyContent.test.js", "file_type": "code", "degree": 1}, {"id": "lib_specialtycontent_test_specialties", "label": "SPECIALTIES", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SPECIALTIES", "community": 381, "community_name": "Community 381", "source_file": "lib/specialtyContent.test.js", "file_type": "code", "degree": 1}, {"id": "lib_specialtyindexing", "label": "specialtyIndexing.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "specialtyIndexing.js", "community": 86, "community_name": "Community 86", "source_file": "lib/specialtyIndexing.js", "file_type": "code", "degree": 3}, {"id": "lib_specialtyindexing_ids_with_active_children", "label": "IDS_WITH_ACTIVE_CHILDREN", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IDS_WITH_ACTIVE_CHILDREN", "community": 86, "community_name": "Community 86", "source_file": "lib/specialtyIndexing.js", "file_type": "code", "degree": 1}, {"id": "lib_specialtyindexing_iscategoryspecialty", "label": "isCategorySpecialty()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "isCategorySpecialty()", "community": 86, "community_name": "Community 86", "source_file": "lib/specialtyIndexing.js", "file_type": "code", "degree": 3}, {"id": "lib_specialtyindexing_isindexablespecialty", "label": "isIndexableSpecialty()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "isIndexableSpecialty()", "community": 86, "community_name": "Community 86", "source_file": "lib/specialtyIndexing.js", "file_type": "code", "degree": 2}, {"id": "lib_specialtyindexing_test", "label": "specialtyIndexing.test.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "specialtyIndexing.test.js", "community": 396, "community_name": "Community 396", "source_file": "lib/specialtyIndexing.test.js", "file_type": "code", "degree": 1}, {"id": "lib_specialtyindexing_test_byslug", "label": "bySlug()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "bySlug()", "community": 396, "community_name": "Community 396", "source_file": "lib/specialtyIndexing.test.js", "file_type": "code", "degree": 1}, {"id": "lib_tokenstore", "label": "tokenStore.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tokenStore.js", "community": 384, "community_name": "Community 384", "source_file": "lib/tokenStore.js", "file_type": "code", "degree": 3}, {"id": "lib_tokenstore_getaccesstoken", "label": "getAccessToken()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getAccessToken()", "community": 384, "community_name": "Community 384", "source_file": "lib/tokenStore.js", "file_type": "code", "degree": 1}, {"id": "lib_tokenstore_setaccesstoken", "label": "setAccessToken()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "setAccessToken()", "community": 384, "community_name": "Community 384", "source_file": "lib/tokenStore.js", "file_type": "code", "degree": 1}, {"id": "lib_tokenstore_clearaccesstoken", "label": "clearAccessToken()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "clearAccessToken()", "community": 384, "community_name": "Community 384", "source_file": "lib/tokenStore.js", "file_type": "code", "degree": 3}, {"id": "mui_index", "label": "index.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 119, "community_name": "Community 119", "source_file": "mui/index.js", "file_type": "code", "degree": 2}, {"id": "mui_index_styledefault", "label": "styleDefault", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "styleDefault", "community": 119, "community_name": "Community 119", "source_file": "mui/index.js", "file_type": "code", "degree": 1}, {"id": "mui_index_styletextselectright", "label": "styleTextSelectRight", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "styleTextSelectRight", "community": 119, "community_name": "Community 119", "source_file": "mui/index.js", "file_type": "code", "degree": 1}, {"id": "next_config", "label": "next.config.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "next.config.js", "community": 347, "community_name": "Community 347", "source_file": "next.config.js", "file_type": "code", "degree": 1}, {"id": "next_config_nextconfig", "label": "nextConfig", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "nextConfig", "community": 347, "community_name": "Community 347", "source_file": "next.config.js", "file_type": "code", "degree": 1}, {"id": "package", "label": "package.json", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "package.json", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 7}, {"id": "package_name", "label": "name", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_version", "label": "version", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_private", "label": "private", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_engines", "label": "engines", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "engines", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "package_engines_node", "label": "node", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "node", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts", "label": "scripts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "scripts", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 8}, {"id": "package_scripts_dev", "label": "dev", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build", "label": "build", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_start", "label": "start", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "start", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_lint", "label": "lint", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "lint", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_test", "label": "test", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "test", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_test_watch", "label": "test:watch", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "test:watch", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_test_cov", "label": "test:cov", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "test:cov", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies", "label": "dependencies", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 48}, {"id": "package_dependencies_casl_ability", "label": "@casl/ability", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@casl/ability", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_casl_react", "label": "@casl/react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@casl/react", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_emotion_cache", "label": "@emotion/cache", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@emotion/cache", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_emotion_react", "label": "@emotion/react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@emotion/react", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_emotion_styled", "label": "@emotion/styled", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@emotion/styled", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_maptiler_sdk", "label": "@maptiler/sdk", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@maptiler/sdk", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_mui_icons_material", "label": "@mui/icons-material", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@mui/icons-material", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_mui_material", "label": "@mui/material", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@mui/material", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_mui_styled_engine", "label": "@mui/styled-engine", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@mui/styled-engine", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_mui_x_charts", "label": "@mui/x-charts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@mui/x-charts", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_mui_x_date_pickers", "label": "@mui/x-date-pickers", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@mui/x-date-pickers", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_next_third_parties", "label": "@next/third-parties", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@next/third-parties", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_altcha", "label": "altcha", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "altcha", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_aos", "label": "aos", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "aos", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_axios", "label": "axios", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "axios", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_date_fns", "label": "date-fns", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "date-fns", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_dayjs", "label": "dayjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "dayjs", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_html_to_image", "label": "html-to-image", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "html-to-image", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_html2canvas", "label": "html2canvas", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "html2canvas", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_i", "label": "i", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "i", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_isomorphic_dompurify", "label": "isomorphic-dompurify", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isomorphic-dompurify", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_jalaali_js", "label": "jalaali-js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "jalaali-js", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_jalali_moment", "label": "jalali-moment", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "jalali-moment", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_js_cookie", "label": "js-cookie", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "js-cookie", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_jspdf", "label": "jspdf", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "jspdf", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_leaflet", "label": "leaflet", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "leaflet", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_moment_jalaali", "label": "moment-jalaali", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "moment-jalaali", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_next", "label": "next", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "next", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_next_themes", "label": "next-themes", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "next-themes", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_npm", "label": "npm", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "npm", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_postcss", "label": "postcss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "postcss", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_qrcode", "label": "qrcode", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "qrcode", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_qrcode_react", "label": "qrcode.react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "qrcode.react", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_react", "label": "react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_react_dom", "label": "react-dom", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_react_easy_crop", "label": "react-easy-crop", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react-easy-crop", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_react_google_map_picker", "label": "react-google-map-picker", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react-google-map-picker", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_react_images_uploading", "label": "react-images-uploading", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react-images-uploading", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_react_leaflet", "label": "react-leaflet", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react-leaflet", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_react_toastify", "label": "react-toastify", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react-toastify", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_sharp", "label": "sharp", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "sharp", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_styled_components", "label": "styled-components", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "styled-components", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_stylis", "label": "stylis", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "stylis", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_stylis_plugin_rtl", "label": "stylis-plugin-rtl", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "stylis-plugin-rtl", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_swiper", "label": "swiper", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "swiper", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_tailwindcss", "label": "tailwindcss", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwindcss", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_uninstall", "label": "uninstall", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "uninstall", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies", "label": "devDependencies", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 19.4, "font": {"size": 12, "color": "#ffffff"}, "title": "devDependencies", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 15}, {"id": "package_devdependencies_eslint_eslintrc", "label": "@eslint/eslintrc", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@eslint/eslintrc", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_testing_library_dom", "label": "@testing-library/dom", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/dom", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_testing_library_jest_dom", "label": "@testing-library/jest-dom", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/jest-dom", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_testing_library_react", "label": "@testing-library/react", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/react", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_testing_library_user_event", "label": "@testing-library/user-event", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/user-event", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_vitejs_plugin_react", "label": "@vitejs/plugin-react", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitejs/plugin-react", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_babel_plugin_react_compiler", "label": "babel-plugin-react-compiler", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "babel-plugin-react-compiler", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_cross_env", "label": "cross-env", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "cross-env", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_eslint", "label": "eslint", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_eslint_config_next", "label": "eslint-config-next", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-config-next", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_jsdom", "label": "jsdom", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "jsdom", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_prettier", "label": "prettier", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "prettier", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_typescript", "label": "typescript", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_vitest", "label": "vitest", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest", "community": 8, "community_name": "Community 8", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "postcss_config", "label": "postcss.config.mjs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "postcss.config.mjs", "community": 348, "community_name": "Community 348", "source_file": "postcss.config.mjs", "file_type": "code", "degree": 1}, {"id": "postcss_config_config", "label": "config", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "config", "community": 348, "community_name": "Community 348", "source_file": "postcss.config.mjs", "file_type": "code", "degree": 1}, {"id": "proxy", "label": "proxy.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "proxy.js", "community": 121, "community_name": "Community 121", "source_file": "proxy.js", "file_type": "code", "degree": 2}, {"id": "proxy_proxy", "label": "proxy()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "proxy()", "community": 121, "community_name": "Community 121", "source_file": "proxy.js", "file_type": "code", "degree": 1}, {"id": "proxy_config", "label": "config", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "config", "community": 121, "community_name": "Community 121", "source_file": "proxy.js", "file_type": "code", "degree": 1}, {"id": "scripts_make_blog_cover", "label": "make-blog-cover.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "make-blog-cover.mjs", "community": 403, "community_name": "Community 403", "source_file": "scripts/make-blog-cover.mjs", "file_type": "code", "degree": 6}, {"id": "scripts_make_blog_cover_root", "label": "ROOT", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ROOT", "community": 403, "community_name": "Community 403", "source_file": "scripts/make-blog-cover.mjs", "file_type": "code", "degree": 1}, {"id": "scripts_make_blog_cover_out", "label": "OUT", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "OUT", "community": 403, "community_name": "Community 403", "source_file": "scripts/make-blog-cover.mjs", "file_type": "code", "degree": 1}, {"id": "scripts_make_blog_cover_mark", "label": "mark", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "mark", "community": 403, "community_name": "Community 403", "source_file": "scripts/make-blog-cover.mjs", "file_type": "code", "degree": 1}, {"id": "scripts_make_blog_cover_card", "label": "CARD", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CARD", "community": 403, "community_name": "Community 403", "source_file": "scripts/make-blog-cover.mjs", "file_type": "code", "degree": 1}, {"id": "scripts_make_blog_cover_paragraph", "label": "PARAGRAPH", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PARAGRAPH", "community": 403, "community_name": "Community 403", "source_file": "scripts/make-blog-cover.mjs", "file_type": "code", "degree": 1}, {"id": "scripts_make_blog_cover_lines", "label": "lines", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "lines", "community": 403, "community_name": "Community 403", "source_file": "scripts/make-blog-cover.mjs", "file_type": "code", "degree": 1}, {"id": "services_api", "label": "api.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "api.js", "community": 389, "community_name": "Community 389", "source_file": "services/api.js", "file_type": "code", "degree": 5}, {"id": "services_api_extracterrormessage", "label": "extractErrorMessage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "extractErrorMessage()", "community": 389, "community_name": "Community 389", "source_file": "services/api.js", "file_type": "code", "degree": 1}, {"id": "services_api_api", "label": "api", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "api", "community": 389, "community_name": "Community 389", "source_file": "services/api.js", "file_type": "code", "degree": 2}, {"id": "services_api_refreshaccesstoken", "label": "refreshAccessToken()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "refreshAccessToken()", "community": 389, "community_name": "Community 389", "source_file": "services/api.js", "file_type": "code", "degree": 1}, {"id": "services_api_handlesessionexpired", "label": "handleSessionExpired()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "handleSessionExpired()", "community": 384, "community_name": "Community 384", "source_file": "services/api.js", "file_type": "code", "degree": 2}, {"id": "services_clinicapi", "label": "clinicApi.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "clinicApi.js", "community": 29, "community_name": "Community 29", "source_file": "services/clinicApi.js", "file_type": "code", "degree": 1}, {"id": "services_clinicapi_getclinicdoctors", "label": "getClinicDoctors()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "getClinicDoctors()", "community": 29, "community_name": "Community 29", "source_file": "services/clinicApi.js", "file_type": "code", "degree": 2}, {"id": "services_response", "label": "response.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "response.js", "community": 389, "community_name": "Community 389", "source_file": "services/response.js", "file_type": "code", "degree": 4}, {"id": "services_response_clinicquery", "label": "clinicQuery()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "clinicQuery()", "community": 389, "community_name": "Community 389", "source_file": "services/response.js", "file_type": "code", "degree": 1}, {"id": "services_response_request", "label": "request", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "request", "community": 389, "community_name": "Community 389", "source_file": "services/response.js", "file_type": "code", "degree": 1}, {"id": "services_services_test", "label": "services.test.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "services.test.js", "community": 361, "community_name": "Community 361", "source_file": "services/services.test.js", "file_type": "code", "degree": 0}, {"id": "tailwind_config", "label": "tailwind.config.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwind.config.js", "community": 362, "community_name": "Community 362", "source_file": "tailwind.config.js", "file_type": "code", "degree": 0}, {"id": "test_setup", "label": "setup.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "setup.js", "community": 363, "community_name": "Community 363", "source_file": "test/setup.js", "file_type": "code", "degree": 0}, {"id": "test_utils", "label": "utils.jsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "utils.jsx", "community": 357, "community_name": "Community 357", "source_file": "test/utils.jsx", "file_type": "code", "degree": 1}, {"id": "test_utils_renderui", "label": "renderUI()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "renderUI()", "community": 357, "community_name": "Community 357", "source_file": "test/utils.jsx", "file_type": "code", "degree": 1}, {"id": "utils_index", "label": "index.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "index.js", "community": 384, "community_name": "Community 384", "source_file": "utils/index.js", "file_type": "code", "degree": 1}, {"id": "utils_index_removetoken", "label": "removeToken()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "removeToken()", "community": 384, "community_name": "Community 384", "source_file": "utils/index.js", "file_type": "code", "degree": 3}, {"id": "utils_sitemap", "label": "sitemap.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sitemap.js", "community": 3, "community_name": "Community 3", "source_file": "utils/sitemap.js", "file_type": "code", "degree": 3}, {"id": "utils_sitemap_getbaseurl", "label": "getBaseUrl()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "getBaseUrl()", "community": 3, "community_name": "Community 3", "source_file": "utils/sitemap.js", "file_type": "code", "degree": 6}, {"id": "vitest_config", "label": "vitest.config.mjs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.mjs", "community": 364, "community_name": "Community 364", "source_file": "vitest.config.mjs", "file_type": "code", "degree": 0}, {"id": "prompt_adapt_backend_audit_api", "label": "adapt-backend-audit-api.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "adapt-backend-audit-api.md", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "label": "\u062a\u0637\u0628\u06cc\u0642 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc \u0628\u0627 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a API \u0628\u0631\u0646\u0686 `backend-audit`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062a\u0637\u0628\u06cc\u0642 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc \u0628\u0627 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a API \u0628\u0631\u0646\u0686 `backend-audit`", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 7}, {"id": "prompt_adapt_backend_audit_api_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_adapt_backend_audit_api_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_adapt_backend_audit_api_\u062c\u062f\u0648\u0644_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0645\u0631\u062a\u0628\u0637_\u0628\u0627_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "label": "\u062c\u062f\u0648\u0644 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a API \u0645\u0631\u062a\u0628\u0637 \u0628\u0627 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062c\u062f\u0648\u0644 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a API \u0645\u0631\u062a\u0628\u0637 \u0628\u0627 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", "label": "\ud83d\udd34 \u0645\u0634\u06a9\u0644 \u0627\u0635\u0644\u06cc: rotation \u062a\u0648\u06a9\u0646 refresh (`POST /oauth/token/refresh`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd34 \u0645\u0634\u06a9\u0644 \u0627\u0635\u0644\u06cc: rotation \u062a\u0648\u06a9\u0646 refresh (`POST /oauth/token/refresh`)", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 5}, {"id": "prompt_adapt_backend_audit_api_\u0631\u0641\u062a\u0627\u0631_\u062c\u062f\u06cc\u062f_backend", "label": "\u0631\u0641\u062a\u0627\u0631 \u062c\u062f\u06cc\u062f backend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0631\u0641\u062a\u0627\u0631 \u062c\u062f\u06cc\u062f backend", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_adapt_backend_audit_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_nobat724_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_lib_servertoken_js", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc nobat724 (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u2014 `lib/serverToken.js`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc nobat724 (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u2014 `lib/serverToken.js`)", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_adapt_backend_audit_api_\u0686\u0631\u0627_\u0645\u06cc_\u0634\u06a9\u0646\u062f", "label": "\u0686\u0631\u0627 \u0645\u06cc\u200c\u0634\u06a9\u0646\u062f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0686\u0631\u0627 \u0645\u06cc\u200c\u0634\u06a9\u0646\u062f", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u062d\u0644_rotation_\u06cc\u06a9\u06cc_\u0627\u0632_\u062f\u0648_\u0645\u0633\u06cc\u0631_\u0645\u0633\u06cc\u0631_a_\u062a\u0648\u0635\u06cc\u0647_\u0645\u06cc_\u0634\u0648\u062f", "label": "\u0648\u0638\u06cc\u0641\u0647 \u06f1 \u2014 \u062d\u0644 rotation (\u06cc\u06a9\u06cc \u0627\u0632 \u062f\u0648 \u0645\u0633\u06cc\u0631\u061b \u0645\u0633\u06cc\u0631 A \u062a\u0648\u0635\u06cc\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u06cc\u0641\u0647 \u06f1 \u2014 \u062d\u0644 rotation (\u06cc\u06a9\u06cc \u0627\u0632 \u062f\u0648 \u0645\u0633\u06cc\u0631\u061b \u0645\u0633\u06cc\u0631 A \u062a\u0648\u0635\u06cc\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f)", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", "label": "\ud83d\udfe1 \u0648\u0638\u06cc\u0641\u0647 \u06f2 \u2014 \u0635\u0641\u062d\u0647\u200c\u0628\u0646\u062f\u06cc \u0646\u0638\u0631\u0627\u062a (`GET /api/v1/comments/{uuid}`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udfe1 \u0648\u0638\u06cc\u0641\u0647 \u06f2 \u2014 \u0635\u0641\u062d\u0647\u200c\u0628\u0646\u062f\u06cc \u0646\u0638\u0631\u0627\u062a (`GET /api/v1/comments/{uuid}`)", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 4}, {"id": "prompt_adapt_backend_audit_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_app_doctor_slug_page_js", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (`app/doctor/[slug]/page.js`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (`app/doctor/[slug]/page.js`)", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_adapt_backend_audit_api_\u062a\u063a\u06cc\u06cc\u0631", "label": "\u062a\u063a\u06cc\u06cc\u0631", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062a\u063a\u06cc\u06cc\u0631", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647", "label": "\u0648\u0638\u06cc\u0641\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u06cc\u0641\u0647", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_adapt_backend_audit_api_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 35, "community_name": "Community 35", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates", "label": "appointment-calendar-disabled-dates.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "appointment-calendar-disabled-dates.md", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "label": "\u0646\u0645\u0627\u06cc\u0634 \u0631\u0648\u0632\u0647\u0627\u06cc \u062a\u0639\u0637\u06cc\u0644/\u063a\u06cc\u0631\u0642\u0627\u0628\u0644\u200c\u0627\u0646\u062a\u062e\u0627\u0628 \u0631\u0648\u06cc \u062a\u0642\u0648\u06cc\u0645 \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u0648\u0628\u062a + \u0627\u062d\u062a\u0631\u0627\u0645 \u0628\u0647 \u0628\u0627\u0632\u0647\u200c\u06cc \u0631\u0632\u0631\u0648", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0646\u0645\u0627\u06cc\u0634 \u0631\u0648\u0632\u0647\u0627\u06cc \u062a\u0639\u0637\u06cc\u0644/\u063a\u06cc\u0631\u0642\u0627\u0628\u0644\u200c\u0627\u0646\u062a\u062e\u0627\u0628 \u0631\u0648\u06cc \u062a\u0642\u0648\u06cc\u0645 \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u0648\u0628\u062a + \u0627\u062d\u062a\u0631\u0627\u0645 \u0628\u0647 \u0628\u0627\u0632\u0647\u200c\u06cc \u0631\u0632\u0631\u0648", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 9}, {"id": "prompt_appointment_calendar_disabled_dates_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 4}, {"id": "prompt_appointment_calendar_disabled_dates_app_appointment_doctorid_page_js_disableddates_\u062e\u0627\u0644\u06cc", "label": "`app/appointment/[doctorId]/page.js` \u2014 disabledDates \u062e\u0627\u0644\u06cc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/appointment/[doctorId]/page.js` \u2014 disabledDates \u062e\u0627\u0644\u06cc", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_app_component_date_datepicker_index_js_\u0645\u0635\u0631\u0641_disableddates", "label": "`app/component/date/datePicker/index.js` \u2014 \u0645\u0635\u0631\u0641 disabledDates", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/component/date/datePicker/index.js` \u2014 \u0645\u0635\u0631\u0641 disabledDates", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_services_response_js_\u062a\u0648\u0627\u0628\u0639_slot_\u0645\u0648\u062c\u0648\u062f", "label": "`services/response.js` \u2014 \u062a\u0648\u0627\u0628\u0639 slot \u0645\u0648\u062c\u0648\u062f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`services/response.js` \u2014 \u062a\u0648\u0627\u0628\u0639 slot \u0645\u0648\u062c\u0648\u062f", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_endpoint_\u062c\u062f\u06cc\u062f_backend_\u0645\u0631\u062c\u0639", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f endpoint \u062c\u062f\u06cc\u062f backend (\u0645\u0631\u062c\u0639)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f endpoint \u062c\u062f\u06cc\u062f backend (\u0645\u0631\u062c\u0639)", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 5}, {"id": "prompt_appointment_calendar_disabled_dates_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_getmonthavailability_\u0628\u0647_services_response_js", "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 `getMonthAvailability` \u0628\u0647 `services/response.js`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 `getMonthAvailability` \u0628\u0647 `services/response.js`", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_\u06f2_\u0644\u0648\u062f_\u062f\u0627\u062f\u0647_\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u062f\u0631_datepicker_\u0648_disable_\u06a9\u0631\u062f\u0646_\u0631\u0648\u0632\u0647\u0627", "label": "\u06f2. \u0644\u0648\u062f \u062f\u0627\u062f\u0647\u200c\u06cc \u062f\u0631\u200c\u062f\u0633\u062a\u0631\u0633\u200c\u0628\u0648\u062f\u0646 \u062f\u0631 `DatePicker` \u0648 disable\u200c\u06a9\u0631\u062f\u0646 \u0631\u0648\u0632\u0647\u0627", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0644\u0648\u062f \u062f\u0627\u062f\u0647\u200c\u06cc \u062f\u0631\u200c\u062f\u0633\u062a\u0631\u0633\u200c\u0628\u0648\u062f\u0646 \u062f\u0631 `DatePicker` \u0648 disable\u200c\u06a9\u0631\u062f\u0646 \u0631\u0648\u0632\u0647\u0627", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_\u06f3_\u0647\u0646\u062f\u0644_\u0646\u0627\u0648\u0628\u0631\u06cc_\u0645\u0627\u0647", "label": "\u06f3. \u0647\u0646\u062f\u0644 \u0646\u0627\u0648\u0628\u0631\u06cc \u0645\u0627\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0647\u0646\u062f\u0644 \u0646\u0627\u0648\u0628\u0631\u06cc \u0645\u0627\u0647", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_\u06f4_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0648\u0644\u06cc_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u062e\u0627\u0645\u0648\u0634", "label": "\u06f4. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u0648\u0644\u06cc \u062a\u0648\u0635\u06cc\u0647\u200c\u0634\u062f\u0647) \u0646\u0645\u0627\u06cc\u0634 \u0648\u0636\u0639\u06cc\u062a \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u062e\u0627\u0645\u0648\u0634", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u0648\u0644\u06cc \u062a\u0648\u0635\u06cc\u0647\u200c\u0634\u062f\u0647) \u0646\u0645\u0627\u06cc\u0634 \u0648\u0636\u0639\u06cc\u062a \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u062e\u0627\u0645\u0648\u0634", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_calendar_disabled_dates_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 22, "community_name": "Community 22", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_detail_fields_fix", "label": "appointment-detail-fields-fix.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "appointment-detail-fields-fix.md", "community": 57, "community_name": "Community 57", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "label": "\u0627\u0635\u0644\u0627\u062d \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u00ab\u062c\u0632\u0626\u06cc\u0627\u062a \u0646\u0648\u0628\u062a\u00bb \u062f\u0631 \u062f\u0627\u0634\u0628\u0648\u0631\u062f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0627\u0635\u0644\u0627\u062d \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u00ab\u062c\u0632\u0626\u06cc\u0627\u062a \u0646\u0648\u0628\u062a\u00bb \u062f\u0631 \u062f\u0627\u0634\u0628\u0648\u0631\u062f", "community": 57, "community_name": "Community 57", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "file_type": "document", "degree": 8}, {"id": "prompt_appointment_detail_fields_fix_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 57, "community_name": "Community 57", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_detail_fields_fix_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 57, "community_name": "Community 57", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_detail_fields_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 57, "community_name": "Community 57", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_detail_fields_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 57, "community_name": "Community 57", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_detail_fields_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0647\u0631_\u062f\u0648_\u0641\u0627\u06cc\u0644_\u0645\u0634\u0627\u0628\u0647", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u2014 \u0647\u0631 \u062f\u0648 \u0641\u0627\u06cc\u0644 \u0645\u0634\u0627\u0628\u0647)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u2014 \u0647\u0631 \u062f\u0648 \u0641\u0627\u06cc\u0644 \u0645\u0634\u0627\u0628\u0647)", "community": 57, "community_name": "Community 57", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_detail_fields_fix_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 57, "community_name": "Community 57", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "file_type": "document", "degree": 3}, {"id": "prompt_appointment_detail_fields_fix_\u06f1_\u0627\u0635\u0644\u0627\u062d_detaillg_js", "label": "\u06f1. \u0627\u0635\u0644\u0627\u062d `DetailLg.js`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0627\u0635\u0644\u0627\u062d `DetailLg.js`", "community": 57, "community_name": "Community 57", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_detail_fields_fix_\u06f2_\u0627\u0635\u0644\u0627\u062d_detailsm_js", "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d `DetailSm.js`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0627\u0635\u0644\u0627\u062d `DetailSm.js`", "community": 57, "community_name": "Community 57", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_detail_fields_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 57, "community_name": "Community 57", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_required_account_fields", "label": "appointment-required-account-fields.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "appointment-required-account-fields.md", "community": 58, "community_name": "Community 58", "source_file": ".claude/prompt/appointment-required-account-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "label": "\u0627\u062c\u0628\u0627\u0631\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u062f\u0631 \u0635\u0641\u062d\u0647 \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0627\u062c\u0628\u0627\u0631\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u062f\u0631 \u0635\u0641\u062d\u0647 \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc", "community": 58, "community_name": "Community 58", "source_file": ".claude/prompt/appointment-required-account-fields.md", "file_type": "document", "degree": 8}, {"id": "prompt_appointment_required_account_fields_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 58, "community_name": "Community 58", "source_file": ".claude/prompt/appointment-required-account-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_required_account_fields_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 58, "community_name": "Community 58", "source_file": ".claude/prompt/appointment-required-account-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_required_account_fields_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 58, "community_name": "Community 58", "source_file": ".claude/prompt/appointment-required-account-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_required_account_fields_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 58, "community_name": "Community 58", "source_file": ".claude/prompt/appointment-required-account-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_required_account_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 58, "community_name": "Community 58", "source_file": ".claude/prompt/appointment-required-account-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_required_account_fields_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 58, "community_name": "Community 58", "source_file": ".claude/prompt/appointment-required-account-fields.md", "file_type": "document", "degree": 3}, {"id": "prompt_appointment_required_account_fields_\u06f1_\u062a\u0627\u0628\u0639_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0627\u062c\u0628\u0627\u0631\u06cc_\u062f\u0631_submitdata", "label": "\u06f1. \u062a\u0627\u0628\u0639 \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc \u0627\u062c\u0628\u0627\u0631\u06cc \u062f\u0631 `SubmitData`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062a\u0627\u0628\u0639 \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc \u0627\u062c\u0628\u0627\u0631\u06cc \u062f\u0631 `SubmitData`", "community": 58, "community_name": "Community 58", "source_file": ".claude/prompt/appointment-required-account-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_required_account_fields_\u06f2_\u0647\u0645\u0627\u0647\u0646\u06af\u06cc_\u0634\u06a9\u0644_\u062f\u0627\u062f\u0647", "label": "\u06f2. \u0647\u0645\u0627\u0647\u0646\u06af\u06cc \u0634\u06a9\u0644 \u062f\u0627\u062f\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0647\u0645\u0627\u0647\u0646\u06af\u06cc \u0634\u06a9\u0644 \u062f\u0627\u062f\u0647", "community": 58, "community_name": "Community 58", "source_file": ".claude/prompt/appointment-required-account-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_appointment_required_account_fields_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 58, "community_name": "Community 58", "source_file": ".claude/prompt/appointment-required-account-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_birthday_picker_year_month_day", "label": "birthday-picker-year-month-day.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "birthday-picker-year-month-day.md", "community": 59, "community_name": "Community 59", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "file_type": "document", "degree": 1}, {"id": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "label": "\u0627\u0646\u062a\u062e\u0627\u0628 \u062a\u0627\u0631\u06cc\u062e \u062a\u0648\u0644\u062f \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u0645\u0631\u062d\u0644\u0647\u200c\u0627\u06cc: \u0633\u0627\u0644 \u2190 \u0645\u0627\u0647 \u2190 \u0631\u0648\u0632", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0627\u0646\u062a\u062e\u0627\u0628 \u062a\u0627\u0631\u06cc\u062e \u062a\u0648\u0644\u062f \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u0645\u0631\u062d\u0644\u0647\u200c\u0627\u06cc: \u0633\u0627\u0644 \u2190 \u0645\u0627\u0647 \u2190 \u0631\u0648\u0632", "community": 59, "community_name": "Community 59", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "file_type": "document", "degree": 8}, {"id": "prompt_birthday_picker_year_month_day_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 59, "community_name": "Community 59", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "file_type": "document", "degree": 1}, {"id": "prompt_birthday_picker_year_month_day_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 59, "community_name": "Community 59", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "file_type": "document", "degree": 1}, {"id": "prompt_birthday_picker_year_month_day_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 59, "community_name": "Community 59", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "file_type": "document", "degree": 1}, {"id": "prompt_birthday_picker_year_month_day_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 59, "community_name": "Community 59", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "file_type": "document", "degree": 1}, {"id": "prompt_birthday_picker_year_month_day_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 59, "community_name": "Community 59", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "file_type": "document", "degree": 1}, {"id": "prompt_birthday_picker_year_month_day_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 59, "community_name": "Community 59", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "file_type": "document", "degree": 3}, {"id": "prompt_birthday_picker_year_month_day_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0628\u0647_jalalidatepicker", "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062d\u0627\u0644\u062a \u0645\u0631\u062d\u0644\u0647\u200c\u0627\u06cc \u0628\u0647 `JalaliDatePicker`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062d\u0627\u0644\u062a \u0645\u0631\u062d\u0644\u0647\u200c\u0627\u06cc \u0628\u0647 `JalaliDatePicker`", "community": 59, "community_name": "Community 59", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "file_type": "document", "degree": 1}, {"id": "prompt_birthday_picker_year_month_day_\u06f2_\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u0631_datebirthday_js", "label": "\u06f2. \u0641\u0639\u0627\u0644\u200c\u06a9\u0631\u062f\u0646 \u062f\u0631 `DateBirthday.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0641\u0639\u0627\u0644\u200c\u06a9\u0631\u062f\u0646 \u062f\u0631 `DateBirthday.js`", "community": 59, "community_name": "Community 59", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "file_type": "document", "degree": 1}, {"id": "prompt_birthday_picker_year_month_day_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 59, "community_name": "Community 59", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_city_scoping_activate", "label": "blog-city-scoping-activate.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "blog-city-scoping-activate.md", "community": 386, "community_name": "Community 386", "source_file": ".claude/prompt/blog-city-scoping-activate.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_city_scoping_activate_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0628\u0644\u0627\u06af_\u0634\u0647\u0631_\u0645\u062d\u0648\u0631_\u0628\u0639\u062f_\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u0634\u0647\u0631_\u062f\u0631_backend", "label": "\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0628\u0644\u0627\u06af \u0634\u0647\u0631-\u0645\u062d\u0648\u0631 (\u0628\u0639\u062f \u0627\u0632 \u0627\u0641\u0632\u0648\u062f\u0646 \u0634\u0647\u0631 \u062f\u0631 backend)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0628\u0644\u0627\u06af \u0634\u0647\u0631-\u0645\u062d\u0648\u0631 (\u0628\u0639\u062f \u0627\u0632 \u0627\u0641\u0632\u0648\u062f\u0646 \u0634\u0647\u0631 \u062f\u0631 backend)", "community": 386, "community_name": "Community 386", "source_file": ".claude/prompt/blog-city-scoping-activate.md", "file_type": "document", "degree": 6}, {"id": "prompt_blog_city_scoping_activate_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 386, "community_name": "Community 386", "source_file": ".claude/prompt/blog-city-scoping-activate.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_city_scoping_activate_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 386, "community_name": "Community 386", "source_file": ".claude/prompt/blog-city-scoping-activate.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_city_scoping_activate_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f\u06cc_\u06a9\u0647_\u0622\u0645\u0627\u062f\u0647_\u0641\u0639\u0627\u0644_\u0634\u062f\u0646_\u0627\u0633\u062a", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f\u06cc \u06a9\u0647 \u0622\u0645\u0627\u062f\u0647\u0654 \u0641\u0639\u0627\u0644\u200c\u0634\u062f\u0646 \u0627\u0633\u062a)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f\u06cc \u06a9\u0647 \u0622\u0645\u0627\u062f\u0647\u0654 \u0641\u0639\u0627\u0644\u200c\u0634\u062f\u0646 \u0627\u0633\u062a)", "community": 386, "community_name": "Community 386", "source_file": ".claude/prompt/blog-city-scoping-activate.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_city_scoping_activate_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 386, "community_name": "Community 386", "source_file": ".claude/prompt/blog-city-scoping-activate.md", "file_type": "document", "degree": 5}, {"id": "prompt_blog_city_scoping_activate_\u06f1_\u062a\u0623\u06cc\u06cc\u062f_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0634\u06a9\u0644_\u067e\u0627\u0633\u062e", "label": "\u06f1. \u062a\u0623\u06cc\u06cc\u062f \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0634\u06a9\u0644 \u067e\u0627\u0633\u062e", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062a\u0623\u06cc\u06cc\u062f \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0634\u06a9\u0644 \u067e\u0627\u0633\u062e", "community": 386, "community_name": "Community 386", "source_file": ".claude/prompt/blog-city-scoping-activate.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_city_scoping_activate_\u06f2_\u0644\u06cc\u0633\u062a_\u0628\u0644\u0627\u06af_per_domain", "label": "\u06f2. \u0644\u06cc\u0633\u062a \u0628\u0644\u0627\u06af per-domain", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0644\u06cc\u0633\u062a \u0628\u0644\u0627\u06af per-domain", "community": 386, "community_name": "Community 386", "source_file": ".claude/prompt/blog-city-scoping-activate.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_city_scoping_activate_\u06f3_\u0639\u0646\u0648\u0627\u0646_\u0648_\u0645\u062a\u0627\u062f\u06cc\u062a\u0627\u06cc_\u0634\u0647\u0631\u0645\u062d\u0648\u0631", "label": "\u06f3. \u0639\u0646\u0648\u0627\u0646 \u0648 \u0645\u062a\u0627\u062f\u06cc\u062a\u0627\u06cc \u0634\u0647\u0631\u0645\u062d\u0648\u0631", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0639\u0646\u0648\u0627\u0646 \u0648 \u0645\u062a\u0627\u062f\u06cc\u062a\u0627\u06cc \u0634\u0647\u0631\u0645\u062d\u0648\u0631", "community": 386, "community_name": "Community 386", "source_file": ".claude/prompt/blog-city-scoping-activate.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_city_scoping_activate_\u06f4_\u062a\u0633\u062a", "label": "\u06f4. \u062a\u0633\u062a", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u062a\u0633\u062a", "community": 386, "community_name": "Community 386", "source_file": ".claude/prompt/blog-city-scoping-activate.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_city_scoping_activate_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 386, "community_name": "Community 386", "source_file": ".claude/prompt/blog-city-scoping-activate.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover", "label": "blog-frontend-sync-and-default-cover.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "blog-frontend-sync-and-default-cover.md", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u0633\u06cc\u0646\u06a9_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0628\u0644\u0627\u06af_\u0628\u0627_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0628\u0631\u0646\u062f_\u0628\u0627\u0637\u0644_\u0633\u0627\u0632\u06cc_\u06a9\u0634", "label": "\u0633\u06cc\u0646\u06a9 \u06a9\u0627\u0645\u0644 \u0635\u0641\u062d\u0647\u0654 \u0628\u0644\u0627\u06af \u0628\u0627 \u0628\u06a9\u200c\u0627\u0646\u062f + \u062a\u0635\u0648\u06cc\u0631 \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0628\u0631\u0646\u062f + \u0628\u0627\u0637\u0644\u200c\u0633\u0627\u0632\u06cc \u06a9\u0634", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0633\u06cc\u0646\u06a9 \u06a9\u0627\u0645\u0644 \u0635\u0641\u062d\u0647\u0654 \u0628\u0644\u0627\u06af \u0628\u0627 \u0628\u06a9\u200c\u0627\u0646\u062f + \u062a\u0635\u0648\u06cc\u0631 \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0628\u0631\u0646\u062f + \u0628\u0627\u0637\u0644\u200c\u0633\u0627\u0632\u06cc \u06a9\u0634", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 9}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 5}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u06f1_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u0631\u0646\u062f\u0631_\u0646\u0645\u06cc_\u0634\u0648\u0646\u062f", "label": "\u0645\u0634\u06a9\u0644 \u06f1 \u2014 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0631\u0646\u062f\u0631 \u0646\u0645\u06cc\u200c\u0634\u0648\u0646\u062f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 \u06f1 \u2014 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0631\u0646\u062f\u0631 \u0646\u0645\u06cc\u200c\u0634\u0648\u0646\u062f", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u06f2_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636", "label": "\u0645\u0634\u06a9\u0644 \u06f2 \u2014 \u062a\u0635\u0648\u06cc\u0631 \u067e\u06cc\u0634\u200c\u0641\u0631\u0636", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 \u06f2 \u2014 \u062a\u0635\u0648\u06cc\u0631 \u067e\u06cc\u0634\u200c\u0641\u0631\u0636", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u06f3_\u062a\u0623\u062e\u06cc\u0631_\u062a\u0627_\u06cc\u06a9_\u0633\u0627\u0639\u062a_\u062f\u0631_\u0646\u0645\u0627\u06cc\u0634_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_\u0627\u062f\u0645\u06cc\u0646", "label": "\u0645\u0634\u06a9\u0644 \u06f3 \u2014 \u062a\u0623\u062e\u06cc\u0631 \u062a\u0627 \u06cc\u06a9 \u0633\u0627\u0639\u062a \u062f\u0631 \u0646\u0645\u0627\u06cc\u0634 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0627\u062f\u0645\u06cc\u0646", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 \u06f3 \u2014 \u062a\u0623\u062e\u06cc\u0631 \u062a\u0627 \u06cc\u06a9 \u0633\u0627\u0639\u062a \u062f\u0631 \u0646\u0645\u0627\u06cc\u0634 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0627\u062f\u0645\u06cc\u0646", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u06f4_\u0627\u0633\u062a\u0627\u06cc\u0644_\u0645\u062d\u062a\u0648\u0627\u06cc_ckeditor_\u062d\u0630\u0641_\u0645\u06cc_\u0634\u0648\u062f", "label": "\u0645\u0634\u06a9\u0644 \u06f4 \u2014 \u0627\u0633\u062a\u0627\u06cc\u0644 \u0645\u062d\u062a\u0648\u0627\u06cc CKEditor \u062d\u0630\u0641 \u0645\u06cc\u200c\u0634\u0648\u062f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 \u06f4 \u2014 \u0627\u0633\u062a\u0627\u06cc\u0644 \u0645\u062d\u062a\u0648\u0627\u06cc CKEditor \u062d\u0630\u0641 \u0645\u06cc\u200c\u0634\u0648\u062f", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0639\u06cc\u0627\u0631_\u067e\u0630\u06cc\u0631\u0634", "label": "\u0645\u0639\u06cc\u0627\u0631 \u067e\u0630\u06cc\u0631\u0634", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0639\u06cc\u0627\u0631 \u067e\u0630\u06cc\u0631\u0634", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 6}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u06f1_\u0633\u0627\u062e\u062a_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0628\u0631\u0646\u062f\u062f\u0627\u0631", "label": "\u06f1. \u0633\u0627\u062e\u062a \u062a\u0635\u0648\u06cc\u0631 \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0628\u0631\u0646\u062f\u062f\u0627\u0631", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0633\u0627\u062e\u062a \u062a\u0635\u0648\u06cc\u0631 \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0628\u0631\u0646\u062f\u062f\u0627\u0631", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u06f2_\u06cc\u06a9_\u0645\u0646\u0628\u0639_\u0648\u0627\u062d\u062f_\u0628\u0631\u0627\u06cc_fallback_\u062a\u0635\u0648\u06cc\u0631_\u0628\u0644\u0627\u06af", "label": "\u06f2. \u06cc\u06a9 \u0645\u0646\u0628\u0639 \u0648\u0627\u062d\u062f \u0628\u0631\u0627\u06cc fallback \u062a\u0635\u0648\u06cc\u0631 \u0628\u0644\u0627\u06af", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u06cc\u06a9 \u0645\u0646\u0628\u0639 \u0648\u0627\u062d\u062f \u0628\u0631\u0627\u06cc fallback \u062a\u0635\u0648\u06cc\u0631 \u0628\u0644\u0627\u06af", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u06f3_\u0631\u0646\u062f\u0631_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u06af\u0645_\u0634\u062f\u0647", "label": "\u06f3. \u0631\u0646\u062f\u0631 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u06af\u0645\u200c\u0634\u062f\u0647", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0631\u0646\u062f\u0631 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u06af\u0645\u200c\u0634\u062f\u0647", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u06f4_\u0627\u0633\u062a\u0627\u06cc\u0644_\u0645\u062d\u062a\u0648\u0627\u06cc_\u0645\u0642\u0627\u0644\u0647_sanitizer", "label": "\u06f4. \u0627\u0633\u062a\u0627\u06cc\u0644 \u0645\u062d\u062a\u0648\u0627\u06cc \u0645\u0642\u0627\u0644\u0647 + sanitizer", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0627\u0633\u062a\u0627\u06cc\u0644 \u0645\u062d\u062a\u0648\u0627\u06cc \u0645\u0642\u0627\u0644\u0647 + sanitizer", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u06f5_webhook_\u0628\u0627\u0637\u0644_\u0633\u0627\u0632\u06cc_\u06a9\u0634_\u0645\u0635\u0631\u0641_\u06a9\u0646\u0646\u062f\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06a9_\u0627\u0646\u062f", "label": "\u06f5. Webhook \u0628\u0627\u0637\u0644\u200c\u0633\u0627\u0632\u06cc \u06a9\u0634 (\u0645\u0635\u0631\u0641\u200c\u06a9\u0646\u0646\u062f\u0647\u0654 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0628\u06a9\u200c\u0627\u0646\u062f)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. Webhook \u0628\u0627\u0637\u0644\u200c\u0633\u0627\u0632\u06cc \u06a9\u0634 (\u0645\u0635\u0631\u0641\u200c\u06a9\u0646\u0646\u062f\u0647\u0654 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0628\u06a9\u200c\u0627\u0646\u062f)", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_blog_frontend_sync_and_default_cover_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 354, "community_name": "Community 354", "source_file": ".claude/prompt/blog-frontend-sync-and-default-cover.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware", "label": "booking-locations-day-aware.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "booking-locations-day-aware.md", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u0646\u0645\u0627\u06cc\u0634_\u0645\u062d\u0644_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0645\u0627\u0646_\u0631\u0648\u0632", "label": "\u0646\u0645\u0627\u06cc\u0634 \u0645\u062d\u0644\u200c\u0647\u0627\u06cc \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u0641\u0642\u0637 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0628\u0631\u0646\u0627\u0645\u0647\u0654 \u0647\u0645\u0627\u0646 \u0631\u0648\u0632", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0646\u0645\u0627\u06cc\u0634 \u0645\u062d\u0644\u200c\u0647\u0627\u06cc \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u0641\u0642\u0637 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0628\u0631\u0646\u0627\u0645\u0647\u0654 \u0647\u0645\u0627\u0646 \u0631\u0648\u0632", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 9}, {"id": "prompt_booking_locations_day_aware_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_api_\u0628\u0639\u062f_\u0627\u0632_\u062a\u063a\u06cc\u06cc\u0631_backend", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f API \u0628\u0639\u062f \u0627\u0632 \u062a\u063a\u06cc\u06cc\u0631 backend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f API \u0628\u0639\u062f \u0627\u0632 \u062a\u063a\u06cc\u06cc\u0631 backend", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 3}, {"id": "prompt_booking_locations_day_aware_\u0641\u0647\u0631\u0633\u062a_\u0645\u062d\u0644_\u0647\u0627_\u0648\u0627\u0628\u0633\u062a\u0647_\u0628\u0647_\u0631\u0648\u0632_\u0646\u06cc\u0633\u062a", "label": "\u0641\u0647\u0631\u0633\u062a \u0645\u062d\u0644\u200c\u0647\u0627 \u0648\u0627\u0628\u0633\u062a\u0647 \u0628\u0647 \u0631\u0648\u0632 \u0646\u06cc\u0633\u062a", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0647\u0631\u0633\u062a \u0645\u062d\u0644\u200c\u0647\u0627 \u0648\u0627\u0628\u0633\u062a\u0647 \u0628\u0647 \u0631\u0648\u0632 \u0646\u06cc\u0633\u062a", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0647\u0645\u0647_\u0622\u062f\u0631\u0633_\u0647\u0627_\u0631\u0627_\u0646\u0634\u0627\u0646_\u0645\u06cc_\u062f\u0647\u062f", "label": "\u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u067e\u0632\u0634\u06a9 \u0647\u0645\u0647\u0654 \u0622\u062f\u0631\u0633\u200c\u0647\u0627 \u0631\u0627 \u0646\u0634\u0627\u0646 \u0645\u06cc\u200c\u062f\u0647\u062f", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u067e\u0632\u0634\u06a9 \u0647\u0645\u0647\u0654 \u0622\u062f\u0631\u0633\u200c\u0647\u0627 \u0631\u0627 \u0646\u0634\u0627\u0646 \u0645\u06cc\u200c\u062f\u0647\u062f", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 7}, {"id": "prompt_booking_locations_day_aware_\u06f1_date_\u062f\u0631_\u0644\u0627\u06cc\u0647_\u0633\u0631\u0648\u06cc\u0633", "label": "\u06f1. `date` \u062f\u0631 \u0644\u0627\u06cc\u0647\u0654 \u0633\u0631\u0648\u06cc\u0633", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. `date` \u062f\u0631 \u0644\u0627\u06cc\u0647\u0654 \u0633\u0631\u0648\u06cc\u0633", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u06f2_\u0648\u0627\u06a9\u0634\u06cc_\u062f\u0648\u0628\u0627\u0631\u0647_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631_\u0631\u0648\u0632", "label": "\u06f2. \u0648\u0627\u06a9\u0634\u06cc \u062f\u0648\u0628\u0627\u0631\u0647 \u0628\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u0631\u0648\u0632", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0648\u0627\u06a9\u0634\u06cc \u062f\u0648\u0628\u0627\u0631\u0647 \u0628\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u0631\u0648\u0632", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u06f3_ui_\u06a9\u0627\u0631\u062a_\u0647\u0627\u06cc_\u0645\u062d\u0644", "label": "\u06f3. UI \u06a9\u0627\u0631\u062a\u200c\u0647\u0627\u06cc \u0645\u062d\u0644", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. UI \u06a9\u0627\u0631\u062a\u200c\u0647\u0627\u06cc \u0645\u062d\u0644", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u06f4_\u062a\u0642\u0648\u06cc\u0645_\u0645\u0627\u0647_\u0647\u0645_per_location_\u0627\u0633\u062a", "label": "\u06f4. \u062a\u0642\u0648\u06cc\u0645 \u0645\u0627\u0647 \u0647\u0645 per-location \u0627\u0633\u062a", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u062a\u0642\u0648\u06cc\u0645 \u0645\u0627\u0647 \u0647\u0645 per-location \u0627\u0633\u062a", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u06f5_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0641\u0642\u0637_\u0645\u062d\u0644_\u0647\u0627\u06cc_\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648", "label": "\u06f5. \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u067e\u0632\u0634\u06a9 \u2014 \u0641\u0642\u0637 \u0645\u062d\u0644\u200c\u0647\u0627\u06cc \u0642\u0627\u0628\u0644 \u0631\u0632\u0631\u0648", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u067e\u0632\u0634\u06a9 \u2014 \u0641\u0642\u0637 \u0645\u062d\u0644\u200c\u0647\u0627\u06cc \u0642\u0627\u0628\u0644 \u0631\u0632\u0631\u0648", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u06f6_\u0644\u06cc\u0646\u06a9_cta", "label": "\u06f6. \u0644\u06cc\u0646\u06a9 CTA", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. \u0644\u06cc\u0646\u06a9 CTA", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_day_aware_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 99, "community_name": "Community 99", "source_file": ".claude/prompt/booking-locations-day-aware.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context", "label": "booking-locations-multi-context.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "booking-locations-multi-context.md", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_\u062c\u0631\u06cc\u0627\u0646_\u0631\u0632\u0631\u0648", "label": "\u0627\u0646\u062a\u062e\u0627\u0628 \u0645\u062d\u0644 \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc (\u0645\u0637\u0628 \u0634\u062e\u0635\u06cc / \u06a9\u0644\u06cc\u0646\u06cc\u06a9) \u062f\u0631 \u062c\u0631\u06cc\u0627\u0646 \u0631\u0632\u0631\u0648", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0627\u0646\u062a\u062e\u0627\u0628 \u0645\u062d\u0644 \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc (\u0645\u0637\u0628 \u0634\u062e\u0635\u06cc / \u06a9\u0644\u06cc\u0646\u06cc\u06a9) \u062f\u0631 \u062c\u0631\u06cc\u0627\u0646 \u0631\u0632\u0631\u0648", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 9}, {"id": "prompt_booking_locations_multi_context_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_api_\u0622\u0645\u0627\u062f\u0647_\u0645\u0635\u0631\u0641", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f API (\u0622\u0645\u0627\u062f\u0647\u0654 \u0645\u0635\u0631\u0641)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f API (\u0622\u0645\u0627\u062f\u0647\u0654 \u0645\u0635\u0631\u0641)", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 3}, {"id": "prompt_booking_locations_multi_context_endpoint_\u062c\u062f\u06cc\u062f", "label": "endpoint \u062c\u062f\u06cc\u062f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "endpoint \u062c\u062f\u06cc\u062f", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u067e\u0627\u0631\u0627\u0645\u062a\u0631_\u062c\u062f\u06cc\u062f_\u0631\u0648\u06cc_endpoint\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f", "label": "\u067e\u0627\u0631\u0627\u0645\u062a\u0631 \u062c\u062f\u06cc\u062f \u0631\u0648\u06cc endpoint\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0627\u0631\u0627\u0645\u062a\u0631 \u062c\u062f\u06cc\u062f \u0631\u0648\u06cc endpoint\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 6}, {"id": "prompt_booking_locations_multi_context_\u06f1_\u0647\u06cc\u0686_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u0627\u06cc_\u0645\u062d\u0644_\u0631\u0627_\u0646\u0645\u06cc_\u0641\u0631\u0633\u062a\u062f", "label": "\u06f1. \u0647\u06cc\u0686 \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc\u200c\u0627\u06cc \u0645\u062d\u0644 \u0631\u0627 \u0646\u0645\u06cc\u200c\u0641\u0631\u0633\u062a\u062f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0647\u06cc\u0686 \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc\u200c\u0627\u06cc \u0645\u062d\u0644 \u0631\u0627 \u0646\u0645\u06cc\u200c\u0641\u0631\u0633\u062a\u062f", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u06f2_\u0622\u062f\u0631\u0633_\u0641\u0642\u0637_\u0646\u0645\u0627\u06cc\u0634\u06cc_\u0627\u0633\u062a_\u0648_\u0627\u0632_doctor_address_\u0645\u06cc_\u0622\u06cc\u062f", "label": "\u06f2. \u0622\u062f\u0631\u0633 \u0641\u0642\u0637 \u0646\u0645\u0627\u06cc\u0634\u06cc \u0627\u0633\u062a \u0648 \u0627\u0632 `doctor.address` \u0645\u06cc\u200c\u0622\u06cc\u062f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0622\u062f\u0631\u0633 \u0641\u0642\u0637 \u0646\u0645\u0627\u06cc\u0634\u06cc \u0627\u0633\u062a \u0648 \u0627\u0632 `doctor.address` \u0645\u06cc\u200c\u0622\u06cc\u062f", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u06f3_payload_\u0646\u0647\u0627\u06cc\u06cc", "label": "\u06f3. payload \u0646\u0647\u0627\u06cc\u06cc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. payload \u0646\u0647\u0627\u06cc\u06cc", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u06f4_state_\u0645\u0631\u062f\u0647", "label": "\u06f4. state \u0645\u0631\u062f\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. state \u0645\u0631\u062f\u0647", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u06f5_json_ld_\u0628\u062f\u0648\u0646_\u0633\u0627\u0639\u0627\u062a_\u06a9\u0627\u0631\u06cc", "label": "\u06f5. JSON-LD \u0628\u062f\u0648\u0646 \u0633\u0627\u0639\u0627\u062a \u06a9\u0627\u0631\u06cc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. JSON-LD \u0628\u062f\u0648\u0646 \u0633\u0627\u0639\u0627\u062a \u06a9\u0627\u0631\u06cc", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 8}, {"id": "prompt_booking_locations_multi_context_\u06f1_\u0644\u0627\u06cc\u0647_\u0633\u0631\u0648\u06cc\u0633_services_response_js", "label": "\u06f1. \u0644\u0627\u06cc\u0647\u0654 \u0633\u0631\u0648\u06cc\u0633 \u2014 `services/response.js`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0644\u0627\u06cc\u0647\u0654 \u0633\u0631\u0648\u06cc\u0633 \u2014 `services/response.js`", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u06f2_state_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644_components_appointment_index_js", "label": "\u06f2. state \u0627\u0646\u062a\u062e\u0627\u0628 \u0645\u062d\u0644 \u2014 `components/appointment/index.js`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. state \u0627\u0646\u062a\u062e\u0627\u0628 \u0645\u062d\u0644 \u2014 `components/appointment/index.js`", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u06f3_\u062a\u0639\u0648\u06cc\u0636_\u0645\u062d\u0644_\u0628\u0627\u06cc\u062f_state_\u0648\u0627\u0628\u0633\u062a\u0647_\u0631\u0627_\u067e\u0627\u06a9_\u06a9\u0646\u062f", "label": "\u06f3. \u062a\u0639\u0648\u06cc\u0636 \u0645\u062d\u0644 \u0628\u0627\u06cc\u062f state \u0648\u0627\u0628\u0633\u062a\u0647 \u0631\u0627 \u067e\u0627\u06a9 \u06a9\u0646\u062f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u0639\u0648\u06cc\u0636 \u0645\u062d\u0644 \u0628\u0627\u06cc\u062f state \u0648\u0627\u0628\u0633\u062a\u0647 \u0631\u0627 \u067e\u0627\u06a9 \u06a9\u0646\u062f", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u06f4_ui_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644", "label": "\u06f4. UI \u0627\u0646\u062a\u062e\u0627\u0628 \u0645\u062d\u0644", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. UI \u0627\u0646\u062a\u062e\u0627\u0628 \u0645\u062d\u0644", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u06f5_\u062d\u0645\u0644_\u0645\u062d\u0644_\u062a\u0627_\u0644\u062d\u0638\u0647_\u062b\u0628\u062a", "label": "\u06f5. \u062d\u0645\u0644 \u0645\u062d\u0644 \u062a\u0627 \u0644\u062d\u0638\u0647\u0654 \u062b\u0628\u062a", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u062d\u0645\u0644 \u0645\u062d\u0644 \u062a\u0627 \u0644\u062d\u0638\u0647\u0654 \u062b\u0628\u062a", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u06f6_\u0644\u06cc\u0646\u06a9_\u067e\u0630\u06cc\u0631\u06cc_\u0648_seo", "label": "\u06f6. \u0644\u06cc\u0646\u06a9\u200c\u067e\u0630\u06cc\u0631\u06cc \u0648 SEO", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. \u0644\u06cc\u0646\u06a9\u200c\u067e\u0630\u06cc\u0631\u06cc \u0648 SEO", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u06f7_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0648_\u062d\u0627\u0644\u062a_\u0647\u0627\u06cc_\u0645\u0631\u0632\u06cc", "label": "\u06f7. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0648 \u062d\u0627\u0644\u062a\u200c\u0647\u0627\u06cc \u0645\u0631\u0632\u06cc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f7. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0648 \u062d\u0627\u0644\u062a\u200c\u0647\u0627\u06cc \u0645\u0631\u0632\u06cc", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_locations_multi_context_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 365, "community_name": "Community 365", "source_file": ".claude/prompt/booking-locations-multi-context.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow", "label": "booking-lock-patient-flow.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "booking-lock-patient-flow.md", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "label": "\u0641\u0644\u0648\u06cc \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc: \u0642\u0641\u0644 \u0648\u0627\u0642\u0639\u06cc \u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647\u200c\u0627\u06cc\u060c \u0641\u0631\u0645 \u00ab\u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u0634\u062e\u0635 \u062f\u06cc\u06af\u0631\u00bb\u060c \u0648 UX \u0648\u0636\u0639\u06cc\u062a\u200c\u0645\u062d\u0648\u0631", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0641\u0644\u0648\u06cc \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc: \u0642\u0641\u0644 \u0648\u0627\u0642\u0639\u06cc \u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647\u200c\u0627\u06cc\u060c \u0641\u0631\u0645 \u00ab\u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u0634\u062e\u0635 \u062f\u06cc\u06af\u0631\u00bb\u060c \u0648 UX \u0648\u0636\u0639\u06cc\u062a\u200c\u0645\u062d\u0648\u0631", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 9}, {"id": "prompt_booking_lock_patient_flow_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 4}, {"id": "prompt_booking_lock_patient_flow_detail_index_js_\u062f\u06a9\u0645\u0647_\u06cc_mock_\u0628\u0631\u0627\u06cc_\u0641\u0631\u062f_\u062f\u06cc\u06af\u0631", "label": "`detail/index.js` \u2014 \u062f\u06a9\u0645\u0647\u200c\u06cc mock \u00ab\u0628\u0631\u0627\u06cc \u0641\u0631\u062f \u062f\u06cc\u06af\u0631\u00bb", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`detail/index.js` \u2014 \u062f\u06a9\u0645\u0647\u200c\u06cc mock \u00ab\u0628\u0631\u0627\u06cc \u0641\u0631\u062f \u062f\u06cc\u06af\u0631\u00bb", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_submitdata_js_\u0628\u062f\u0646\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0628\u062f\u0648\u0646_\u0628\u06cc\u0645\u0627\u0631", "label": "`SubmitData.js` \u2014 \u0628\u062f\u0646\u0647\u200c\u06cc \u0646\u0648\u0628\u062a \u0628\u062f\u0648\u0646 \u0628\u06cc\u0645\u0627\u0631", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`SubmitData.js` \u2014 \u0628\u062f\u0646\u0647\u200c\u06cc \u0646\u0648\u0628\u062a \u0628\u062f\u0648\u0646 \u0628\u06cc\u0645\u0627\u0631", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_paying_index_js_\u062a\u0627\u06cc\u0645\u0631_\u0645\u062d\u0644\u06cc_\u06f6\u06f0\u06f0_\u062b\u0627\u0646\u06cc\u0647_\u0642\u0644\u0627\u0628\u06cc", "label": "`paying/index.js` \u2014 \u062a\u0627\u06cc\u0645\u0631 \u0645\u062d\u0644\u06cc \u06f6\u06f0\u06f0 \u062b\u0627\u0646\u06cc\u0647 (\u0642\u0644\u0627\u0628\u06cc)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`paying/index.js` \u2014 \u062a\u0627\u06cc\u0645\u0631 \u0645\u062d\u0644\u06cc \u06f6\u06f0\u06f0 \u062b\u0627\u0646\u06cc\u0647 (\u0642\u0644\u0627\u0628\u06cc)", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_backend_\u0628\u0639\u062f_\u0627\u0632_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0645\u062a\u0627", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f backend (\u0628\u0639\u062f \u0627\u0632 \u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0627\u0645\u067e\u062a \u0647\u0645\u062a\u0627)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f backend (\u0628\u0639\u062f \u0627\u0632 \u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0627\u0645\u067e\u062a \u0647\u0645\u062a\u0627)", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 5}, {"id": "prompt_booking_lock_patient_flow_\u06f1_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_detail_index_js_form_js", "label": "\u06f1. \u0641\u0631\u0645 \u00ab\u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u0634\u062e\u0635 \u062f\u06cc\u06af\u0631\u00bb (`detail/index.js` + `Form.js`)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0641\u0631\u0645 \u00ab\u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u0634\u062e\u0635 \u062f\u06cc\u06af\u0631\u00bb (`detail/index.js` + `Form.js`)", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_\u06f2_\u0627\u0631\u0633\u0627\u0644_patient_\u0648_for_self_\u062f\u0631_submitdata_js", "label": "\u06f2. \u0627\u0631\u0633\u0627\u0644 `patient_*` \u0648 `for_self` \u062f\u0631 `SubmitData.js`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0627\u0631\u0633\u0627\u0644 `patient_*` \u0648 `for_self` \u062f\u0631 `SubmitData.js`", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_\u06f3_\u062a\u0627\u06cc\u0645\u0631_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0631_\u0645\u0628\u0646\u0627\u06cc_expires_at_paying_index_js", "label": "\u06f3. \u062a\u0627\u06cc\u0645\u0631 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0631 \u0645\u0628\u0646\u0627\u06cc `expires_at` (`paying/index.js`)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u0627\u06cc\u0645\u0631 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0631 \u0645\u0628\u0646\u0627\u06cc `expires_at` (`paying/index.js`)", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_\u06f4_ux_\u0646\u0647\u0627\u06cc\u06cc", "label": "\u06f4. UX \u0646\u0647\u0627\u06cc\u06cc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. UX \u0646\u0647\u0627\u06cc\u06cc", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_lock_patient_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 23, "community_name": "Community 23", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_send_representation", "label": "booking-send-representation.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "booking-send-representation.md", "community": 60, "community_name": "Community 60", "source_file": ".claude/prompt/booking-send-representation.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "label": "\u0627\u0631\u0633\u0627\u0644 city_id \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u062c\u0627\u0631\u06cc \u0647\u0646\u06af\u0627\u0645 \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0627\u0631\u0633\u0627\u0644 city_id \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u062c\u0627\u0631\u06cc \u0647\u0646\u06af\u0627\u0645 \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a", "community": 60, "community_name": "Community 60", "source_file": ".claude/prompt/booking-send-representation.md", "file_type": "document", "degree": 8}, {"id": "prompt_booking_send_representation_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 60, "community_name": "Community 60", "source_file": ".claude/prompt/booking-send-representation.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_send_representation_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 60, "community_name": "Community 60", "source_file": ".claude/prompt/booking-send-representation.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_send_representation_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 60, "community_name": "Community 60", "source_file": ".claude/prompt/booking-send-representation.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_send_representation_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 60, "community_name": "Community 60", "source_file": ".claude/prompt/booking-send-representation.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_send_representation_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 60, "community_name": "Community 60", "source_file": ".claude/prompt/booking-send-representation.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_send_representation_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 60, "community_name": "Community 60", "source_file": ".claude/prompt/booking-send-representation.md", "file_type": "document", "degree": 3}, {"id": "prompt_booking_send_representation_\u06f1_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0642\u0631\u0627\u0631_\u062f\u0627\u062f\u0646_city_id_\u062f\u0631_\u06a9\u0644\u0627\u06cc\u0646\u062a", "label": "\u06f1. \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 city.id \u062f\u0631 \u06a9\u0644\u0627\u06cc\u0646\u062a", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 city.id \u062f\u0631 \u06a9\u0644\u0627\u06cc\u0646\u062a", "community": 60, "community_name": "Community 60", "source_file": ".claude/prompt/booking-send-representation.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_send_representation_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_city_id_\u0628\u0647_payload_\u0631\u0632\u0631\u0648", "label": "\u06f2. \u0627\u0641\u0632\u0648\u062f\u0646 city_id \u0628\u0647 payload \u0631\u0632\u0631\u0648", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0627\u0641\u0632\u0648\u062f\u0646 city_id \u0628\u0647 payload \u0631\u0632\u0631\u0648", "community": 60, "community_name": "Community 60", "source_file": ".claude/prompt/booking-send-representation.md", "file_type": "document", "degree": 1}, {"id": "prompt_booking_send_representation_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 60, "community_name": "Community 60", "source_file": ".claude/prompt/booking-send-representation.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_json_seo_fields", "label": "city-json-seo-fields.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "city-json-seo-fields.md", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_json_seo_fields_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_city_json_\u0627\u0641\u0632\u0648\u062f\u0646_title_\u0628\u0631\u0646\u062f_\u062f\u0627\u0631_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u0648_keywords", "label": "\u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc SEO \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc city.json \u2014 \u0627\u0641\u0632\u0648\u062f\u0646 title \u0628\u0631\u0646\u062f\u200c\u062f\u0627\u0631 + \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc slogan \u0648 keywords", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc SEO \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc city.json \u2014 \u0627\u0641\u0632\u0648\u062f\u0646 title \u0628\u0631\u0646\u062f\u200c\u062f\u0627\u0631 + \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc slogan \u0648 keywords", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 8}, {"id": "prompt_city_json_seo_fields_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_json_seo_fields_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_json_seo_fields_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_json_seo_fields_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_json_seo_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_json_seo_fields_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 5}, {"id": "prompt_city_json_seo_fields_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_title_\u0628\u0647_\u0647\u0631_\u06f3\u06f4_\u0631\u06a9\u0648\u0631\u062f", "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u0641\u06cc\u0644\u062f `title` \u0628\u0647 \u0647\u0631 \u06f3\u06f4 \u0631\u06a9\u0648\u0631\u062f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u0641\u06cc\u0644\u062f `title` \u0628\u0647 \u0647\u0631 \u06f3\u06f4 \u0631\u06a9\u0648\u0631\u062f", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_json_seo_fields_\u06f2_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u0647\u0631_\u06f3\u06f4_\u0631\u06a9\u0648\u0631\u062f_\u0627\u0633\u062a\u0627\u0631\u062a_\u0622\u067e\u06cc_seo", "label": "\u06f2. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `slogan` \u0647\u0631 \u06f3\u06f4 \u0631\u06a9\u0648\u0631\u062f \u2014 \u0627\u0633\u062a\u0627\u0631\u062a\u200c\u0622\u067e\u06cc + SEO", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `slogan` \u0647\u0631 \u06f3\u06f4 \u0631\u06a9\u0648\u0631\u062f \u2014 \u0627\u0633\u062a\u0627\u0631\u062a\u200c\u0622\u067e\u06cc + SEO", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_json_seo_fields_\u06f3_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_keywords_\u0647\u0631_\u06f3\u06f4_\u0631\u06a9\u0648\u0631\u062f", "label": "\u06f3. \u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc `keywords` \u0647\u0631 \u06f3\u06f4 \u0631\u06a9\u0648\u0631\u062f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc `keywords` \u0647\u0631 \u06f3\u06f4 \u0631\u06a9\u0648\u0631\u062f", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_json_seo_fields_\u06f4_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc", "label": "\u06f4. \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_json_seo_fields_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 21, "community_name": "Community 21", "source_file": ".claude/prompt/city-json-seo-fields.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization", "label": "city-seo-optimization.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "city-seo-optimization.md", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "label": "\u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc SEO \u062a\u06a9\u200c\u062a\u06a9 \u0634\u0647\u0631\u0647\u0627 \u062f\u0631 city.json (\u0633\u0637\u062d \u062d\u0631\u0641\u0647\u200c\u0627\u06cc)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc SEO \u062a\u06a9\u200c\u062a\u06a9 \u0634\u0647\u0631\u0647\u0627 \u062f\u0631 city.json (\u0633\u0637\u062d \u062d\u0631\u0641\u0647\u200c\u0627\u06cc)", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 10}, {"id": "prompt_city_seo_optimization_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u0646\u0642\u0634", "label": "\u0646\u0642\u0634", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u0642\u0634", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u0641\u0647\u0631\u0633\u062a_\u06f3\u06f4_\u0631\u06a9\u0648\u0631\u062f_\u0647\u0645\u0647_\u0628\u0627\u06cc\u062f_\u067e\u0631\u062f\u0627\u0632\u0634_\u0634\u0648\u0646\u062f", "label": "\u0641\u0647\u0631\u0633\u062a \u06f3\u06f4 \u0631\u06a9\u0648\u0631\u062f (\u0647\u0645\u0647 \u0628\u0627\u06cc\u062f \u067e\u0631\u062f\u0627\u0632\u0634 \u0634\u0648\u0646\u062f)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0647\u0631\u0633\u062a \u06f3\u06f4 \u0631\u06a9\u0648\u0631\u062f (\u0647\u0645\u0647 \u0628\u0627\u06cc\u062f \u067e\u0631\u062f\u0627\u0632\u0634 \u0634\u0648\u0646\u062f)", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 8}, {"id": "prompt_city_seo_optimization_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_title_\u06cc\u06a9\u062a\u0627_\u0628\u0647_\u0647\u0631_\u0631\u06a9\u0648\u0631\u062f_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646", "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u0641\u06cc\u0644\u062f `title` \u06cc\u06a9\u062a\u0627 \u0628\u0647 \u0647\u0631 \u0631\u06a9\u0648\u0631\u062f (\u0645\u0647\u0645\u200c\u062a\u0631\u06cc\u0646)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u0641\u06cc\u0644\u062f `title` \u06cc\u06a9\u062a\u0627 \u0628\u0647 \u0647\u0631 \u0631\u06a9\u0648\u0631\u062f (\u0645\u0647\u0645\u200c\u062a\u0631\u06cc\u0646)", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u06f2_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_description_\u0645\u062a\u0627_\u062f\u06cc\u0633\u06a9\u0631\u06cc\u067e\u0634\u0646", "label": "\u06f2. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `description` (\u0645\u062a\u0627 \u062f\u06cc\u0633\u06a9\u0631\u06cc\u067e\u0634\u0646)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `description` (\u0645\u062a\u0627 \u062f\u06cc\u0633\u06a9\u0631\u06cc\u067e\u0634\u0646)", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u06f3_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_keywords", "label": "\u06f3. \u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc `keywords`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc `keywords`", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u06f4_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u06cc\u06a9\u062a\u0627", "label": "\u06f4. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `slogan` \u06cc\u06a9\u062a\u0627", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `slogan` \u06cc\u06a9\u062a\u0627", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u06f5_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_footer_description_\u06cc\u06a9\u062a\u0627", "label": "\u06f5. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `footer_description` \u06cc\u06a9\u062a\u0627", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `footer_description` \u06cc\u06a9\u062a\u0627", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u06f6_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0627\u06af\u0631_\u06a9\u0627\u0631\u0628\u0631_\u062e\u0648\u0627\u0633\u062a_\u0628\u0647\u0628\u0648\u062f_\u0641\u0646\u06cc_\u062f\u0631_layout_js", "label": "\u06f6. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc\u060c \u0627\u06af\u0631 \u06a9\u0627\u0631\u0628\u0631 \u062e\u0648\u0627\u0633\u062a) \u0628\u0647\u0628\u0648\u062f \u0641\u0646\u06cc \u062f\u0631 `layout.js`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc\u060c \u0627\u06af\u0631 \u06a9\u0627\u0631\u0628\u0631 \u062e\u0648\u0627\u0633\u062a) \u0628\u0647\u0628\u0648\u062f \u0641\u0646\u06cc \u062f\u0631 `layout.js`", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u06f7_\u0631\u06a9\u0648\u0631\u062f_\u0628\u0631\u0646\u062f_\u0627\u0635\u0644\u06cc_id_600", "label": "\u06f7. \u0631\u06a9\u0648\u0631\u062f \u0628\u0631\u0646\u062f \u0627\u0635\u0644\u06cc (`id: 600`)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f7. \u0631\u06a9\u0648\u0631\u062f \u0628\u0631\u0646\u062f \u0627\u0635\u0644\u06cc (`id: 600`)", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_city_seo_optimization_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 18, "community_name": "Community 18", "source_file": ".claude/prompt/city-seo-optimization.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_contact_info_fix", "label": "clinic-contact-info-fix.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "clinic-contact-info-fix.md", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_contact_info_fix_\u0627\u0635\u0644\u0627\u062d_\u0628\u062e\u0634_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062a\u0645\u0627\u0633_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "label": "\u0627\u0635\u0644\u0627\u062d \u0628\u062e\u0634 \u00ab\u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062a\u0645\u0627\u0633\u00bb \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u0646\u06cc\u06a9", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0627\u0635\u0644\u0627\u062d \u0628\u062e\u0634 \u00ab\u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062a\u0645\u0627\u0633\u00bb \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u0646\u06cc\u06a9", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 8}, {"id": "prompt_clinic_contact_info_fix_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_contact_info_fix_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_contact_info_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_contact_info_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_contact_info_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_contact_info_fix_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 5}, {"id": "prompt_clinic_contact_info_fix_\u06f1_\u0633\u0627\u062e\u062a_helper_\u0645\u0634\u062a\u0631\u06a9_\u0628\u0631\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062a\u0645\u0627\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "label": "\u06f1. \u0633\u0627\u062e\u062a helper \u0645\u0634\u062a\u0631\u06a9 \u0628\u0631\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062a\u0645\u0627\u0633 \u06a9\u0644\u06cc\u0646\u06cc\u06a9", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0633\u0627\u062e\u062a helper \u0645\u0634\u062a\u0631\u06a9 \u0628\u0631\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062a\u0645\u0627\u0633 \u06a9\u0644\u06cc\u0646\u06cc\u06a9", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_contact_info_fix_\u06f2_\u0627\u0635\u0644\u0627\u062d_detail_js", "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d `Detail.js`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0627\u0635\u0644\u0627\u062d `Detail.js`", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_contact_info_fix_\u06f3_\u062c\u0644\u0648\u06af\u06cc\u0631\u06cc_\u0627\u0632_\u06a9\u0627\u0631\u062a_\u062e\u0627\u0644\u06cc_\u062f\u0631_contact_index_js", "label": "\u06f3. \u062c\u0644\u0648\u06af\u06cc\u0631\u06cc \u0627\u0632 \u06a9\u0627\u0631\u062a \u062e\u0627\u0644\u06cc \u062f\u0631 `contact/index.js`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062c\u0644\u0648\u06af\u06cc\u0631\u06cc \u0627\u0632 \u06a9\u0627\u0631\u062a \u062e\u0627\u0644\u06cc \u062f\u0631 `contact/index.js`", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_contact_info_fix_\u06f4_\u062a\u06a9\u0645\u06cc\u0644_json_ld_\u062f\u0631_app_clinic_slug_page_js", "label": "\u06f4. \u062a\u06a9\u0645\u06cc\u0644 JSON-LD \u062f\u0631 `app/clinic/[slug]/page.js`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u062a\u06a9\u0645\u06cc\u0644 JSON-LD \u062f\u0631 `app/clinic/[slug]/page.js`", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_contact_info_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 128, "community_name": "Community 128", "source_file": ".claude/prompt/clinic-contact-info-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_seo_schema_knowledge_panel", "label": "clinic-seo-schema-knowledge-panel.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "clinic-seo-schema-knowledge-panel.md", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "label": "Schema.org \u06a9\u0627\u0645\u0644 \u0648 Knowledge Panel \u0628\u0631\u0627\u06cc \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u0646\u06cc\u06a9", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Schema.org \u06a9\u0627\u0645\u0644 \u0648 Knowledge Panel \u0628\u0631\u0627\u06cc \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u0646\u06cc\u06a9", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 8}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_api_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc API \u06a9\u0644\u06cc\u0646\u06cc\u06a9", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc API \u06a9\u0644\u06cc\u0646\u06cc\u06a9", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 5}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u06f1_\u0628\u0647\u0628\u0648\u062f_generatemetadata", "label": "\u06f1. \u0628\u0647\u0628\u0648\u062f `generateMetadata`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0628\u0647\u0628\u0648\u062f `generateMetadata`", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u06f2_\u062a\u0627\u0628\u0639_\u06a9\u0645\u06a9\u06cc_computeclinicrating", "label": "\u06f2. \u062a\u0627\u0628\u0639 \u06a9\u0645\u06a9\u06cc `computeClinicRating`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u062a\u0627\u0628\u0639 \u06a9\u0645\u06a9\u06cc `computeClinicRating`", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u06f3_\u0633\u0627\u062e\u062a_json_ld_\u06a9\u0627\u0645\u0644", "label": "\u06f3. \u0633\u0627\u062e\u062a JSON-LD \u06a9\u0627\u0645\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0633\u0627\u062e\u062a JSON-LD \u06a9\u0627\u0645\u0644", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_breadcrumb", "label": "\u06f4. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc Breadcrumb", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc Breadcrumb", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 47, "community_name": "Community 47", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api", "label": "connect-panel-dashboard-to-api.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "connect-panel-dashboard-to-api.md", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "label": "\u0627\u062a\u0635\u0627\u0644 \u067e\u0646\u0644 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647 \u0648 \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 API \u0648\u0627\u0642\u0639\u06cc (\u062d\u0630\u0641 \u062f\u0627\u062f\u0647\u200c\u0647\u0627\u06cc mock)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0627\u062a\u0635\u0627\u0644 \u067e\u0646\u0644 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647 \u0648 \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 API \u0648\u0627\u0642\u0639\u06cc (\u062d\u0630\u0641 \u062f\u0627\u062f\u0647\u200c\u0647\u0627\u06cc mock)", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 8}, {"id": "prompt_connect_panel_dashboard_to_api_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 4}, {"id": "prompt_connect_panel_dashboard_to_api_\u067e\u0646\u0644_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0627\u0633\u062a_\u0648\u0644\u06cc_\u0646\u0627\u062f\u06cc\u062f\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", "label": "\u067e\u0646\u0644: \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a \u0648\u0644\u06cc \u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0646\u0644: \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a \u0648\u0644\u06cc \u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0627\u0645\u0644\u0627_mock", "label": "\u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631: \u06a9\u0627\u0645\u0644\u0627\u064b mock", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631: \u06a9\u0627\u0645\u0644\u0627\u064b mock", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u0644\u0627\u06cc\u0647_\u06cc_api_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_services_response_js", "label": "\u0644\u0627\u06cc\u0647\u200c\u06cc API \u0645\u0648\u062c\u0648\u062f (\u062f\u0631 `services/response.js`)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0644\u0627\u06cc\u0647\u200c\u06cc API \u0645\u0648\u062c\u0648\u062f (\u062f\u0631 `services/response.js`)", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 6}, {"id": "prompt_connect_panel_dashboard_to_api_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062a\u0648\u0627\u0628\u0639_representation_dashboard_\u0628\u0647_services_response_js", "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062a\u0648\u0627\u0628\u0639 representation dashboard \u0628\u0647 `services/response.js`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062a\u0648\u0627\u0628\u0639 representation dashboard \u0628\u0647 `services/response.js`", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u06f2_\u0648\u0635\u0644_\u06a9\u0631\u062f\u0646_header_\u0648_userdetail_\u067e\u0646\u0644_\u0628\u0647_representationinfo", "label": "\u06f2. \u0648\u0635\u0644\u200c\u06a9\u0631\u062f\u0646 Header \u0648 UserDetail \u067e\u0646\u0644 \u0628\u0647 `representationInfo`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0648\u0635\u0644\u200c\u06a9\u0631\u062f\u0646 Header \u0648 UserDetail \u067e\u0646\u0644 \u0628\u0647 `representationInfo`", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u06f3_\u0635\u0641\u062d\u0647_\u06cc_dashboard_\u067e\u0646\u0644_\u0628\u0627_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc", "label": "\u06f3. \u0635\u0641\u062d\u0647\u200c\u06cc dashboard \u067e\u0646\u0644 \u0628\u0627 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0635\u0641\u062d\u0647\u200c\u06cc dashboard \u067e\u0646\u0644 \u0628\u0627 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u06f4_\u0635\u0641\u062d\u0627\u062a_turns_\u0648_user_account_\u0648_add_doctor_\u067e\u0646\u0644", "label": "\u06f4. \u0635\u0641\u062d\u0627\u062a turns \u0648 user-account \u0648 add-doctor \u067e\u0646\u0644", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0635\u0641\u062d\u0627\u062a turns \u0648 user-account \u0648 add-doctor \u067e\u0646\u0644", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u06f5_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0627_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc", "label": "\u06f5. \u062f\u0627\u0634\u0628\u0648\u0631\u062f/\u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u0628\u06cc\u0645\u0627\u0631 \u0628\u0627 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u062f\u0627\u0634\u0628\u0648\u0631\u062f/\u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u0628\u06cc\u0645\u0627\u0631 \u0628\u0627 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_connect_panel_dashboard_to_api_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 24, "community_name": "Community 24", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front", "label": "currency-toman-display-front.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "currency-toman-display-front.md", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "label": "\u0648\u0627\u062d\u062f \u067e\u0648\u0644 = \u062a\u0648\u0645\u0627\u0646 \u062f\u0631 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc (\u0646\u0645\u0627\u06cc\u0634 \u00f7\u06f1\u06f0 / \u0648\u0631\u0648\u062f\u06cc \u00d7\u06f1\u06f0) \u2014 API \u0631\u06cc\u0627\u0644 \u0645\u06cc\u200c\u0645\u0627\u0646\u062f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0648\u0627\u062d\u062f \u067e\u0648\u0644 = \u062a\u0648\u0645\u0627\u0646 \u062f\u0631 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc (\u0646\u0645\u0627\u06cc\u0634 \u00f7\u06f1\u06f0 / \u0648\u0631\u0648\u062f\u06cc \u00d7\u06f1\u06f0) \u2014 API \u0631\u06cc\u0627\u0644 \u0645\u06cc\u200c\u0645\u0627\u0646\u062f", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 8}, {"id": "prompt_currency_toman_display_front_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 4}, {"id": "prompt_currency_toman_display_front_components_appointment_paying_index_js", "label": "`components/appointment/paying/index.js`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`components/appointment/paying/index.js`", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_app_dashboard_page_js_\u062a\u0628\u062f\u06cc\u0644_\u062f\u0633\u062a\u06cc_\u0646\u0627\u0647\u0645\u0627\u0647\u0646\u06af", "label": "`app/dashboard/page.js` (\u062a\u0628\u062f\u06cc\u0644 \u062f\u0633\u062a\u06cc \u0646\u0627\u0647\u0645\u0627\u0647\u0646\u06af)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/dashboard/page.js` (\u062a\u0628\u062f\u06cc\u0644 \u062f\u0633\u062a\u06cc \u0646\u0627\u0647\u0645\u0627\u0647\u0646\u06af)", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_app_payment_uuid_page_js", "label": "`app/payment/[uuid]/page.js`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/payment/[uuid]/page.js`", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 6}, {"id": "prompt_currency_toman_display_front_\u06f1_helper_\u0645\u0631\u06a9\u0632\u06cc_lib_money_js", "label": "\u06f1. helper \u0645\u0631\u06a9\u0632\u06cc `lib/money.js`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. helper \u0645\u0631\u06a9\u0632\u06cc `lib/money.js`", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_\u06f2_paying_index_js", "label": "\u06f2. `paying/index.js`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. `paying/index.js`", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_\u06f3_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "label": "\u06f3. \u062a\u0631\u0627\u06a9\u0646\u0634\u200c\u0647\u0627 \u0648 \u0645\u0648\u062c\u0648\u062f\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u0631\u0627\u06a9\u0646\u0634\u200c\u0647\u0627 \u0648 \u0645\u0648\u062c\u0648\u062f\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_\u06f4_\u0635\u0641\u062d\u0647_\u0646\u062a\u06cc\u062c\u0647_\u067e\u0631\u062f\u0627\u062e\u062a", "label": "\u06f4. \u0635\u0641\u062d\u0647\u0654 \u0646\u062a\u06cc\u062c\u0647\u0654 \u067e\u0631\u062f\u0627\u062e\u062a", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0635\u0641\u062d\u0647\u0654 \u0646\u062a\u06cc\u062c\u0647\u0654 \u067e\u0631\u062f\u0627\u062e\u062a", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_\u06f5_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0631\u06cc\u0627\u0644", "label": "\u06f5. \u062c\u0633\u062a\u062c\u0648\u06cc \u0628\u0627\u0642\u06cc\u200c\u0645\u0627\u0646\u062f\u0647\u0654 \u00ab\u0631\u06cc\u0627\u0644\u00bb", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u062c\u0633\u062a\u062c\u0648\u06cc \u0628\u0627\u0642\u06cc\u200c\u0645\u0627\u0646\u062f\u0647\u0654 \u00ab\u0631\u06cc\u0627\u0644\u00bb", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_currency_toman_display_front_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 25, "community_name": "Community 25", "source_file": ".claude/prompt/currency-toman-display-front.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data", "label": "dashboard-tabs-real-data.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "dashboard-tabs-real-data.md", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "label": "\u0627\u062a\u0635\u0627\u0644 \u062f\u0642\u06cc\u0642 \u0647\u0645\u0647\u200c\u06cc \u062a\u0628\u200c\u0647\u0627\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0627\u062a\u0635\u0627\u0644 \u062f\u0642\u06cc\u0642 \u0647\u0645\u0647\u200c\u06cc \u062a\u0628\u200c\u0647\u0627\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc backend", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 8}, {"id": "prompt_dashboard_tabs_real_data_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 4}, {"id": "prompt_dashboard_tabs_real_data_\u0645\u067e\u06cc\u0646\u06af_\u063a\u0644\u0637_\u0628\u06cc\u0645\u0647_\u062f\u0631_information_index_js", "label": "\u0645\u067e\u06cc\u0646\u06af \u063a\u0644\u0637 \u0628\u06cc\u0645\u0647 \u062f\u0631 `information/index.js`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u067e\u06cc\u0646\u06af \u063a\u0644\u0637 \u0628\u06cc\u0645\u0647 \u062f\u0631 `information/index.js`", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_backend_\u0627\u0632_user_profile_md_\u0648_entity_toarray", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f backend (\u0627\u0632 `user-profile.md` \u0648 entity `toArray`)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f backend (\u0627\u0632 `user-profile.md` \u0648 entity `toArray`)", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data_\u0630\u062e\u06cc\u0631\u0647_\u062f\u0631_detailuser_index_js", "label": "\u0630\u062e\u06cc\u0631\u0647 \u062f\u0631 `detailUser/index.js`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0630\u062e\u06cc\u0631\u0647 \u062f\u0631 `detailUser/index.js`", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 5}, {"id": "prompt_dashboard_tabs_real_data_\u06f1_\u0645\u067e\u06cc\u0646\u06af_\u062f\u0631\u0633\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0647\u0646\u06af\u0627\u0645_\u0644\u0648\u062f_information_index_js", "label": "\u06f1. \u0645\u067e\u06cc\u0646\u06af \u062f\u0631\u0633\u062a \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0647\u0646\u06af\u0627\u0645 \u0644\u0648\u062f (`information/index.js`)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0645\u067e\u06cc\u0646\u06af \u062f\u0631\u0633\u062a \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0647\u0646\u06af\u0627\u0645 \u0644\u0648\u062f (`information/index.js`)", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data_\u06f2_\u062a\u0623\u06cc\u06cc\u062f_\u0630\u062e\u06cc\u0631\u0647_\u0633\u0648\u0627\u0628\u0642_\u067e\u0632\u0634\u06a9\u06cc_other", "label": "\u06f2. \u062a\u0623\u06cc\u06cc\u062f \u0630\u062e\u06cc\u0631\u0647 (\u0633\u0648\u0627\u0628\u0642 \u067e\u0632\u0634\u06a9\u06cc \u2192 `other`)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u062a\u0623\u06cc\u06cc\u062f \u0630\u062e\u06cc\u0631\u0647 (\u0633\u0648\u0627\u0628\u0642 \u067e\u0632\u0634\u06a9\u06cc \u2192 `other`)", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u062a\u0628_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627_\u0648_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627", "label": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f \u062a\u0628\u200c\u0647\u0627\u06cc \u0646\u0648\u0628\u062a\u200c\u0647\u0627 \u0648 \u062a\u0631\u0627\u06a9\u0646\u0634\u200c\u0647\u0627", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f \u062a\u0628\u200c\u0647\u0627\u06cc \u0646\u0648\u0628\u062a\u200c\u0647\u0627 \u0648 \u062a\u0631\u0627\u06a9\u0646\u0634\u200c\u0647\u0627", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data_\u06f4_\u062a\u0628_\u0647\u0627\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0648_\u067e\u06cc\u0627\u0645_\u0647\u0627_\u0628\u062f\u0648\u0646_backend", "label": "\u06f4. \u062a\u0628\u200c\u0647\u0627\u06cc \u0646\u0638\u0631\u0627\u062a \u0648 \u067e\u06cc\u0627\u0645\u200c\u0647\u0627 (\u0628\u062f\u0648\u0646 backend)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u062a\u0628\u200c\u0647\u0627\u06cc \u0646\u0638\u0631\u0627\u062a \u0648 \u067e\u06cc\u0627\u0645\u200c\u0647\u0627 (\u0628\u062f\u0648\u0646 backend)", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_dashboard_tabs_real_data_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 30, "community_name": "Community 30", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_map_claim_modal", "label": "doctor-map-claim-modal.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "doctor-map-claim-modal.md", "community": 376, "community_name": "Community 376", "source_file": ".claude/prompt/doctor-map-claim-modal.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_map_claim_modal_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647\u0628\u0648\u062f_\u0645\u0648\u062f\u0627\u0644_claim_\u06a9\u067e\u0686\u0627_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "label": "\u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u0646\u0642\u0634\u0647 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9 + \u0628\u0647\u0628\u0648\u062f \u0645\u0648\u062f\u0627\u0644 claim (\u06a9\u067e\u0686\u0627/\u0645\u0648\u0628\u0627\u06cc\u0644) + \u062d\u0630\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u0645\u0627\u0644\u06a9", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u0646\u0642\u0634\u0647 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9 + \u0628\u0647\u0628\u0648\u062f \u0645\u0648\u062f\u0627\u0644 claim (\u06a9\u067e\u0686\u0627/\u0645\u0648\u0628\u0627\u06cc\u0644) + \u062d\u0630\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u0645\u0627\u0644\u06a9", "community": 376, "community_name": "Community 376", "source_file": ".claude/prompt/doctor-map-claim-modal.md", "file_type": "document", "degree": 8}, {"id": "prompt_doctor_map_claim_modal_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 376, "community_name": "Community 376", "source_file": ".claude/prompt/doctor-map-claim-modal.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_map_claim_modal_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 376, "community_name": "Community 376", "source_file": ".claude/prompt/doctor-map-claim-modal.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_map_claim_modal_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 376, "community_name": "Community 376", "source_file": ".claude/prompt/doctor-map-claim-modal.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_map_claim_modal_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", "label": "\u0648\u0638\u06cc\u0641\u0647 \u06f1 \u2014 \u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u0646\u0642\u0634\u0647 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u06cc\u0641\u0647 \u06f1 \u2014 \u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u0646\u0642\u0634\u0647 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9", "community": 376, "community_name": "Community 376", "source_file": ".claude/prompt/doctor-map-claim-modal.md", "file_type": "document", "degree": 3}, {"id": "prompt_doctor_map_claim_modal_\u0631\u06cc\u0634\u0647_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647", "label": "\u0631\u06cc\u0634\u0647 (\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0631\u06cc\u0634\u0647 (\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647)", "community": 376, "community_name": "Community 376", "source_file": ".claude/prompt/doctor-map-claim-modal.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_map_claim_modal_\u0631\u0627\u0647_\u062d\u0644", "label": "\u0631\u0627\u0647\u200c\u062d\u0644", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0631\u0627\u0647\u200c\u062d\u0644", "community": 376, "community_name": "Community 376", "source_file": ".claude/prompt/doctor-map-claim-modal.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_map_claim_modal_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0628\u0647\u0628\u0648\u062f_\u0645\u0648\u062f\u0627\u0644_claim_\u0645\u062a\u0646_\u0645\u0648\u0628\u0627\u06cc\u0644_\u06a9\u067e\u0686\u0627", "label": "\u0648\u0638\u06cc\u0641\u0647 \u06f2 \u2014 \u0628\u0647\u0628\u0648\u062f \u0645\u0648\u062f\u0627\u0644 claim (\u0645\u062a\u0646\u060c \u0645\u0648\u0628\u0627\u06cc\u0644\u060c \u06a9\u067e\u0686\u0627)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u06cc\u0641\u0647 \u06f2 \u2014 \u0628\u0647\u0628\u0648\u062f \u0645\u0648\u062f\u0627\u0644 claim (\u0645\u062a\u0646\u060c \u0645\u0648\u0628\u0627\u06cc\u0644\u060c \u06a9\u067e\u0686\u0627)", "community": 376, "community_name": "Community 376", "source_file": ".claude/prompt/doctor-map-claim-modal.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_map_claim_modal_\u0648\u0638\u06cc\u0641\u0647_\u06f3_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "label": "\u0648\u0638\u06cc\u0641\u0647 \u06f3 \u2014 \u062d\u0630\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u0645\u0627\u0644\u06a9", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u06cc\u0641\u0647 \u06f3 \u2014 \u062d\u0630\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u0645\u0627\u0644\u06a9", "community": 376, "community_name": "Community 376", "source_file": ".claude/prompt/doctor-map-claim-modal.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_map_claim_modal_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 376, "community_name": "Community 376", "source_file": ".claude/prompt/doctor-map-claim-modal.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign", "label": "doctor-poster-redesign.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "doctor-poster-redesign.md", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc \u062d\u0631\u0641\u0647\u200c\u0627\u06cc \u067e\u0648\u0633\u062a\u0631 \u0627\u0634\u062a\u0631\u0627\u06a9\u200c\u06af\u0630\u0627\u0631\u06cc \u067e\u0632\u0634\u06a9 (\u062f\u0627\u0646\u0644\u0648\u062f)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc \u062d\u0631\u0641\u0647\u200c\u0627\u06cc \u067e\u0648\u0633\u062a\u0631 \u0627\u0634\u062a\u0631\u0627\u06a9\u200c\u06af\u0630\u0627\u0631\u06cc \u067e\u0632\u0634\u06a9 (\u062f\u0627\u0646\u0644\u0648\u062f)", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 10}, {"id": "prompt_doctor_poster_redesign_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u0646\u0642\u0634", "label": "\u0646\u0642\u0634", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u0642\u0634", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u0647\u062f\u0641", "label": "\u0647\u062f\u0641", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0647\u062f\u0641", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633", "label": "\u062f\u0627\u062f\u0647\u200c\u0647\u0627\u06cc \u062f\u0631 \u062f\u0633\u062a\u0631\u0633", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062f\u0627\u062f\u0647\u200c\u0647\u0627\u06cc \u062f\u0631 \u062f\u0633\u062a\u0631\u0633", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 7}, {"id": "prompt_doctor_poster_redesign_\u06f1_\u06a9\u0627\u0646\u0648\u0627\u0633_\u062b\u0627\u0628\u062a_\u0648_\u0628\u0627\u06a9\u06cc\u0641\u06cc\u062a", "label": "\u06f1. \u06a9\u0627\u0646\u0648\u0627\u0633 \u062b\u0627\u0628\u062a \u0648 \u0628\u0627\u06a9\u06cc\u0641\u06cc\u062a", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u06a9\u0627\u0646\u0648\u0627\u0633 \u062b\u0627\u0628\u062a \u0648 \u0628\u0627\u06a9\u06cc\u0641\u06cc\u062a", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u06f2_\u0633\u06cc\u0633\u062a\u0645_\u0628\u0635\u0631\u06cc_\u0628\u0647_\u0639\u0646\u0648\u0627\u0646_ui_ux", "label": "\u06f2. \u0633\u06cc\u0633\u062a\u0645 \u0628\u0635\u0631\u06cc (\u0628\u0647\u200c\u0639\u0646\u0648\u0627\u0646 UI/UX)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0633\u06cc\u0633\u062a\u0645 \u0628\u0635\u0631\u06cc (\u0628\u0647\u200c\u0639\u0646\u0648\u0627\u0646 UI/UX)", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u06f3_\u0647\u062f\u0631_\u0628\u0631\u0646\u062f_\u0644\u0648\u06af\u0648_\u0627\u0644\u0632\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631", "label": "\u06f3. \u0647\u062f\u0631 \u0628\u0631\u0646\u062f + \u0644\u0648\u06af\u0648 (\u0627\u0644\u0632\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0647\u062f\u0631 \u0628\u0631\u0646\u062f + \u0644\u0648\u06af\u0648 (\u0627\u0644\u0632\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631)", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u06f4_\u0628\u062f\u0646\u0647_\u0628\u062e\u0634_\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc_\u0628\u0627_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0633\u0631\u0631\u06cc\u0632", "label": "\u06f4. \u0628\u062f\u0646\u0647 \u2014 \u0628\u062e\u0634\u200c\u0647\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc \u0628\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0633\u0631\u0631\u06cc\u0632", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0628\u062f\u0646\u0647 \u2014 \u0628\u062e\u0634\u200c\u0647\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc \u0628\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0633\u0631\u0631\u06cc\u0632", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u06f5_\u0641\u0648\u062a\u0631_qr_cta_\u0648\u0627\u062a\u0631\u0645\u0627\u0631\u06a9_\u0644\u0648\u06af\u0648", "label": "\u06f5. \u0641\u0648\u062a\u0631 \u2014 QR + CTA + \u0648\u0627\u062a\u0631\u0645\u0627\u0631\u06a9 \u0644\u0648\u06af\u0648", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u0641\u0648\u062a\u0631 \u2014 QR + CTA + \u0648\u0627\u062a\u0631\u0645\u0627\u0631\u06a9 \u0644\u0648\u06af\u0648", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u06f6_\u062d\u0641\u0638_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u067e\u0627\u06cc\u067e_\u0644\u0627\u06cc\u0646_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "\u06f6. \u062d\u0641\u0638 \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u0627 \u067e\u0627\u06cc\u067e\u200c\u0644\u0627\u06cc\u0646 \u062f\u0627\u0646\u0644\u0648\u062f", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. \u062d\u0641\u0638 \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u0627 \u067e\u0627\u06cc\u067e\u200c\u0644\u0627\u06cc\u0646 \u062f\u0627\u0646\u0644\u0648\u062f", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_poster_redesign_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 26, "community_name": "Community 26", "source_file": ".claude/prompt/doctor-poster-redesign.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_profile_booking_state_from_locations", "label": "doctor-profile-booking-state-from-locations.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "doctor-profile-booking-state-from-locations.md", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0639\u0627\u0644_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u0632_booking_locations", "label": "\u0648\u0636\u0639\u06cc\u062a \u00ab\u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u0641\u0639\u0627\u0644/\u063a\u06cc\u0631\u0641\u0639\u0627\u0644\u00bb \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u067e\u0632\u0634\u06a9 \u0627\u0632 booking_locations", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u00ab\u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u0641\u0639\u0627\u0644/\u063a\u06cc\u0631\u0641\u0639\u0627\u0644\u00bb \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u067e\u0632\u0634\u06a9 \u0627\u0632 booking_locations", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 8}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 3}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u06a9\u0627\u0631\u062a_\u062f\u0633\u06a9\u062a\u0627\u067e_components_doctor_appointmentlist_itemappointment_js_10", "label": "\u06a9\u0627\u0631\u062a \u062f\u0633\u06a9\u062a\u0627\u067e \u2014 `components/doctor/appointmentList/ItemAppointment.js:10`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06a9\u0627\u0631\u062a \u062f\u0633\u06a9\u062a\u0627\u067e \u2014 `components/doctor/appointmentList/ItemAppointment.js:10`", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_components_doctor_appointmentlist_index_js_20_24", "label": "\u0646\u0648\u0627\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644 \u2014 `components/doctor/appointmentList/index.js:20-24`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u0648\u0627\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644 \u2014 `components/doctor/appointmentList/index.js:20-24`", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 4}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u06f1_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_bookinglocations_\u0628\u0647_appointmentlist", "label": "\u06f1. \u067e\u0627\u0633\u200c\u062f\u0627\u062f\u0646 `bookingLocations` \u0628\u0647 AppointmentList", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u067e\u0627\u0633\u200c\u062f\u0627\u062f\u0646 `bookingLocations` \u0628\u0647 AppointmentList", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u06f2_\u0642\u0627\u0639\u062f\u0647_\u0648\u0627\u062d\u062f_\u0641\u0639\u0627\u0644_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "label": "\u06f2. \u0642\u0627\u0639\u062f\u0647\u0654 \u0648\u0627\u062d\u062f \u0641\u0639\u0627\u0644/\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0642\u0627\u0639\u062f\u0647\u0654 \u0648\u0627\u062d\u062f \u0641\u0639\u0627\u0644/\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u06f3_\u06a9\u0627\u0631\u062a_\u0644\u06cc\u0633\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0628\u062f\u0648\u0646_\u062a\u063a\u06cc\u06cc\u0631", "label": "\u06f3. \u06a9\u0627\u0631\u062a \u0644\u06cc\u0633\u062a \u067e\u0632\u0634\u06a9\u0627\u0646 \u2014 \u0628\u062f\u0648\u0646 \u062a\u063a\u06cc\u06cc\u0631", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u06a9\u0627\u0631\u062a \u0644\u06cc\u0633\u062a \u067e\u0632\u0634\u06a9\u0627\u0646 \u2014 \u0628\u062f\u0648\u0646 \u062a\u063a\u06cc\u06cc\u0631", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_profile_booking_state_from_locations_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 125, "community_name": "Community 125", "source_file": ".claude/prompt/doctor-profile-booking-state-from-locations.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_seo_schema_knowledge_panel", "label": "doctor-seo-schema-knowledge-panel.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "doctor-seo-schema-knowledge-panel.md", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "label": "SEO \u067e\u06cc\u0634\u0631\u0641\u062a\u0647 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9: Schema \u06a9\u0627\u0645\u0644\u060c Sitelinks\u060c Knowledge Panel\u060c Local SEO", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "SEO \u067e\u06cc\u0634\u0631\u0641\u062a\u0647 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9: Schema \u06a9\u0627\u0645\u0644\u060c Sitelinks\u060c Knowledge Panel\u060c Local SEO", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 8}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 3}, {"id": "prompt_doctor_seo_schema_knowledge_panel_app_doctor_slug_page_js_schema_\u0641\u0639\u0644\u06cc_\u0646\u0627\u0642\u0635", "label": "`app/doctor/[slug]/page.js` \u2014 schema \u0641\u0639\u0644\u06cc (\u0646\u0627\u0642\u0635)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/doctor/[slug]/page.js` \u2014 schema \u0641\u0639\u0644\u06cc (\u0646\u0627\u0642\u0635)", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_seo_schema_knowledge_panel_app_sitemap_js_\u0641\u0639\u0644\u0627_\u06cc\u06a9_\u0641\u0627\u06cc\u0644_\u0648\u0627\u062d\u062f", "label": "`app/sitemap.js` \u2014 \u0641\u0639\u0644\u0627\u064b \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0648\u0627\u062d\u062f", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/sitemap.js` \u2014 \u0641\u0639\u0644\u0627\u064b \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0648\u0627\u062d\u062f", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 5}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u06f1_schema_org_\u06a9\u0627\u0645\u0644_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", "label": "\u06f1. Schema.org \u06a9\u0627\u0645\u0644 \u0628\u0631\u0627\u06cc \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. Schema.org \u06a9\u0627\u0645\u0644 \u0628\u0631\u0627\u06cc \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u06f2_sitemap_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u062f\u0647", "label": "\u06f2. Sitemap \u062a\u0641\u06a9\u06cc\u06a9\u200c\u0634\u062f\u0647", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. Sitemap \u062a\u0641\u06a9\u06cc\u06a9\u200c\u0634\u062f\u0647", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u06f3_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_robots_js", "label": "\u06f3. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc `robots.js`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc `robots.js`", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u06f4_\u06a9\u0627\u0631\u062a_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u062f\u0631_ui_\u0645\u0634\u0631\u0648\u0637_\u0628\u0647_\u0648\u062c\u0648\u062f_\u0641\u06cc\u0644\u062f_backend", "label": "\u06f4. \u06a9\u0627\u0631\u062a \u0634\u0628\u06a9\u0647\u200c\u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u062f\u0631 UI (\u0645\u0634\u0631\u0648\u0637 \u0628\u0647 \u0648\u062c\u0648\u062f \u0641\u06cc\u0644\u062f backend)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u06a9\u0627\u0631\u062a \u0634\u0628\u06a9\u0647\u200c\u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u062f\u0631 UI (\u0645\u0634\u0631\u0648\u0637 \u0628\u0647 \u0648\u062c\u0648\u062f \u0641\u06cc\u0644\u062f backend)", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 36, "community_name": "Community 36", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow", "label": "fix-appointment-booking-flow.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-appointment-booking-flow.md", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc \u0635\u0641\u062d\u0647\u200c\u06cc \u06af\u0631\u0641\u062a\u0646 \u0646\u0648\u0628\u062a (`/appointment/[doctorId]`) \u0628\u0631\u0627\u06cc \u0647\u0645\u200c\u062e\u0648\u0627\u0646\u06cc \u0628\u0627 API \u0648\u0627\u0642\u0639\u06cc", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc \u0635\u0641\u062d\u0647\u200c\u06cc \u06af\u0631\u0641\u062a\u0646 \u0646\u0648\u0628\u062a (`/appointment/[doctorId]`) \u0628\u0631\u0627\u06cc \u0647\u0645\u200c\u062e\u0648\u0627\u0646\u06cc \u0628\u0627 API \u0648\u0627\u0642\u0639\u06cc", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 9}, {"id": "prompt_fix_appointment_booking_flow_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0648\u0627\u0642\u0639\u06cc Backend (\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647 \u0628\u0627 curl \u0631\u0648\u06cc `https://clinic-pro.ddev.site`)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0648\u0627\u0642\u0639\u06cc Backend (\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647 \u0628\u0627 curl \u0631\u0648\u06cc `https://clinic-pro.ddev.site`)", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 6}, {"id": "prompt_fix_appointment_booking_flow_\u06f1_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627_get_api_v1_appointment_slots_doctor_uuid_uuid_date_y_m_d_public", "label": "\u06f1. \u0627\u0633\u0644\u0627\u062a\u200c\u0647\u0627 \u2014 `GET /api/v1/appointment-slots?doctor_uuid={uuid}&date={Y-m-d}` (PUBLIC)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0627\u0633\u0644\u0627\u062a\u200c\u0647\u0627 \u2014 `GET /api/v1/appointment-slots?doctor_uuid={uuid}&amp;date={Y-m-d}` (PUBLIC)", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u06f2_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a_post_api_v1_appointment_auth", "label": "\u06f2. \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a \u2014 `POST /api/v1/appointment` (AUTH)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a \u2014 `POST /api/v1/appointment` (AUTH)", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u06f3_\u067e\u0631\u062f\u0627\u062e\u062a_post_api_v1_payment_appointment_auth_\u0628\u0627\u06cc\u062f_\u0645\u0627\u0644\u06a9_\u0646\u0648\u0628\u062a_\u0628\u0627\u0634\u062f", "label": "\u06f3. \u067e\u0631\u062f\u0627\u062e\u062a \u2014 `POST /api/v1/payment/appointment` (AUTH\u060c \u0628\u0627\u06cc\u062f \u0645\u0627\u0644\u06a9 \u0646\u0648\u0628\u062a \u0628\u0627\u0634\u062f)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u067e\u0631\u062f\u0627\u062e\u062a \u2014 `POST /api/v1/payment/appointment` (AUTH\u060c \u0628\u0627\u06cc\u062f \u0645\u0627\u0644\u06a9 \u0646\u0648\u0628\u062a \u0628\u0627\u0634\u062f)", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u06f4_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_get_api_v1_user_profile_uuid_auth", "label": "\u06f4. \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u06a9\u0627\u0631\u0628\u0631 \u2014 `GET /api/v1/user-profile/{uuid}` (AUTH)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u06a9\u0627\u0631\u0628\u0631 \u2014 `GET /api/v1/user-profile/{uuid}` (AUTH)", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u06f5_interceptor_\u0645\u0647\u0645_services_api_js", "label": "\u06f5. interceptor \u0645\u0647\u0645 (`services/api.js`)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. interceptor \u0645\u0647\u0645 (`services/api.js`)", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u0645\u0634\u06a9\u0644\u200c\u062f\u0627\u0631)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u0645\u0634\u06a9\u0644\u200c\u062f\u0627\u0631)", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 8}, {"id": "prompt_fix_appointment_booking_flow_app_appointment_doctorid_page_js", "label": "`app/appointment/[doctorId]/page.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/appointment/[doctorId]/page.js`", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_services_response_js", "label": "`services/response.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`services/response.js`", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_app_component_date_datetime_index_js", "label": "`app/component/date/dateTime/index.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/component/date/dateTime/index.js`", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_app_component_date_datetime_hours_list_js", "label": "`app/component/date/dateTime/hours/List.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/component/date/dateTime/hours/List.js`", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_components_appointment_detail_submitdata_js", "label": "`components/appointment/detail/SubmitData.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`components/appointment/detail/SubmitData.js`", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_components_appointment_paying_index_js", "label": "`components/appointment/paying/index.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`components/appointment/paying/index.js`", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_components_appointment_index_js_\u062e\u0648\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "label": "`components/appointment/index.js` (\u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`components/appointment/index.js` (\u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644)", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 7}, {"id": "prompt_fix_appointment_booking_flow_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u0644\u0627\u06cc\u0647_\u06cc_request_\u062f\u0631_services_response_js", "label": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u0644\u0627\u06cc\u0647\u200c\u06cc `request.*` \u062f\u0631 `services/response.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u0644\u0627\u06cc\u0647\u200c\u06cc `request.*` \u062f\u0631 `services/response.js`", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u06f2_\u0627\u0635\u0644\u0627\u062d_app_appointment_doctorid_page_js", "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d `app/appointment/[doctorId]/page.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0627\u0635\u0644\u0627\u062d `app/appointment/[doctorId]/page.js`", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u06f3_\u0645\u067e_\u06a9\u0631\u062f\u0646_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0633\u0644\u0627\u062a_\u0628\u0647_ui_datetime_index_js_hours_list_js", "label": "\u06f3. \u0645\u067e\u200c\u06a9\u0631\u062f\u0646 \u0633\u0627\u062e\u062a\u0627\u0631 \u0648\u0627\u0642\u0639\u06cc \u0627\u0633\u0644\u0627\u062a \u0628\u0647 UI \u2014 `dateTime/index.js` + `hours/List.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0645\u067e\u200c\u06a9\u0631\u062f\u0646 \u0633\u0627\u062e\u062a\u0627\u0631 \u0648\u0627\u0642\u0639\u06cc \u0627\u0633\u0644\u0627\u062a \u0628\u0647 UI \u2014 `dateTime/index.js` + `hours/List.js`", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u06f4_\u0627\u0635\u0644\u0627\u062d_\u0633\u0627\u062e\u062a_\u0646\u0648\u0628\u062a_components_appointment_detail_submitdata_js", "label": "\u06f4. \u0627\u0635\u0644\u0627\u062d \u0633\u0627\u062e\u062a \u0646\u0648\u0628\u062a \u2014 `components/appointment/detail/SubmitData.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0627\u0635\u0644\u0627\u062d \u0633\u0627\u062e\u062a \u0646\u0648\u0628\u062a \u2014 `components/appointment/detail/SubmitData.js`", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u067e\u0631\u062f\u0627\u062e\u062a_components_appointment_paying_index_js", "label": "\u06f5. \u0627\u0635\u0644\u0627\u062d \u067e\u0631\u062f\u0627\u062e\u062a \u2014 `components/appointment/paying/index.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u0627\u0635\u0644\u0627\u062d \u067e\u0631\u062f\u0627\u062e\u062a \u2014 `components/appointment/paying/index.js`", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u06f6_\u0627\u0635\u0644\u0627\u062d_\u062e\u0648\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_components_appointment_index_js", "label": "\u06f6. \u0627\u0635\u0644\u0627\u062d \u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u2014 `components/appointment/index.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. \u0627\u0635\u0644\u0627\u062d \u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u2014 `components/appointment/index.js`", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_booking_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 9, "community_name": "Community 9", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow", "label": "fix-appointment-payment-flow.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-appointment-payment-flow.md", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "label": "\u0631\u0641\u0639 \u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0648 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u062f\u0631 \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc \u0622\u0646\u0644\u0627\u06cc\u0646", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0631\u0641\u0639 \u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0648 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u062f\u0631 \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc \u0622\u0646\u0644\u0627\u06cc\u0646", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 8}, {"id": "prompt_fix_appointment_payment_flow_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 4}, {"id": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f1_submitdata_\u062e\u0648\u0627\u0646\u062f\u0646_\u0646\u062a\u06cc\u062c\u0647_\u06cc_\u0646\u0648\u0628\u062a", "label": "\u0628\u0627\u06af \u06f1 \u2014 SubmitData: \u062e\u0648\u0627\u0646\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647\u200c\u06cc \u0646\u0648\u0628\u062a", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u0627\u06af \u06f1 \u2014 SubmitData: \u062e\u0648\u0627\u0646\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647\u200c\u06cc \u0646\u0648\u0628\u062a", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f2_paying_frontend_address_\u0648_config", "label": "\u0628\u0627\u06af \u06f2 \u2014 paying: frontend_address \u0648 config", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u0627\u06af \u06f2 \u2014 paying: frontend_address \u0648 config", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f3_payment_uuid_page_js", "label": "\u0628\u0627\u06af \u06f3 \u2014 payment/[uuid]/page.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u0627\u06af \u06f3 \u2014 payment/[uuid]/page.js", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 7}, {"id": "prompt_fix_appointment_payment_flow_\u06f1_\u0631\u0641\u0639_double_nest_\u062f\u0631_submitdata_\u0634\u0645\u0627\u0631\u0646\u062f\u0647_appointmentid", "label": "\u06f1. \u0631\u0641\u0639 double-nest \u062f\u0631 SubmitData (\u0634\u0645\u0627\u0631\u0646\u062f\u0647 + appointmentId)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0631\u0641\u0639 double-nest \u062f\u0631 SubmitData (\u0634\u0645\u0627\u0631\u0646\u062f\u0647 + appointmentId)", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u06f2_\u0627\u0635\u0644\u0627\u062d_frontend_address_\u0648_redirect_url_\u062f\u0631_paying", "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d frontend_address \u0648 redirect_url \u062f\u0631 paying", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0627\u0635\u0644\u0627\u062d frontend_address \u0648 redirect_url \u062f\u0631 paying", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_getpaymentconfig", "label": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f getPaymentConfig", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f getPaymentConfig", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u06f4_\u0627\u0635\u0644\u0627\u062d_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u062a\u06cc\u062c\u0647_app_payment_uuid_page_js", "label": "\u06f4. \u0627\u0635\u0644\u0627\u062d \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u062a\u06cc\u062c\u0647 `app/payment/[uuid]/page.js`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0627\u0635\u0644\u0627\u062d \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u062a\u06cc\u062c\u0647 `app/payment/[uuid]/page.js`", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u06f5_\u0635\u0641\u062d\u0647_\u06cc_\u0648\u0627\u0633\u0637_\u0646\u062a\u06cc\u062c\u0647_\u0627\u06af\u0631_\u06af\u0632\u06cc\u0646\u0647_\u0627\u0644\u0641_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f", "label": "\u06f5. \u0635\u0641\u062d\u0647\u200c\u06cc \u0648\u0627\u0633\u0637 \u0646\u062a\u06cc\u062c\u0647 (\u0627\u06af\u0631 \u06af\u0632\u06cc\u0646\u0647 \u0627\u0644\u0641 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u0635\u0641\u062d\u0647\u200c\u06cc \u0648\u0627\u0633\u0637 \u0646\u062a\u06cc\u062c\u0647 (\u0627\u06af\u0631 \u06af\u0632\u06cc\u0646\u0647 \u0627\u0644\u0641 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f)", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u06f6_\u062a\u062b\u0628\u06cc\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0627\u0646\u062c\u0627\u0645_\u0634\u062f\u0647_\u062a\u0623\u06cc\u06cc\u062f", "label": "\u06f6. \u062a\u062b\u0628\u06cc\u062a \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc (\u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f\u0647 \u2014 \u062a\u0623\u06cc\u06cc\u062f)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. \u062a\u062b\u0628\u06cc\u062a \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc (\u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f\u0647 \u2014 \u062a\u0623\u06cc\u06cc\u062f)", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_appointment_payment_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 19, "community_name": "Community 19", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists", "label": "fix-dashboard-uuid-and-lists.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-dashboard-uuid-and-lists.md", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "label": "\u0631\u0641\u0639 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631: \u06a9\u0648\u06a9\u06cc uuid \u0627\u0634\u062a\u0628\u0627\u0647\u060c URL \u063a\u0644\u0637 \u0646\u0648\u0628\u062a\u200c\u0647\u0627/\u067e\u0631\u062f\u0627\u062e\u062a\u200c\u0647\u0627\u060c \u0648 crash \u0647\u062f\u0631", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0631\u0641\u0639 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631: \u06a9\u0648\u06a9\u06cc uuid \u0627\u0634\u062a\u0628\u0627\u0647\u060c URL \u063a\u0644\u0637 \u0646\u0648\u0628\u062a\u200c\u0647\u0627/\u067e\u0631\u062f\u0627\u062e\u062a\u200c\u0647\u0627\u060c \u0648 crash \u0647\u062f\u0631", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 8}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0631\u06cc\u0634\u0647_\u06cc_\u0627\u0635\u0644\u06cc_\u06a9\u0648\u06a9\u06cc_uuid", "label": "\u0631\u06cc\u0634\u0647\u200c\u06cc \u0627\u0635\u0644\u06cc \u06a9\u0648\u06a9\u06cc `uuid`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0631\u06cc\u0634\u0647\u200c\u06cc \u0627\u0635\u0644\u06cc \u06a9\u0648\u06a9\u06cc `uuid`", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 4}, {"id": "prompt_fix_dashboard_uuid_and_lists_services_response_js_url\u0647\u0627\u06cc_\u0646\u0627\u0645\u0648\u062c\u0648\u062f", "label": "`services/response.js` \u2014 URL\u0647\u0627\u06cc \u0646\u0627\u0645\u0648\u062c\u0648\u062f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`services/response.js` \u2014 URL\u0647\u0627\u06cc \u0646\u0627\u0645\u0648\u062c\u0648\u062f", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_app_dashboard_page_js", "label": "`app/dashboard/page.js`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/dashboard/page.js`", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_head_js", "label": "`Head.js`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`Head.js`", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 6}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u06f1_\u06a9\u0648\u06a9\u06cc_uuid_uuid_\u06a9\u0627\u0631\u0628\u0631_sendreq_js", "label": "\u06f1. \u06a9\u0648\u06a9\u06cc `uuid` = uuid \u06a9\u0627\u0631\u0628\u0631 (`SendReq.js`)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u06a9\u0648\u06a9\u06cc `uuid` = uuid \u06a9\u0627\u0631\u0628\u0631 (`SendReq.js`)", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u06f2_\u06af\u0627\u0631\u062f_null_\u062f\u0631_head_js", "label": "\u06f2. \u06af\u0627\u0631\u062f null \u062f\u0631 `Head.js`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u06af\u0627\u0631\u062f null \u062f\u0631 `Head.js`", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u06f3_\u0627\u0635\u0644\u0627\u062d_url\u0647\u0627_\u062f\u0631_services_response_js", "label": "\u06f3. \u0627\u0635\u0644\u0627\u062d URL\u0647\u0627 \u062f\u0631 `services/response.js`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0627\u0635\u0644\u0627\u062d URL\u0647\u0627 \u062f\u0631 `services/response.js`", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_caller\u0647\u0627_turns_transactions", "label": "\u06f4. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc caller\u0647\u0627 (turns + transactions)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc caller\u0647\u0627 (turns + transactions)", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u06f5_\u062f\u0631_\u0635\u0648\u0631\u062a_\u0644\u0632\u0648\u0645_app_dashboard_page_js", "label": "\u06f5. (\u062f\u0631 \u0635\u0648\u0631\u062a \u0644\u0632\u0648\u0645) `app/dashboard/page.js`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. (\u062f\u0631 \u0635\u0648\u0631\u062a \u0644\u0632\u0648\u0645) `app/dashboard/page.js`", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 27, "community_name": "Community 27", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_free_turn_disabled", "label": "fix-doctor-free-turn-disabled.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-doctor-free-turn-disabled.md", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "label": "\u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u0646\u0648\u0628\u062a \u0622\u0632\u0627\u062f \u0648 \u062f\u06a9\u0645\u0647 \u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u067e\u0632\u0634\u06a9 \u0628\u0627 \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u0646\u0648\u0628\u062a \u0622\u0632\u0627\u062f \u0648 \u062f\u06a9\u0645\u0647 \u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u067e\u0632\u0634\u06a9 \u0628\u0627 \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 8}, {"id": "prompt_fix_doctor_free_turn_disabled_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 4}, {"id": "prompt_fix_doctor_free_turn_disabled_app_component_itemdoctor_js_\u062d\u0648\u0627\u0644\u06cc_\u062e\u0637_\u06f8\u06f4", "label": "`app/component/ItemDoctor.js` (\u062d\u0648\u0627\u0644\u06cc \u062e\u0637 \u06f8\u06f4)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/component/ItemDoctor.js` (\u062d\u0648\u0627\u0644\u06cc \u062e\u0637 \u06f8\u06f4)", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_free_turn_disabled_components_doctor_appointmentlist_itemappointment_js_\u062e\u0637_\u06f3\u06f6_\u06f5\u06f8", "label": "`components/doctor/appointmentList/ItemAppointment.js` (\u062e\u0637 \u06f3\u06f6\u2013\u06f5\u06f8)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`components/doctor/appointmentList/ItemAppointment.js` (\u062e\u0637 \u06f3\u06f6\u2013\u06f5\u06f8)", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_free_turn_disabled_components_doctor_appointmentlist_index_js_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062e\u0637_\u06f1\u06f6_\u06f3\u06f4", "label": "`components/doctor/appointmentList/index.js` (\u0646\u0648\u0627\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644\u060c \u062e\u0637 \u06f1\u06f6\u2013\u06f3\u06f4)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`components/doctor/appointmentList/index.js` (\u0646\u0648\u0627\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644\u060c \u062e\u0637 \u06f1\u06f6\u2013\u06f3\u06f4)", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 4}, {"id": "prompt_fix_doctor_free_turn_disabled_\u06f1_\u06a9\u0627\u0631\u062a_\u0644\u06cc\u0633\u062a_app_component_itemdoctor_js", "label": "\u06f1. \u06a9\u0627\u0631\u062a \u0644\u06cc\u0633\u062a \u2014 `app/component/ItemDoctor.js`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u06a9\u0627\u0631\u062a \u0644\u06cc\u0633\u062a \u2014 `app/component/ItemDoctor.js`", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_free_turn_disabled_\u06f2_\u0628\u0627\u06a9\u0633_\u062f\u0633\u06a9\u062a\u0627\u067e_components_doctor_appointmentlist_itemappointment_js", "label": "\u06f2. \u0628\u0627\u06a9\u0633 \u062f\u0633\u06a9\u062a\u0627\u067e \u2014 `components/doctor/appointmentList/ItemAppointment.js`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0628\u0627\u06a9\u0633 \u062f\u0633\u06a9\u062a\u0627\u067e \u2014 `components/doctor/appointmentList/ItemAppointment.js`", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_free_turn_disabled_\u06f3_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_components_doctor_appointmentlist_index_js", "label": "\u06f3. \u0646\u0648\u0627\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644 \u2014 `components/doctor/appointmentList/index.js`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0646\u0648\u0627\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644 \u2014 `components/doctor/appointmentList/index.js`", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 37, "community_name": "Community 37", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image", "label": "fix-doctor-poster-download-image.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-doctor-poster-download-image.md", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "label": "\u0631\u0641\u0639 \u0645\u0634\u06a9\u0644 \u0639\u06a9\u0633 \u0646\u0627\u062f\u0631\u0633\u062a \u062f\u0631 \u067e\u0648\u0633\u062a\u0631 \u062f\u0627\u0646\u0644\u0648\u062f\u06cc \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9 (\u0627\u0634\u062a\u0631\u0627\u06a9\u200c\u06af\u0630\u0627\u0631\u06cc)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0631\u0641\u0639 \u0645\u0634\u06a9\u0644 \u0639\u06a9\u0633 \u0646\u0627\u062f\u0631\u0633\u062a \u062f\u0631 \u067e\u0648\u0633\u062a\u0631 \u062f\u0627\u0646\u0644\u0648\u062f\u06cc \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9 (\u0627\u0634\u062a\u0631\u0627\u06a9\u200c\u06af\u0630\u0627\u0631\u06cc)", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 8}, {"id": "prompt_fix_doctor_poster_download_image_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 4}, {"id": "prompt_fix_doctor_poster_download_image_components_doctor_detaildoctor_list_js_\u0628\u062e\u0634_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "`components/doctor/detailDoctor/List.js` (\u0628\u062e\u0634 \u062f\u0627\u0646\u0644\u0648\u062f)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`components/doctor/detailDoctor/List.js` (\u0628\u062e\u0634 \u062f\u0627\u0646\u0644\u0648\u062f)", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image_components_doctor_poster_imageprofile_js", "label": "`components/doctor/poster/ImageProfile.js`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`components/doctor/poster/ImageProfile.js`", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image_components_doctor_poster_qrimg_js_\u062e\u0644\u0627\u0635\u0647", "label": "`components/doctor/poster/QrImg.js` (\u062e\u0644\u0627\u0635\u0647)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`components/doctor/poster/QrImg.js` (\u062e\u0644\u0627\u0635\u0647)", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 5}, {"id": "prompt_fix_doctor_poster_download_image_\u06f1_\u0645\u0646\u062a\u0638\u0631_\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc_\u06a9\u0627\u0645\u0644_\u0647\u0645\u0647_\u06cc_img_\u0647\u0627_\u0628\u0645\u0627\u0646_\u0642\u0628\u0644_\u0627\u0632_html2canvas", "label": "\u06f1. \u0645\u0646\u062a\u0638\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u06a9\u0627\u0645\u0644 \u0647\u0645\u0647\u200c\u06cc `<img>`\u0647\u0627 \u0628\u0645\u0627\u0646 \u0642\u0628\u0644 \u0627\u0632 `html2canvas`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0645\u0646\u062a\u0638\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u06a9\u0627\u0645\u0644 \u0647\u0645\u0647\u200c\u06cc `&lt;img&gt;`\u0647\u0627 \u0628\u0645\u0627\u0646 \u0642\u0628\u0644 \u0627\u0632 `html2canvas`", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image_\u06f2_\u0627\u0637\u0645\u06cc\u0646\u0627\u0646_\u0627\u0632_\u0622\u0645\u0627\u062f\u0647_\u0628\u0648\u062f\u0646_qr_\u0642\u0628\u0644_\u0627\u0632_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "\u06f2. \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u0627\u0632 \u0622\u0645\u0627\u062f\u0647 \u0628\u0648\u062f\u0646 QR \u0642\u0628\u0644 \u0627\u0632 \u062f\u0627\u0646\u0644\u0648\u062f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u0627\u0632 \u0622\u0645\u0627\u062f\u0647 \u0628\u0648\u062f\u0646 QR \u0642\u0628\u0644 \u0627\u0632 \u062f\u0627\u0646\u0644\u0648\u062f", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u0627_html2canvas", "label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0639\u06a9\u0633 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u0627 html2canvas", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0639\u06a9\u0633 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u0627 html2canvas", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image_\u06f4_ux_\u062f\u06a9\u0645\u0647_\u06cc_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "\u06f4. UX \u062f\u06a9\u0645\u0647\u200c\u06cc \u062f\u0627\u0646\u0644\u0648\u062f", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. UX \u062f\u06a9\u0645\u0647\u200c\u06cc \u062f\u0627\u0646\u0644\u0648\u062f", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctor_poster_download_image_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 31, "community_name": "Community 31", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance", "label": "fix-doctors-filter-performance.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-doctors-filter-performance.md", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "label": "\u0641\u06cc\u06a9\u0633 \u06a9\u0646\u062f\u06cc \u0648 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u0641\u06cc\u0644\u062a\u0631 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9\u0627\u0646", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u06cc\u06a9\u0633 \u06a9\u0646\u062f\u06cc \u0648 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u0641\u06cc\u0644\u062a\u0631 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9\u0627\u0646", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 7}, {"id": "prompt_fix_doctors_filter_performance_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 4}, {"id": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f1_\u0645\u0648\u062f\u0627\u0644_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u062f\u06cc\u0631_\u0628\u0633\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", "label": "\u0628\u0627\u06af \u06f1 \u2014 \u0645\u0648\u062f\u0627\u0644 \u0634\u0647\u0631/\u0627\u0633\u062a\u0627\u0646 \u062f\u06cc\u0631 \u0628\u0633\u062a\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u0627\u06af \u06f1 \u2014 \u0645\u0648\u062f\u0627\u0644 \u0634\u0647\u0631/\u0627\u0633\u062a\u0627\u0646 \u062f\u06cc\u0631 \u0628\u0633\u062a\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f2_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u06a9\u0627\u0631_\u0646\u0645\u06cc_\u06a9\u0646\u062f", "label": "\u0628\u0627\u06af \u06f2 \u2014 \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc \u06a9\u0627\u0631 \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u0627\u06af \u06f2 \u2014 \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc \u06a9\u0627\u0631 \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f3_\u06a9\u0646\u062f\u06cc_\u06a9\u0644\u06cc", "label": "\u0628\u0627\u06af \u06f3 \u2014 \u06a9\u0646\u062f\u06cc \u06a9\u0644\u06cc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u0627\u06af \u06f3 \u2014 \u06a9\u0646\u062f\u06cc \u06a9\u0644\u06cc", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 6}, {"id": "prompt_fix_doctors_filter_performance_\u06f1_\u0641\u06cc\u06a9\u0633_\u0628\u0633\u062a\u0646_\u0633\u0631\u06cc\u0639_\u0645\u0648\u062f\u0627\u0644_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646", "label": "\u06f1. \u0641\u06cc\u06a9\u0633 \u0628\u0633\u062a\u0646 \u0633\u0631\u06cc\u0639 \u0645\u0648\u062f\u0627\u0644 \u0634\u0647\u0631/\u0627\u0633\u062a\u0627\u0646", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0641\u06cc\u06a9\u0633 \u0628\u0633\u062a\u0646 \u0633\u0631\u06cc\u0639 \u0645\u0648\u062f\u0627\u0644 \u0634\u0647\u0631/\u0627\u0633\u062a\u0627\u0646", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance_\u06f2_\u0641\u06cc\u06a9\u0633_\u0628\u0633\u062a\u0646_\u0633\u0631\u06cc\u0639_\u0645\u0648\u062f\u0627\u0644_\u0641\u06cc\u0644\u062a\u0631", "label": "\u06f2. \u0641\u06cc\u06a9\u0633 \u0628\u0633\u062a\u0646 \u0633\u0631\u06cc\u0639 \u0645\u0648\u062f\u0627\u0644 \u0641\u06cc\u0644\u062a\u0631", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0641\u06cc\u06a9\u0633 \u0628\u0633\u062a\u0646 \u0633\u0631\u06cc\u0639 \u0645\u0648\u062f\u0627\u0644 \u0641\u06cc\u0644\u062a\u0631", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance_\u06f3_\u0641\u06cc\u06a9\u0633_crash_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0646\u06af\u0627\u0645_clear", "label": "\u06f3. \u0641\u06cc\u06a9\u0633 crash \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc \u0647\u0646\u06af\u0627\u0645 clear", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0641\u06cc\u06a9\u0633 crash \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc \u0647\u0646\u06af\u0627\u0645 clear", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance_\u06f4_\u0641\u06cc\u06a9\u0633_type_mismatch_\u062f\u0631_filterlist", "label": "\u06f4. \u0641\u06cc\u06a9\u0633 type mismatch \u062f\u0631 filterList", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0641\u06cc\u06a9\u0633 type mismatch \u062f\u0631 filterList", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance_\u06f5_\u0628\u0631\u0631\u0633\u06cc_\u06a9\u0646\u062f\u06cc_\u06a9\u0644\u06cc", "label": "\u06f5. \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u062f\u06cc \u06a9\u0644\u06cc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u062f\u06cc \u06a9\u0644\u06cc", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_doctors_filter_performance_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 32, "community_name": "Community 32", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_header_logged_state", "label": "fix-header-logged-state.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-header-logged-state.md", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "label": "\u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u00ab\u0648\u0631\u0648\u062f | \u062b\u0628\u062a\u200c\u0646\u0627\u0645\u00bb \u062f\u0631 \u0647\u062f\u0631 \u0628\u0627 \u0648\u062c\u0648\u062f \u0644\u0627\u06af\u06cc\u0646\u200c\u0628\u0648\u062f\u0646 \u06a9\u0627\u0631\u0628\u0631", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u00ab\u0648\u0631\u0648\u062f | \u062b\u0628\u062a\u200c\u0646\u0627\u0645\u00bb \u062f\u0631 \u0647\u062f\u0631 \u0628\u0627 \u0648\u062c\u0648\u062f \u0644\u0627\u06af\u06cc\u0646\u200c\u0628\u0648\u062f\u0646 \u06a9\u0627\u0631\u0628\u0631", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 8}, {"id": "prompt_fix_header_logged_state_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_header_logged_state_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_header_logged_state_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_header_logged_state_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 4}, {"id": "prompt_fix_header_logged_state_header_content_js_\u062a\u0635\u0645\u06cc\u0645_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_prop_\u0633\u0631\u0648\u0631", "label": "`header/Content.js` \u2014 \u062a\u0635\u0645\u06cc\u0645 \u0641\u0642\u0637 \u0628\u0631 \u0627\u0633\u0627\u0633 prop \u0633\u0631\u0648\u0631", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`header/Content.js` \u2014 \u062a\u0635\u0645\u06cc\u0645 \u0641\u0642\u0637 \u0628\u0631 \u0627\u0633\u0627\u0633 prop \u0633\u0631\u0648\u0631", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_header_logged_state_stlayout_js_\u0645\u0642\u062f\u0627\u0631_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u0648\u06a9\u06cc_\u0633\u0631\u0648\u0631", "label": "`StLayout.js` \u2014 \u0645\u0642\u062f\u0627\u0631 \u0627\u0648\u0644\u06cc\u0647 \u0627\u0632 \u06a9\u0648\u06a9\u06cc \u0633\u0631\u0648\u0631", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`StLayout.js` \u2014 \u0645\u0642\u062f\u0627\u0631 \u0627\u0648\u0644\u06cc\u0647 \u0627\u0632 \u06a9\u0648\u06a9\u06cc \u0633\u0631\u0648\u0631", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_header_logged_state_\u06a9\u0648\u06a9\u06cc_\u0647\u0627_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0633\u062a_\u0645\u06cc_\u0634\u0648\u0646\u062f_sendreq_js", "label": "\u06a9\u0648\u06a9\u06cc\u200c\u0647\u0627 \u0633\u0645\u062a \u06a9\u0644\u0627\u06cc\u0646\u062a \u0633\u062a \u0645\u06cc\u200c\u0634\u0648\u0646\u062f (`SendReq.js`)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06a9\u0648\u06a9\u06cc\u200c\u0647\u0627 \u0633\u0645\u062a \u06a9\u0644\u0627\u06cc\u0646\u062a \u0633\u062a \u0645\u06cc\u200c\u0634\u0648\u0646\u062f (`SendReq.js`)", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 4}, {"id": "prompt_fix_header_logged_state_\u06f1_\u062a\u0634\u062e\u06cc\u0635_\u0632\u0646\u062f\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u062f\u0631_header_content_js", "label": "\u06f1. \u062a\u0634\u062e\u06cc\u0635 \u0632\u0646\u062f\u0647\u200c\u06cc \u0644\u0627\u06af\u06cc\u0646 \u062f\u0631 `header/Content.js`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062a\u0634\u062e\u06cc\u0635 \u0632\u0646\u062f\u0647\u200c\u06cc \u0644\u0627\u06af\u06cc\u0646 \u062f\u0631 `header/Content.js`", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_header_logged_state_\u06f2_\u0648\u0627\u06a9\u0646\u0634_\u0628\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u0633\u06cc\u0631_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0648\u0644\u06cc_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647", "label": "\u06f2. \u0648\u0627\u06a9\u0646\u0634 \u0628\u0647 \u062a\u063a\u06cc\u06cc\u0631 \u0645\u0633\u06cc\u0631 (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u0648\u0644\u06cc \u062a\u0648\u0635\u06cc\u0647\u200c\u0634\u062f\u0647)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0648\u0627\u06a9\u0646\u0634 \u0628\u0647 \u062a\u063a\u06cc\u06cc\u0631 \u0645\u0633\u06cc\u0631 (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u0648\u0644\u06cc \u062a\u0648\u0635\u06cc\u0647\u200c\u0634\u062f\u0647)", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_header_logged_state_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_logout", "label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc logout", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc logout", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_header_logged_state_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 38, "community_name": "Community 38", "source_file": ".claude/prompt/fix-header-logged-state.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs", "label": "fix-login-bugs.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-login-bugs.md", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "label": "\u0641\u06cc\u06a9\u0633 \u062f\u0648 \u0628\u0627\u06af \u062f\u0631 \u0641\u0644\u0648 login", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u06cc\u06a9\u0633 \u062f\u0648 \u0628\u0627\u06af \u062f\u0631 \u0641\u0644\u0648 login", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 6}, {"id": "prompt_fix_login_bugs_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", "label": "\u0628\u0627\u06af \u06f1 \u2014 \u0634\u0645\u0627\u0631\u0647 \u0645\u0648\u0628\u0627\u06cc\u0644 \u0628\u0627 `09` \u0627\u0636\u0627\u0641\u06cc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u0627\u06af \u06f1 \u2014 \u0634\u0645\u0627\u0631\u0647 \u0645\u0648\u0628\u0627\u06cc\u0644 \u0628\u0627 `09` \u0627\u0636\u0627\u0641\u06cc", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 4}, {"id": "prompt_fix_login_bugs_\u0645\u0634\u06a9\u0644", "label": "\u0645\u0634\u06a9\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u0639\u0644\u062a", "label": "\u0639\u0644\u062a", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0639\u0644\u062a", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633", "label": "\u0641\u06cc\u06a9\u0633", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u06cc\u06a9\u0633", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "label": "\u0628\u0627\u06af \u06f2 \u2014 redirect \u0628\u0647 `/login` \u0628\u0639\u062f \u0627\u0632 refresh \u0635\u0641\u062d\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u0627\u06af \u06f2 \u2014 redirect \u0628\u0647 `/login` \u0628\u0639\u062f \u0627\u0632 refresh \u0635\u0641\u062d\u0647", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 6}, {"id": "prompt_fix_login_bugs_\u0645\u0634\u06a9\u0644_39", "label": "\u0645\u0634\u06a9\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u0639\u0644\u062a_\u0627\u062d\u062a\u0645\u0627\u0644\u06cc", "label": "\u0639\u0644\u062a \u0627\u062d\u062a\u0645\u0627\u0644\u06cc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0639\u0644\u062a \u0627\u062d\u062a\u0645\u0627\u0644\u06cc", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", "label": "\u0648\u0638\u0627\u06cc\u0641 \u0628\u0631\u0627\u06cc \u062f\u06cc\u0628\u0627\u06af \u0648 \u0641\u06cc\u06a9\u0633", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641 \u0628\u0631\u0627\u06cc \u062f\u06cc\u0628\u0627\u06af \u0648 \u0641\u06cc\u06a9\u0633", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 5}, {"id": "prompt_fix_login_bugs_\u06f1_\u0641\u06cc\u06a9\u0633_\u0628\u0627\u06af_\u06f1_\u0642\u0637\u0639\u06cc", "label": "\u06f1. \u0641\u06cc\u06a9\u0633 \u0628\u0627\u06af \u06f1 (\u0642\u0637\u0639\u06cc)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0641\u06cc\u06a9\u0633 \u0628\u0627\u06af \u06f1 (\u0642\u0637\u0639\u06cc)", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u06f2_\u0628\u0631\u0631\u0633\u06cc_userinfo_cookie", "label": "\u06f2. \u0628\u0631\u0631\u0633\u06cc `userInfo` cookie", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0628\u0631\u0631\u0633\u06cc `userInfo` cookie", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u06f3_\u0628\u0631\u0631\u0633\u06cc_endpoint_oauth_token_refresh", "label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc endpoint `/oauth/token/refresh`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0628\u0631\u0631\u0633\u06cc endpoint `/oauth/token/refresh`", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u06f4_redirect_\u0628\u0639\u062f_\u0627\u0632_login", "label": "\u06f4. redirect \u0628\u0639\u062f \u0627\u0632 login", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. redirect \u0628\u0639\u062f \u0627\u0632 login", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_bugs_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 17, "community_name": "Community 17", "source_file": ".claude/prompt/fix-login-bugs.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_session_userinfo", "label": "fix-login-session-userinfo.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-login-session-userinfo.md", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "label": "\u0631\u0641\u0639 \u0645\u0627\u0646\u062f\u0646 \u0635\u0641\u062d\u0647\u200c\u06cc \u0644\u0627\u06af\u06cc\u0646 \u0628\u0639\u062f \u0627\u0632 \u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0646 \u06a9\u062f OTP (\u0646\u0634\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0631\u0641\u0639 \u0645\u0627\u0646\u062f\u0646 \u0635\u0641\u062d\u0647\u200c\u06cc \u0644\u0627\u06af\u06cc\u0646 \u0628\u0639\u062f \u0627\u0632 \u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0646 \u06a9\u062f OTP (\u0646\u0634\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f)", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 8}, {"id": "prompt_fix_login_session_userinfo_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_session_userinfo_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_session_userinfo_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_session_userinfo_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_session_userinfo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 3}, {"id": "prompt_fix_login_session_userinfo_sendreq_js_getinfo_\u0628\u0627\u06af_\u062f\u0627\u0631", "label": "`SendReq.js` \u2192 `getInfo` (\u0628\u0627\u06af\u200c\u062f\u0627\u0631)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`SendReq.js` \u2192 `getInfo` (\u0628\u0627\u06af\u200c\u062f\u0627\u0631)", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_session_userinfo_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_get_oauth_userinfo_\u0627\u0632_clinicpro_docs_api_auth_md", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0648\u0627\u0642\u0639\u06cc `GET /oauth/userinfo` (\u0627\u0632 `clinicpro/docs/api/auth.md`)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0648\u0627\u0642\u0639\u06cc `GET /oauth/userinfo` (\u0627\u0632 `clinicpro/docs/api/auth.md`)", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 4}, {"id": "prompt_fix_login_session_userinfo_\u06f1_\u062e\u0648\u0627\u0646\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631_\u0627\u0632_res_data_\u0648_\u0633\u062a_\u06a9\u0631\u062f\u0646_\u06a9\u0648\u06a9\u06cc_\u0628\u0627_\u0634\u06cc\u0621_\u06a9\u0627\u0631\u0628\u0631", "label": "\u06f1. \u062e\u0648\u0627\u0646\u062f\u0646 \u06a9\u0627\u0631\u0628\u0631 \u0627\u0632 `res.data` \u0648 \u0633\u062a\u200c\u06a9\u0631\u062f\u0646 \u06a9\u0648\u06a9\u06cc \u0628\u0627 \u0634\u06cc\u0621 \u06a9\u0627\u0631\u0628\u0631", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062e\u0648\u0627\u0646\u062f\u0646 \u06a9\u0627\u0631\u0628\u0631 \u0627\u0632 `res.data` \u0648 \u0633\u062a\u200c\u06a9\u0631\u062f\u0646 \u06a9\u0648\u06a9\u06cc \u0628\u0627 \u0634\u06cc\u0621 \u06a9\u0627\u0631\u0628\u0631", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_session_userinfo_\u06f2_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0645\u0635\u0631\u0641_\u06a9\u0646\u0646\u062f\u0647_\u0647\u0627\u06cc_username", "label": "\u06f2. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0645\u0635\u0631\u0641\u200c\u06a9\u0646\u0646\u062f\u0647\u200c\u0647\u0627\u06cc `username`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0645\u0635\u0631\u0641\u200c\u06a9\u0646\u0646\u062f\u0647\u200c\u0647\u0627\u06cc `username`", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_session_userinfo_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u0639\u062f\u0645_\u0645\u0627\u0646\u062f\u0646_\u0628\u06cc_\u0635\u062f\u0627", "label": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f \u0639\u062f\u0645 \u0645\u0627\u0646\u062f\u0646 \u0628\u06cc\u200c\u0635\u062f\u0627", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f \u0639\u062f\u0645 \u0645\u0627\u0646\u062f\u0646 \u0628\u06cc\u200c\u0635\u062f\u0627", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_login_session_userinfo_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 41, "community_name": "Community 41", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_my_appointments_status_filter", "label": "fix-my-appointments-status-filter.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-my-appointments-status-filter.md", "community": 61, "community_name": "Community 61", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "label": "\u0631\u0641\u0639 \u0641\u06cc\u0644\u062a\u0631 \u0648\u0636\u0639\u06cc\u062a \u062f\u0631 \u00ab\u0646\u0648\u0628\u062a\u200c\u0647\u0627\u06cc \u0645\u0646\u00bb (\u0646\u0648\u0628\u062a \u062b\u0628\u062a\u200c\u0634\u062f\u0647 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0631\u0641\u0639 \u0641\u06cc\u0644\u062a\u0631 \u0648\u0636\u0639\u06cc\u062a \u062f\u0631 \u00ab\u0646\u0648\u0628\u062a\u200c\u0647\u0627\u06cc \u0645\u0646\u00bb (\u0646\u0648\u0628\u062a \u062b\u0628\u062a\u200c\u0634\u062f\u0647 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f)", "community": 61, "community_name": "Community 61", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "file_type": "document", "degree": 8}, {"id": "prompt_fix_my_appointments_status_filter_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 61, "community_name": "Community 61", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_my_appointments_status_filter_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 61, "community_name": "Community 61", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_my_appointments_status_filter_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 61, "community_name": "Community 61", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_my_appointments_status_filter_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 61, "community_name": "Community 61", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_my_appointments_status_filter_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 61, "community_name": "Community 61", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_my_appointments_status_filter_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 61, "community_name": "Community 61", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "file_type": "document", "degree": 3}, {"id": "prompt_fix_my_appointments_status_filter_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0634\u062a_\u062a\u0628_\u0647\u0627_\u062f\u0631_head_js", "label": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u0646\u06af\u0627\u0634\u062a \u062a\u0628\u200c\u0647\u0627 \u062f\u0631 `Head.js`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u0646\u06af\u0627\u0634\u062a \u062a\u0628\u200c\u0647\u0627 \u062f\u0631 `Head.js`", "community": 61, "community_name": "Community 61", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_my_appointments_status_filter_\u06f2_\u062a\u0623\u06cc\u06cc\u062f_\u062c\u0631\u06cc\u0627\u0646", "label": "\u06f2. \u062a\u0623\u06cc\u06cc\u062f \u062c\u0631\u06cc\u0627\u0646", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u062a\u0623\u06cc\u06cc\u062f \u062c\u0631\u06cc\u0627\u0646", "community": 61, "community_name": "Community 61", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_my_appointments_status_filter_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 61, "community_name": "Community 61", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_payment_gateway_flow", "label": "fix-payment-gateway-flow.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-payment-gateway-flow.md", "community": 53, "community_name": "Community 53", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "label": "\u0627\u0635\u0644\u0627\u062d \u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a: \u0627\u0646\u062a\u062e\u0627\u0628 \u0641\u0642\u0637 \u062f\u0631\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0641\u0639\u0627\u0644\u0650 \u0628\u06a9\u200c\u0627\u0646\u062f + \u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u062f\u0627\u0645\u0646\u0647 \u0645\u0628\u062f\u0623", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0627\u0635\u0644\u0627\u062d \u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a: \u0627\u0646\u062a\u062e\u0627\u0628 \u0641\u0642\u0637 \u062f\u0631\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0641\u0639\u0627\u0644\u0650 \u0628\u06a9\u200c\u0627\u0646\u062f + \u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u062f\u0627\u0645\u0646\u0647 \u0645\u0628\u062f\u0623", "community": 53, "community_name": "Community 53", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "file_type": "document", "degree": 8}, {"id": "prompt_fix_payment_gateway_flow_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 53, "community_name": "Community 53", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_payment_gateway_flow_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 53, "community_name": "Community 53", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_payment_gateway_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 53, "community_name": "Community 53", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_payment_gateway_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 53, "community_name": "Community 53", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_payment_gateway_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 53, "community_name": "Community 53", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 53, "community_name": "Community 53", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "file_type": "document", "degree": 4}, {"id": "prompt_fix_payment_gateway_flow_\u06f1_\u062e\u0648\u0627\u0646\u062f\u0646_gateways_\u0627\u0632_config_\u0648_\u0646\u06af\u0647_\u062f\u0627\u0631\u06cc_\u062f\u0631_state", "label": "\u06f1. \u062e\u0648\u0627\u0646\u062f\u0646 `gateways` \u0627\u0632 config \u0648 \u0646\u06af\u0647\u200c\u062f\u0627\u0631\u06cc \u062f\u0631 state", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062e\u0648\u0627\u0646\u062f\u0646 `gateways` \u0627\u0632 config \u0648 \u0646\u06af\u0647\u200c\u062f\u0627\u0631\u06cc \u062f\u0631 state", "community": 53, "community_name": "Community 53", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_payment_gateway_flow_\u06f2_\u067e\u0631_\u06a9\u0631\u062f\u0646_select_\u0627\u0632_gateways_\u0641\u0639\u0627\u0644", "label": "\u06f2. \u067e\u0631 \u06a9\u0631\u062f\u0646 Select \u0627\u0632 `gateways` \u0641\u0639\u0627\u0644", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u067e\u0631 \u06a9\u0631\u062f\u0646 Select \u0627\u0632 `gateways` \u0641\u0639\u0627\u0644", "community": 53, "community_name": "Community 53", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_payment_gateway_flow_\u06f3_\u0627\u0631\u0633\u0627\u0644_\u062f\u0631\u06af\u0627\u0647_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f\u0647_\u0648_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u062f\u06a9\u0645\u0647_\u062f\u0631_\u0646\u0628\u0648\u062f_\u062f\u0631\u06af\u0627\u0647", "label": "\u06f3. \u0627\u0631\u0633\u0627\u0644 \u062f\u0631\u06af\u0627\u0647 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647 \u0648 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u062f\u06a9\u0645\u0647 \u062f\u0631 \u0646\u0628\u0648\u062f \u062f\u0631\u06af\u0627\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0627\u0631\u0633\u0627\u0644 \u062f\u0631\u06af\u0627\u0647 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647 \u0648 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u062f\u06a9\u0645\u0647 \u062f\u0631 \u0646\u0628\u0648\u062f \u062f\u0631\u06af\u0627\u0647", "community": 53, "community_name": "Community 53", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_payment_gateway_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 53, "community_name": "Community 53", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_sitemap_build_fetch_failed", "label": "fix-sitemap-build-fetch-failed.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-sitemap-build-fetch-failed.md", "community": 82, "community_name": "Community 82", "source_file": ".claude/prompt/fix-sitemap-build-fetch-failed.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_sitemap_build_fetch_failed_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_typeerror_fetch_failed_\u062f\u0631_sitemap_\u0647\u0646\u06af\u0627\u0645_\u062f\u06cc\u067e\u0644\u0648\u06cc_docker_build", "label": "\u0631\u0641\u0639 \u062e\u0637\u0627\u06cc `TypeError: fetch failed` \u062f\u0631 sitemap \u0647\u0646\u06af\u0627\u0645 \u062f\u06cc\u067e\u0644\u0648\u06cc (Docker build)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0631\u0641\u0639 \u062e\u0637\u0627\u06cc `TypeError: fetch failed` \u062f\u0631 sitemap \u0647\u0646\u06af\u0627\u0645 \u062f\u06cc\u067e\u0644\u0648\u06cc (Docker build)", "community": 82, "community_name": "Community 82", "source_file": ".claude/prompt/fix-sitemap-build-fetch-failed.md", "file_type": "document", "degree": 8}, {"id": "prompt_fix_sitemap_build_fetch_failed_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 82, "community_name": "Community 82", "source_file": ".claude/prompt/fix-sitemap-build-fetch-failed.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_sitemap_build_fetch_failed_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 82, "community_name": "Community 82", "source_file": ".claude/prompt/fix-sitemap-build-fetch-failed.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_sitemap_build_fetch_failed_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 82, "community_name": "Community 82", "source_file": ".claude/prompt/fix-sitemap-build-fetch-failed.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_sitemap_build_fetch_failed_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 82, "community_name": "Community 82", "source_file": ".claude/prompt/fix-sitemap-build-fetch-failed.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_sitemap_build_fetch_failed_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 82, "community_name": "Community 82", "source_file": ".claude/prompt/fix-sitemap-build-fetch-failed.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_sitemap_build_fetch_failed_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 82, "community_name": "Community 82", "source_file": ".claude/prompt/fix-sitemap-build-fetch-failed.md", "file_type": "document", "degree": 4}, {"id": "prompt_fix_sitemap_build_fetch_failed_\u06f1_\u0627\u062c\u0628\u0627\u0631_sitemap_\u0628\u0647_\u0631\u0646\u062f\u0631_\u062f\u0631_\u0632\u0645\u0627\u0646_\u0627\u062c\u0631\u0627_\u0646\u0647_build", "label": "\u06f1. \u0627\u062c\u0628\u0627\u0631 sitemap \u0628\u0647 \u0631\u0646\u062f\u0631 \u062f\u0631 \u0632\u0645\u0627\u0646 \u0627\u062c\u0631\u0627 (\u0646\u0647 build)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0627\u062c\u0628\u0627\u0631 sitemap \u0628\u0647 \u0631\u0646\u062f\u0631 \u062f\u0631 \u0632\u0645\u0627\u0646 \u0627\u062c\u0631\u0627 (\u0646\u0647 build)", "community": 82, "community_name": "Community 82", "source_file": ".claude/prompt/fix-sitemap-build-fetch-failed.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_sitemap_build_fetch_failed_\u06f2_\u0645\u0642\u0627\u0648\u0645_\u0633\u0627\u0632\u06cc_fetch_\u0628\u0627_timeout", "label": "\u06f2. \u0645\u0642\u0627\u0648\u0645\u200c\u0633\u0627\u0632\u06cc fetch \u0628\u0627 timeout", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0645\u0642\u0627\u0648\u0645\u200c\u0633\u0627\u0632\u06cc fetch \u0628\u0627 timeout", "community": 82, "community_name": "Community 82", "source_file": ".claude/prompt/fix-sitemap-build-fetch-failed.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_sitemap_build_fetch_failed_\u06f3_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0644\u0627\u06af_\u062a\u0645\u06cc\u0632\u062a\u0631_\u0628\u0631\u0627\u06cc_\u0634\u0628\u06a9\u0647_\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0646\u0628\u0648\u062f\u0646", "label": "\u06f3. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc) \u0644\u0627\u06af \u062a\u0645\u06cc\u0632\u062a\u0631 \u0628\u0631\u0627\u06cc \u0634\u0628\u06a9\u0647\u200c\u06cc \u062f\u0631 \u062f\u0633\u062a\u0631\u0633\u200c\u0646\u0628\u0648\u062f\u0646", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc) \u0644\u0627\u06af \u062a\u0645\u06cc\u0632\u062a\u0631 \u0628\u0631\u0627\u06cc \u0634\u0628\u06a9\u0647\u200c\u06cc \u062f\u0631 \u062f\u0633\u062a\u0631\u0633\u200c\u0646\u0628\u0648\u062f\u0646", "community": 82, "community_name": "Community 82", "source_file": ".claude/prompt/fix-sitemap-build-fetch-failed.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_sitemap_build_fetch_failed_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 82, "community_name": "Community 82", "source_file": ".claude/prompt/fix-sitemap-build-fetch-failed.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_token_storage_xss_headers", "label": "fix-token-storage-xss-headers.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fix-token-storage-xss-headers.md", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "label": "\u0633\u062e\u062a\u200c\u0633\u0627\u0632\u06cc \u0627\u0645\u0646\u06cc\u062a\u06cc \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc: \u0630\u062e\u06cc\u0631\u0647\u200c\u06cc \u062a\u0648\u06a9\u0646\u060c XSS\u060c \u0647\u062f\u0631\u0647\u0627\u060c client_secret", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0633\u062e\u062a\u200c\u0633\u0627\u0632\u06cc \u0627\u0645\u0646\u06cc\u062a\u06cc \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc: \u0630\u062e\u06cc\u0631\u0647\u200c\u06cc \u062a\u0648\u06a9\u0646\u060c XSS\u060c \u0647\u062f\u0631\u0647\u0627\u060c client_secret", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 8}, {"id": "prompt_fix_token_storage_xss_headers_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_token_storage_xss_headers_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_token_storage_xss_headers_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_token_storage_xss_headers_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_token_storage_xss_headers_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 5}, {"id": "prompt_fix_token_storage_xss_headers_\u06f1_oauth_\u0633\u062a_\u06a9\u0648\u06a9\u06cc_\u062f\u0631_\u06cc\u06a9_route_handler_\u0633\u0631\u0648\u0631_\u0633\u0627\u06cc\u062f_c_2_h_3", "label": "\u06f1. OAuth + \u0633\u062a \u06a9\u0648\u06a9\u06cc \u062f\u0631 \u06cc\u06a9 Route Handler \u0633\u0631\u0648\u0631-\u0633\u0627\u06cc\u062f (C-2, H-3)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. OAuth + \u0633\u062a \u06a9\u0648\u06a9\u06cc \u062f\u0631 \u06cc\u06a9 Route Handler \u0633\u0631\u0648\u0631-\u0633\u0627\u06cc\u062f (C-2, H-3)", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_token_storage_xss_headers_\u06f2_\u0645\u062f\u06cc\u0631\u06cc\u062a_access_token_\u062f\u0631_memory_\u0628\u0647_\u062c\u0627\u06cc_\u06a9\u0648\u06a9\u06cc_js_c_2", "label": "\u06f2. \u0645\u062f\u06cc\u0631\u06cc\u062a access token \u062f\u0631 memory \u0628\u0647\u200c\u062c\u0627\u06cc \u06a9\u0648\u06a9\u06cc JS (C-2)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0645\u062f\u06cc\u0631\u06cc\u062a access token \u062f\u0631 memory \u0628\u0647\u200c\u062c\u0627\u06cc \u06a9\u0648\u06a9\u06cc JS (C-2)", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_token_storage_xss_headers_\u06f3_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_sanitizer_\u0628\u0627_dompurify_c_3", "label": "\u06f3. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc sanitizer \u0628\u0627 DOMPurify (C-3)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc sanitizer \u0628\u0627 DOMPurify (C-3)", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_token_storage_xss_headers_\u06f4_security_headers_\u062f\u0631_next_config_js_h_2", "label": "\u06f4. Security headers \u062f\u0631 next.config.js (H-2)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. Security headers \u062f\u0631 next.config.js (H-2)", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 1}, {"id": "prompt_fix_token_storage_xss_headers_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 48, "community_name": "Community 48", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "file_type": "document", "degree": 1}, {"id": "prompt_global_rep_domain_site", "label": "global-rep-domain-site.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "global-rep-domain-site.md", "community": 79, "community_name": "Community 79", "source_file": ".claude/prompt/global-rep-domain-site.md", "file_type": "document", "degree": 1}, {"id": "prompt_global_rep_domain_site_\u0633\u0627\u06cc\u062a_\u062f\u0627\u0645\u0646\u0647_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062a\u0634\u062e\u06cc\u0635_\u062f\u0627\u0645\u0646\u0647_\u0641\u06cc\u0644\u062a\u0631_\u067e\u0632\u0634\u06a9\u0627\u0646_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627", "label": "\u0633\u0627\u06cc\u062a \u062f\u0627\u0645\u0646\u0647 \u0627\u062e\u062a\u0635\u0627\u0635\u06cc \u0646\u0645\u0627\u06cc\u0646\u062f\u0647 \u0633\u0631\u0627\u0633\u0631\u06cc \u2014 \u062a\u0634\u062e\u06cc\u0635 \u062f\u0627\u0645\u0646\u0647\u060c \u0641\u06cc\u0644\u062a\u0631 \u067e\u0632\u0634\u06a9\u0627\u0646/\u06a9\u0644\u06cc\u0646\u06cc\u06a9\u200c\u0647\u0627", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0633\u0627\u06cc\u062a \u062f\u0627\u0645\u0646\u0647 \u0627\u062e\u062a\u0635\u0627\u0635\u06cc \u0646\u0645\u0627\u06cc\u0646\u062f\u0647 \u0633\u0631\u0627\u0633\u0631\u06cc \u2014 \u062a\u0634\u062e\u06cc\u0635 \u062f\u0627\u0645\u0646\u0647\u060c \u0641\u06cc\u0644\u062a\u0631 \u067e\u0632\u0634\u06a9\u0627\u0646/\u06a9\u0644\u06cc\u0646\u06cc\u06a9\u200c\u0647\u0627", "community": 79, "community_name": "Community 79", "source_file": ".claude/prompt/global-rep-domain-site.md", "file_type": "document", "degree": 8}, {"id": "prompt_global_rep_domain_site_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 79, "community_name": "Community 79", "source_file": ".claude/prompt/global-rep-domain-site.md", "file_type": "document", "degree": 1}, {"id": "prompt_global_rep_domain_site_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 79, "community_name": "Community 79", "source_file": ".claude/prompt/global-rep-domain-site.md", "file_type": "document", "degree": 1}, {"id": "prompt_global_rep_domain_site_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 79, "community_name": "Community 79", "source_file": ".claude/prompt/global-rep-domain-site.md", "file_type": "document", "degree": 1}, {"id": "prompt_global_rep_domain_site_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 79, "community_name": "Community 79", "source_file": ".claude/prompt/global-rep-domain-site.md", "file_type": "document", "degree": 1}, {"id": "prompt_global_rep_domain_site_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 79, "community_name": "Community 79", "source_file": ".claude/prompt/global-rep-domain-site.md", "file_type": "document", "degree": 1}, {"id": "prompt_global_rep_domain_site_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 79, "community_name": "Community 79", "source_file": ".claude/prompt/global-rep-domain-site.md", "file_type": "document", "degree": 4}, {"id": "prompt_global_rep_domain_site_\u06f1_\u062a\u0648\u0633\u0639\u0647_getstateinfo_repcontext", "label": "\u06f1. \u062a\u0648\u0633\u0639\u0647 `getStateInfo` \u2014 repContext", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062a\u0648\u0633\u0639\u0647 `getStateInfo` \u2014 repContext", "community": 79, "community_name": "Community 79", "source_file": ".claude/prompt/global-rep-domain-site.md", "file_type": "document", "degree": 1}, {"id": "prompt_global_rep_domain_site_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_domain_\u062f\u0631_\u0644\u06cc\u0633\u062a_\u0647\u0627", "label": "\u06f2. \u067e\u0627\u0633 \u062f\u0627\u062f\u0646 `domain` \u062f\u0631 \u0644\u06cc\u0633\u062a\u200c\u0647\u0627", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u067e\u0627\u0633 \u062f\u0627\u062f\u0646 `domain` \u062f\u0631 \u0644\u06cc\u0633\u062a\u200c\u0647\u0627", "community": 79, "community_name": "Community 79", "source_file": ".claude/prompt/global-rep-domain-site.md", "file_type": "document", "degree": 1}, {"id": "prompt_global_rep_domain_site_\u06f3_\u0645\u062a\u0627\u062f\u06cc\u062a\u0627_\u0648_\u0628\u0631\u0646\u062f\u06cc\u0646\u06af_\u062f\u0627\u0645\u0646\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", "label": "\u06f3. \u0645\u062a\u0627\u062f\u06cc\u062a\u0627 \u0648 \u0628\u0631\u0646\u062f\u06cc\u0646\u06af \u062f\u0627\u0645\u0646\u0647 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0645\u062a\u0627\u062f\u06cc\u062a\u0627 \u0648 \u0628\u0631\u0646\u062f\u06cc\u0646\u06af \u062f\u0627\u0645\u0646\u0647 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647", "community": 79, "community_name": "Community 79", "source_file": ".claude/prompt/global-rep-domain-site.md", "file_type": "document", "degree": 1}, {"id": "prompt_global_rep_domain_site_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 79, "community_name": "Community 79", "source_file": ".claude/prompt/global-rep-domain-site.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy", "label": "liara-deploy.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "liara-deploy.md", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "label": "\u062f\u06cc\u067e\u0644\u0648\u06cc nobat724_front \u0631\u0648\u06cc Liara (\u067e\u0644\u062a\u0641\u0631\u0645 Next.js)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u062f\u06cc\u067e\u0644\u0648\u06cc nobat724_front \u0631\u0648\u06cc Liara (\u067e\u0644\u062a\u0641\u0631\u0645 Next.js)", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 8}, {"id": "prompt_liara_deploy_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 9}, {"id": "prompt_liara_deploy_\u06f1_\u062d\u0630\u0641_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_\u062a\u06a9\u0631\u0627\u0631\u06cc", "label": "\u06f1. \u062d\u0630\u0641 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af \u062a\u06a9\u0631\u0627\u0631\u06cc", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062d\u0630\u0641 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af \u062a\u06a9\u0631\u0627\u0631\u06cc", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u06f2_\u062a\u0639\u06cc\u06cc\u0646_\u0646\u0633\u062e\u0647_node_\u062f\u0631_package_json", "label": "\u06f2. \u062a\u0639\u06cc\u06cc\u0646 \u0646\u0633\u062e\u0647 Node \u062f\u0631 `package.json`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u062a\u0639\u06cc\u06cc\u0646 \u0646\u0633\u062e\u0647 Node \u062f\u0631 `package.json`", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u06f3_\u0633\u0627\u062e\u062a_liara_json", "label": "\u06f3. \u0633\u0627\u062e\u062a `liara.json`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0633\u0627\u062e\u062a `liara.json`", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u06f4_\u0633\u0627\u062e\u062a_liaraignore", "label": "\u06f4. \u0633\u0627\u062e\u062a `.liaraignore`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0633\u0627\u062e\u062a `.liaraignore`", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u06f5_\u0633\u062a_\u06a9\u0631\u062f\u0646_env_\u0631\u0648\u06cc_liara_\u0642\u0628\u0644_\u0627\u0632_\u0627\u0648\u0644\u06cc\u0646_build", "label": "\u06f5. \u0633\u062a \u06a9\u0631\u062f\u0646 env \u0631\u0648\u06cc Liara (\u0642\u0628\u0644 \u0627\u0632 \u0627\u0648\u0644\u06cc\u0646 build)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u0633\u062a \u06a9\u0631\u062f\u0646 env \u0631\u0648\u06cc Liara (\u0642\u0628\u0644 \u0627\u0632 \u0627\u0648\u0644\u06cc\u0646 build)", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u06f6_\u0627\u062a\u0635\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627\u06cc_\u0686\u0646\u062f_\u0634\u0647\u0631\u06cc", "label": "\u06f6. \u0627\u062a\u0635\u0627\u0644 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627\u06cc \u0686\u0646\u062f-\u0634\u0647\u0631\u06cc", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. \u0627\u062a\u0635\u0627\u0644 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627\u06cc \u0686\u0646\u062f-\u0634\u0647\u0631\u06cc", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u06f7_\u062f\u0631_\u0635\u0648\u0631\u062a_\u0646\u06cc\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u062f\u0627\u0645\u0646\u0647_backend_\u0628\u0647_images_remotepatterns", "label": "\u06f7. (\u062f\u0631 \u0635\u0648\u0631\u062a \u0646\u06cc\u0627\u0632) \u0627\u0641\u0632\u0648\u062f\u0646 \u062f\u0627\u0645\u0646\u0647 backend \u0628\u0647 `images.remotePatterns`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f7. (\u062f\u0631 \u0635\u0648\u0631\u062a \u0646\u06cc\u0627\u0632) \u0627\u0641\u0632\u0648\u062f\u0646 \u062f\u0627\u0645\u0646\u0647 backend \u0628\u0647 `images.remotePatterns`", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u06f8_\u062f\u06cc\u067e\u0644\u0648\u06cc", "label": "\u06f8. \u062f\u06cc\u067e\u0644\u0648\u06cc", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f8. \u062f\u06cc\u067e\u0644\u0648\u06cc", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_liara_deploy_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 28, "community_name": "Community 28", "source_file": ".claude/prompt/liara-deploy.md", "file_type": "document", "degree": 1}, {"id": "prompt_login_redirect_back", "label": "login-redirect-back.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "login-redirect-back.md", "community": 375, "community_name": "Community 375", "source_file": ".claude/prompt/login-redirect-back.md", "file_type": "document", "degree": 1}, {"id": "prompt_login_redirect_back_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u0635\u0641\u062d\u0647_\u0645\u0628\u062f\u0623_\u0628\u0639\u062f_\u0627\u0632_\u0644\u0627\u06af\u06cc\u0646_redirect_back", "label": "\u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u0635\u0641\u062d\u0647\u0654 \u0645\u0628\u062f\u0623 \u0628\u0639\u062f \u0627\u0632 \u0644\u0627\u06af\u06cc\u0646 (redirect-back)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u0635\u0641\u062d\u0647\u0654 \u0645\u0628\u062f\u0623 \u0628\u0639\u062f \u0627\u0632 \u0644\u0627\u06af\u06cc\u0646 (redirect-back)", "community": 375, "community_name": "Community 375", "source_file": ".claude/prompt/login-redirect-back.md", "file_type": "document", "degree": 8}, {"id": "prompt_login_redirect_back_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 375, "community_name": "Community 375", "source_file": ".claude/prompt/login-redirect-back.md", "file_type": "document", "degree": 1}, {"id": "prompt_login_redirect_back_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 375, "community_name": "Community 375", "source_file": ".claude/prompt/login-redirect-back.md", "file_type": "document", "degree": 1}, {"id": "prompt_login_redirect_back_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 375, "community_name": "Community 375", "source_file": ".claude/prompt/login-redirect-back.md", "file_type": "document", "degree": 1}, {"id": "prompt_login_redirect_back_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 375, "community_name": "Community 375", "source_file": ".claude/prompt/login-redirect-back.md", "file_type": "document", "degree": 1}, {"id": "prompt_login_redirect_back_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 375, "community_name": "Community 375", "source_file": ".claude/prompt/login-redirect-back.md", "file_type": "document", "degree": 1}, {"id": "prompt_login_redirect_back_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 375, "community_name": "Community 375", "source_file": ".claude/prompt/login-redirect-back.md", "file_type": "document", "degree": 4}, {"id": "prompt_login_redirect_back_\u06f1_\u0644\u06cc\u0646\u06a9_\u0644\u0627\u06af\u06cc\u0646_\u0647\u062f\u0631_\u0627\u0635\u0644\u06cc_\u062a\u0631\u06cc\u0646", "label": "\u06f1. \u0644\u06cc\u0646\u06a9 \u0644\u0627\u06af\u06cc\u0646 \u0647\u062f\u0631 (\u0627\u0635\u0644\u06cc\u200c\u062a\u0631\u06cc\u0646)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0644\u06cc\u0646\u06a9 \u0644\u0627\u06af\u06cc\u0646 \u0647\u062f\u0631 (\u0627\u0635\u0644\u06cc\u200c\u062a\u0631\u06cc\u0646)", "community": 375, "community_name": "Community 375", "source_file": ".claude/prompt/login-redirect-back.md", "file_type": "document", "degree": 1}, {"id": "prompt_login_redirect_back_\u06f2_\u0646\u0627\u0648\u0628\u0631\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0635\u0641\u062d\u0647_\u067e\u0631\u062f\u0627\u062e\u062a", "label": "\u06f2. \u0646\u0627\u0648\u0628\u0631\u06cc \u0644\u0627\u06af\u06cc\u0646 \u0635\u0641\u062d\u0647\u0654 \u067e\u0631\u062f\u0627\u062e\u062a", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0646\u0627\u0648\u0628\u0631\u06cc \u0644\u0627\u06af\u06cc\u0646 \u0635\u0641\u062d\u0647\u0654 \u067e\u0631\u062f\u0627\u062e\u062a", "community": 375, "community_name": "Community 375", "source_file": ".claude/prompt/login-redirect-back.md", "file_type": "document", "degree": 1}, {"id": "prompt_login_redirect_back_\u06f3_redirect_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "label": "\u06f3. redirect \u0633\u0645\u062a \u0633\u0631\u0648\u0631 \u062f\u0627\u0634\u0628\u0648\u0631\u062f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. redirect \u0633\u0645\u062a \u0633\u0631\u0648\u0631 \u062f\u0627\u0634\u0628\u0648\u0631\u062f", "community": 375, "community_name": "Community 375", "source_file": ".claude/prompt/login-redirect-back.md", "file_type": "document", "degree": 1}, {"id": "prompt_login_redirect_back_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 375, "community_name": "Community 375", "source_file": ".claude/prompt/login-redirect-back.md", "file_type": "document", "degree": 1}, {"id": "prompt_maintenance_mode_client", "label": "maintenance-mode-client.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "maintenance-mode-client.md", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 1}, {"id": "prompt_maintenance_mode_client_\u0646\u0645\u0627\u06cc\u0634_\u062d\u0627\u0644\u062a_\u062a\u0639\u0645\u06cc\u0631\u0627\u062a_maintenance_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "label": "\u0646\u0645\u0627\u06cc\u0634 \u062d\u0627\u0644\u062a \u062a\u0639\u0645\u06cc\u0631\u0627\u062a (Maintenance) \u062f\u0631 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u0645\u0627\u06cc\u0634 \u062d\u0627\u0644\u062a \u062a\u0639\u0645\u06cc\u0631\u0627\u062a (Maintenance) \u062f\u0631 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 7}, {"id": "prompt_maintenance_mode_client_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 1}, {"id": "prompt_maintenance_mode_client_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 1}, {"id": "prompt_maintenance_mode_client_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 1}, {"id": "prompt_maintenance_mode_client_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 1}, {"id": "prompt_maintenance_mode_client_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 6}, {"id": "prompt_maintenance_mode_client_\u06f1_helper_\u0645\u0634\u062a\u0631\u06a9_\u062a\u0634\u062e\u06cc\u0635", "label": "\u06f1. helper \u0645\u0634\u062a\u0631\u06a9 \u062a\u0634\u062e\u06cc\u0635", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. helper \u0645\u0634\u062a\u0631\u06a9 \u062a\u0634\u062e\u06cc\u0635", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 1}, {"id": "prompt_maintenance_mode_client_\u06f2_\u062a\u0634\u062e\u06cc\u0635_client_side_\u062f\u0631_interceptor", "label": "\u06f2. \u062a\u0634\u062e\u06cc\u0635 client-side \u062f\u0631 interceptor", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u062a\u0634\u062e\u06cc\u0635 client-side \u062f\u0631 interceptor", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 1}, {"id": "prompt_maintenance_mode_client_\u06f3_\u062a\u0634\u062e\u06cc\u0635_server_side_\u062f\u0631_fetchreq", "label": "\u06f3. \u062a\u0634\u062e\u06cc\u0635 server-side \u062f\u0631 `fetchReq`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u0634\u062e\u06cc\u0635 server-side \u062f\u0631 `fetchReq`", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 1}, {"id": "prompt_maintenance_mode_client_\u06f4_\u0635\u0641\u062d\u0647_maintenance", "label": "\u06f4. \u0635\u0641\u062d\u0647 `/maintenance`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0635\u0641\u062d\u0647 `/maintenance`", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 1}, {"id": "prompt_maintenance_mode_client_\u06f5_\u062c\u0644\u0648\u06af\u06cc\u0631\u06cc_\u0627\u0632_\u062d\u0644\u0642\u0647", "label": "\u06f5. \u062c\u0644\u0648\u06af\u06cc\u0631\u06cc \u0627\u0632 \u062d\u0644\u0642\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u062c\u0644\u0648\u06af\u06cc\u0631\u06cc \u0627\u0632 \u062d\u0644\u0642\u0647", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 1}, {"id": "prompt_maintenance_mode_client_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 367, "community_name": "Community 367", "source_file": ".claude/prompt/maintenance-mode-client.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city", "label": "nobat724-root-domain-not-city.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "nobat724-root-domain-not-city.md", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "label": "\u062f\u0627\u0645\u0646\u0647\u0654 \u0631\u06cc\u0634\u0647\u0654 nobat724.com \u0646\u0628\u0627\u06cc\u062f \u0645\u062b\u0644 \u00ab\u0634\u0647\u0631\u00bb \u0631\u0641\u062a\u0627\u0631 \u06a9\u0646\u062f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u062f\u0627\u0645\u0646\u0647\u0654 \u0631\u06cc\u0634\u0647\u0654 nobat724.com \u0646\u0628\u0627\u06cc\u062f \u0645\u062b\u0644 \u00ab\u0634\u0647\u0631\u00bb \u0631\u0641\u062a\u0627\u0631 \u06a9\u0646\u062f", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 8}, {"id": "prompt_nobat724_root_domain_not_city_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 7}, {"id": "prompt_nobat724_root_domain_not_city_lib_getstateinfo_js", "label": "`lib/getStateInfo.js`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`lib/getStateInfo.js`", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_app_doctors_page_js_\u0628\u0627\u06af_\u0646\u0648\u0639", "label": "`app/doctors/page.js` (\u0628\u0627\u06af \u0646\u0648\u0639)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/doctors/page.js` (\u0628\u0627\u06af \u0646\u0648\u0639)", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_components_doctors_index_js_\u0628\u0627\u06af_\u0646\u0648\u0639_\u062f\u0631_defaultfilter", "label": "`components/doctors/index.js` (\u0628\u0627\u06af \u0646\u0648\u0639 \u062f\u0631 defaultFilter)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`components/doctors/index.js` (\u0628\u0627\u06af \u0646\u0648\u0639 \u062f\u0631 defaultFilter)", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_context_provinceprovider_js", "label": "`context/ProvinceProvider.js`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`context/ProvinceProvider.js`", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_app_specialties_page_js", "label": "`app/specialties/page.js`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/specialties/page.js`", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_services_response_js_\u0628\u062f\u0648\u0646_\u062a\u063a\u06cc\u06cc\u0631_\u0641\u0642\u0637_\u0628\u0631\u0627\u06cc_\u0645\u0631\u062c\u0639", "label": "`services/response.js` (\u0628\u062f\u0648\u0646 \u062a\u063a\u06cc\u06cc\u0631 \u2014 \u0641\u0642\u0637 \u0628\u0631\u0627\u06cc \u0645\u0631\u062c\u0639)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`services/response.js` (\u0628\u062f\u0648\u0646 \u062a\u063a\u06cc\u06cc\u0631 \u2014 \u0641\u0642\u0637 \u0628\u0631\u0627\u06cc \u0645\u0631\u062c\u0639)", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 7}, {"id": "prompt_nobat724_root_domain_not_city_\u06f1_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0631\u06a9\u0632\u06cc_\u0631\u06cc\u0634\u0647_isroot_\u062f\u0631_getstateinfo", "label": "\u06f1. \u062a\u0639\u0631\u06cc\u0641 \u0645\u0631\u06a9\u0632\u06cc \u0631\u06cc\u0634\u0647 + `isRoot` \u062f\u0631 `getStateInfo`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062a\u0639\u0631\u06cc\u0641 \u0645\u0631\u06a9\u0632\u06cc \u0631\u06cc\u0634\u0647 + `isRoot` \u062f\u0631 `getStateInfo`", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_\u06f2_app_doctors_page_js_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647_city_\u062a\u0632\u0631\u06cc\u0642_\u0646\u0634\u0648\u062f", "label": "\u06f2. `app/doctors/page.js` \u2014 \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647 city \u062a\u0632\u0631\u06cc\u0642 \u0646\u0634\u0648\u062f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. `app/doctors/page.js` \u2014 \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647 city \u062a\u0632\u0631\u06cc\u0642 \u0646\u0634\u0648\u062f", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_\u06f3_components_doctors_index_js_defaultfilter_\u0628\u062f\u0648\u0646_\u0634\u0647\u0631_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647", "label": "\u06f3. `components/doctors/index.js` \u2014 defaultFilter \u0628\u062f\u0648\u0646 \u0634\u0647\u0631 \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. `components/doctors/index.js` \u2014 defaultFilter \u0628\u062f\u0648\u0646 \u0634\u0647\u0631 \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_\u06f4_context_provinceprovider_js_cityid_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647_null", "label": "\u06f4. `context/ProvinceProvider.js` \u2014 cityId \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647 null", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. `context/ProvinceProvider.js` \u2014 cityId \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647 null", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_\u06f5_app_specialties_page_js_\u0648_\u0647\u0631_getspecialtydoctorcounts_\u0634\u0645\u0627\u0631\u0634_\u0645\u0628\u062a\u0646\u06cc_\u0628\u0631_\u0634\u0647\u0631", "label": "\u06f5. `app/specialties/page.js` (\u0648 \u0647\u0631 `getSpecialtyDoctorCounts`/\u0634\u0645\u0627\u0631\u0634 \u0645\u0628\u062a\u0646\u06cc \u0628\u0631 \u0634\u0647\u0631)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. `app/specialties/page.js` (\u0648 \u0647\u0631 `getSpecialtyDoctorCounts`/\u0634\u0645\u0627\u0631\u0634 \u0645\u0628\u062a\u0646\u06cc \u0628\u0631 \u0634\u0647\u0631)", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_\u06f6_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0627\u0644\u06af\u0648\u06cc_\u0628\u0627\u06af", "label": "\u06f6. \u062c\u0633\u062a\u062c\u0648\u06cc \u0628\u0627\u0642\u06cc\u200c\u0645\u0627\u0646\u062f\u0647\u0654 \u0627\u0644\u06af\u0648\u06cc \u0628\u0627\u06af", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. \u062c\u0633\u062a\u062c\u0648\u06cc \u0628\u0627\u0642\u06cc\u200c\u0645\u0627\u0646\u062f\u0647\u0654 \u0627\u0644\u06af\u0648\u06cc \u0628\u0627\u06af", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_root_domain_not_city_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 12, "community_name": "Community 12", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo", "label": "nobat724-search-fix-and-seo.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "nobat724-search-fix-and-seo.md", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_nobat724_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_\u062c\u0633\u062a\u062c\u0648\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a_\u0648_\u062a\u062e\u0635\u0635", "label": "\u0627\u0635\u0644\u0627\u062d\u0627\u062a Nobat724: \u0631\u0641\u0639 \u062e\u0637\u0627\u06cc \u062c\u0633\u062a\u062c\u0648\u06cc \u067e\u0632\u0634\u06a9 + \u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc SEO \u0635\u0641\u062d\u0627\u062a \u0644\u06cc\u0633\u062a \u0648 \u062a\u062e\u0635\u0635", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0627\u0635\u0644\u0627\u062d\u0627\u062a Nobat724: \u0631\u0641\u0639 \u062e\u0637\u0627\u06cc \u062c\u0633\u062a\u062c\u0648\u06cc \u067e\u0632\u0634\u06a9 + \u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc SEO \u0635\u0641\u062d\u0627\u062a \u0644\u06cc\u0633\u062a \u0648 \u062a\u062e\u0635\u0635", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 9}, {"id": "prompt_nobat724_search_fix_and_seo_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f1_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_getoptionlabel_\u062f\u0631_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0646\u0627\u0645_\u067e\u0632\u0634\u06a9", "label": "\u062a\u0633\u06a9 \u06f1 \u2014 \u0631\u0641\u0639 \u062e\u0637\u0627\u06cc `getOptionLabel` \u062f\u0631 \u062c\u0633\u062a\u062c\u0648\u06cc \u0646\u0627\u0645 \u067e\u0632\u0634\u06a9", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062a\u0633\u06a9 \u06f1 \u2014 \u0631\u0641\u0639 \u062e\u0637\u0627\u06cc `getOptionLabel` \u062f\u0631 \u062c\u0633\u062a\u062c\u0648\u06cc \u0646\u0627\u0645 \u067e\u0632\u0634\u06a9", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 6}, {"id": "prompt_nobat724_search_fix_and_seo_\u0645\u0634\u06a9\u0644", "label": "\u0645\u0634\u06a9\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0641\u0627\u06cc\u0644", "label": "\u0641\u0627\u06cc\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0631\u0627\u0647_\u062d\u0644", "label": "\u0631\u0627\u0647\u200c\u062d\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0631\u0627\u0647\u200c\u062d\u0644", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u062a", "label": "\u062a\u0633\u062a", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062a\u0633\u062a", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f2_noindex_follow_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a_\u062c\u0633\u062a\u062c\u0648\u06cc_doctors", "label": "\u062a\u0633\u06a9 \u06f2 \u2014 `noindex, follow` \u0628\u0631\u0627\u06cc \u0647\u0645\u0647\u0654 \u0635\u0641\u062d\u0627\u062a \u062c\u0633\u062a\u062c\u0648\u06cc `/doctors?...`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062a\u0633\u06a9 \u06f2 \u2014 `noindex, follow` \u0628\u0631\u0627\u06cc \u0647\u0645\u0647\u0654 \u0635\u0641\u062d\u0627\u062a \u062c\u0633\u062a\u062c\u0648\u06cc `/doctors?...`", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 6}, {"id": "prompt_nobat724_search_fix_and_seo_\u0647\u062f\u0641", "label": "\u0647\u062f\u0641", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0647\u062f\u0641", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0641\u0627\u06cc\u0644_75", "label": "\u0641\u0627\u06cc\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_79", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0631\u0627\u0647_\u062d\u0644_96", "label": "\u0631\u0627\u0647\u200c\u062d\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0631\u0627\u0647\u200c\u062d\u0644", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0646\u06a9\u062a\u0647_\u062d\u06cc\u0627\u062a\u06cc_\u0645\u0631\u0632_url_vs_\u0641\u06cc\u0644\u062a\u0631_\u0633\u0631\u0648\u0631", "label": "\u0646\u06a9\u062a\u0647\u0654 \u062d\u06cc\u0627\u062a\u06cc \u2014 \u0645\u0631\u0632 URL vs. \u0641\u06cc\u0644\u062a\u0631\u0650 \u0633\u0631\u0648\u0631", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u062a\u0647\u0654 \u062d\u06cc\u0627\u062a\u06cc \u2014 \u0645\u0631\u0632 URL vs. \u0641\u06cc\u0644\u062a\u0631\u0650 \u0633\u0631\u0648\u0631", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f3_\u0642\u0627\u0628\u0644_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0628\u0648\u062f\u0646_specialties_\u0648_\u0635\u0641\u062d\u0627\u062a_\u062a\u062e\u0635\u0635", "label": "\u062a\u0633\u06a9 \u06f3 \u2014 \u0642\u0627\u0628\u0644\u200c\u0627\u06cc\u0646\u062f\u06a9\u0633\u200c\u0628\u0648\u062f\u0646 `/specialties` \u0648 \u0635\u0641\u062d\u0627\u062a \u062a\u062e\u0635\u0635", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062a\u0633\u06a9 \u06f3 \u2014 \u0642\u0627\u0628\u0644\u200c\u0627\u06cc\u0646\u062f\u06a9\u0633\u200c\u0628\u0648\u062f\u0646 `/specialties` \u0648 \u0635\u0641\u062d\u0627\u062a \u062a\u062e\u0635\u0635", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 2}, {"id": "prompt_nobat724_search_fix_and_seo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0627\u06a9\u062b\u0631\u0627_\u062f\u0631\u0633\u062a", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u0627\u06a9\u062b\u0631\u0627\u064b \u062f\u0631\u0633\u062a)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u0627\u06a9\u062b\u0631\u0627\u064b \u062f\u0631\u0633\u062a)", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f4_\u0641\u0642\u0637_\u062a\u062e\u0635\u0635_\u0647\u0627\u06cc_\u0641\u0631\u0632\u0646\u062f_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0634\u0648\u0646\u062f_\u0648\u0627\u0644\u062f\u0647\u0627_noindex", "label": "\u062a\u0633\u06a9 \u06f4 \u2014 \u0641\u0642\u0637 \u062a\u062e\u0635\u0635\u200c\u0647\u0627\u06cc **\u0641\u0631\u0632\u0646\u062f** \u0627\u06cc\u0646\u062f\u06a9\u0633 \u0634\u0648\u0646\u062f (\u0648\u0627\u0644\u062f\u0647\u0627 noindex)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062a\u0633\u06a9 \u06f4 \u2014 \u0641\u0642\u0637 \u062a\u062e\u0635\u0635\u200c\u0647\u0627\u06cc **\u0641\u0631\u0632\u0646\u062f** \u0627\u06cc\u0646\u062f\u06a9\u0633 \u0634\u0648\u0646\u062f (\u0648\u0627\u0644\u062f\u0647\u0627 noindex)", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 6}, {"id": "prompt_nobat724_search_fix_and_seo_\u0647\u062f\u0641_133", "label": "\u0647\u062f\u0641", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0647\u062f\u0641", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0641\u0627\u06cc\u0644_140", "label": "\u0641\u0627\u06cc\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_144", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0631\u0627\u0647_\u062d\u0644_160", "label": "\u0631\u0627\u0647\u200c\u062d\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0631\u0627\u0647\u200c\u062d\u0644", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0646\u06a9\u062a\u0647", "label": "\u0646\u06a9\u062a\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u062a\u0647", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0631\u0634\u06cc_\u0645\u062a\u0646_seo_\u0633\u0648\u0627\u0644\u0627\u062a_\u0645\u062a\u062f\u0627\u0648\u0644_\u062a\u062e\u0635\u0635_\u0628\u0631\u0646\u062f_\u0631\u0648\u06cc_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647", "label": "\u062a\u0633\u06a9 \u06f5 \u2014 \u0627\u0635\u0644\u0627\u062d \u0646\u06af\u0627\u0631\u0634\u06cc \u0645\u062a\u0646 SEO \u0633\u0648\u0627\u0644\u0627\u062a \u0645\u062a\u062f\u0627\u0648\u0644 \u062a\u062e\u0635\u0635 + \u0628\u0631\u0646\u062f \u0631\u0648\u06cc \u062f\u0627\u0645\u0646\u0647\u0654 \u0631\u06cc\u0634\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062a\u0633\u06a9 \u06f5 \u2014 \u0627\u0635\u0644\u0627\u062d \u0646\u06af\u0627\u0631\u0634\u06cc \u0645\u062a\u0646 SEO \u0633\u0648\u0627\u0644\u0627\u062a \u0645\u062a\u062f\u0627\u0648\u0644 \u062a\u062e\u0635\u0635 + \u0628\u0631\u0646\u062f \u0631\u0648\u06cc \u062f\u0627\u0645\u0646\u0647\u0654 \u0631\u06cc\u0634\u0647", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 6}, {"id": "prompt_nobat724_search_fix_and_seo_\u0641\u0627\u06cc\u0644_185", "label": "\u0641\u0627\u06cc\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_189", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u062e\u0648\u0627\u0633\u062a\u0647", "label": "\u062e\u0648\u0627\u0633\u062a\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062e\u0648\u0627\u0633\u062a\u0647", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0631\u0627\u0647_\u062d\u0644_206", "label": "\u0631\u0627\u0647\u200c\u062d\u0644", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0631\u0627\u0647\u200c\u062d\u0644", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0646\u06a9\u0627\u062a", "label": "\u0646\u06a9\u0627\u062a", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_search_fix_and_seo_\u0646\u06a9\u0627\u062a_\u06a9\u0644\u06cc_\u067e\u0631\u0648\u0698\u0647", "label": "\u0646\u06a9\u0627\u062a \u06a9\u0644\u06cc \u067e\u0631\u0648\u0698\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u06a9\u0644\u06cc \u067e\u0631\u0648\u0698\u0647", "community": 67, "community_name": "Community 67", "source_file": ".claude/prompt/nobat724-search-fix-and-seo.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite", "label": "nobat724-test-suite.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "nobat724-test-suite.md", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u062a\u0633\u062a \u0648 \u0646\u0648\u0634\u062a\u0646 \u062a\u0633\u062a\u200c\u0633\u0648\u0626\u06cc\u062a \u0628\u0631\u0627\u06cc \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc (nobat724_front)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u062a\u0633\u062a \u0648 \u0646\u0648\u0634\u062a\u0646 \u062a\u0633\u062a\u200c\u0633\u0648\u0626\u06cc\u062a \u0628\u0631\u0627\u06cc \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc (nobat724_front)", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 8}, {"id": "prompt_nobat724_test_suite_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 8}, {"id": "prompt_nobat724_test_suite_\u06f1_\u0646\u0635\u0628_\u0627\u0628\u0632\u0627\u0631_\u0648_\u06a9\u0627\u0646\u0641\u06cc\u06af_runner", "label": "\u06f1. \u0646\u0635\u0628 \u0627\u0628\u0632\u0627\u0631 \u0648 \u06a9\u0627\u0646\u0641\u06cc\u06af runner", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0646\u0635\u0628 \u0627\u0628\u0632\u0627\u0631 \u0648 \u06a9\u0627\u0646\u0641\u06cc\u06af runner", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u06f2_\u062a\u0633\u062a_\u062a\u0648\u0627\u0628\u0639_\u062e\u0627\u0644\u0635_utils_index_js_\u0627\u0648\u0644_\u0648_\u0633\u0646\u06af\u06cc\u0646_\u062a\u0631\u06cc\u0646", "label": "\u06f2. \u062a\u0633\u062a \u062a\u0648\u0627\u0628\u0639 \u062e\u0627\u0644\u0635 `utils/index.js` (\u0627\u0648\u0644 \u0648 \u0633\u0646\u06af\u06cc\u0646\u200c\u062a\u0631\u06cc\u0646)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u062a\u0633\u062a \u062a\u0648\u0627\u0628\u0639 \u062e\u0627\u0644\u0635 `utils/index.js` (\u0627\u0648\u0644 \u0648 \u0633\u0646\u06af\u06cc\u0646\u200c\u062a\u0631\u06cc\u0646)", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u06f3_\u062a\u0633\u062a_\u062e\u0627\u0644\u0635_lib", "label": "\u06f3. \u062a\u0633\u062a \u062e\u0627\u0644\u0635 `lib/`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u0633\u062a \u062e\u0627\u0644\u0635 `lib/`", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u06f4_\u062a\u0634\u062e\u06cc\u0635_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc_mock_host_window_next_headers", "label": "\u06f4. \u062a\u0634\u062e\u06cc\u0635 \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc (mock host / window / next/headers)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u062a\u0634\u062e\u06cc\u0635 \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc (mock host / window / next/headers)", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u06f5_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "label": "\u06f5. \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u06f6_casl_context_\u0648_\u06cc\u06a9_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a", "label": "\u06f6. CASL context \u0648 \u06cc\u06a9 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. CASL context \u0648 \u06cc\u06a9 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u06f7_\u0627\u062c\u0631\u0627_\u0648_\u0633\u0628\u0632\u06a9\u0631\u062f\u0646_lint", "label": "\u06f7. \u0627\u062c\u0631\u0627 \u0648 \u0633\u0628\u0632\u06a9\u0631\u062f\u0646 + lint", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f7. \u0627\u062c\u0631\u0627 \u0648 \u0633\u0628\u0632\u06a9\u0631\u062f\u0646 + lint", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_nobat724_test_suite_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 33, "community_name": "Community 33", "source_file": ".claude/prompt/nobat724-test-suite.md", "file_type": "document", "degree": 1}, {"id": "prompt_otp_sms_site_name", "label": "otp-sms-site-name.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "otp-sms-site-name.md", "community": 62, "community_name": "Community 62", "source_file": ".claude/prompt/otp-sms-site-name.md", "file_type": "document", "degree": 1}, {"id": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "label": "\u0627\u0631\u0633\u0627\u0644 \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u0634\u0647\u0631 \u0647\u0645\u0631\u0627\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u06a9\u062f \u062a\u0623\u06cc\u06cc\u062f (\u0628\u0631\u0627\u06cc \u0627\u0633\u0645 \u0633\u0627\u06cc\u062a \u062f\u0631 \u067e\u06cc\u0627\u0645\u06a9 OTP)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0627\u0631\u0633\u0627\u0644 \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u0634\u0647\u0631 \u0647\u0645\u0631\u0627\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u06a9\u062f \u062a\u0623\u06cc\u06cc\u062f (\u0628\u0631\u0627\u06cc \u0627\u0633\u0645 \u0633\u0627\u06cc\u062a \u062f\u0631 \u067e\u06cc\u0627\u0645\u06a9 OTP)", "community": 62, "community_name": "Community 62", "source_file": ".claude/prompt/otp-sms-site-name.md", "file_type": "document", "degree": 8}, {"id": "prompt_otp_sms_site_name_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 62, "community_name": "Community 62", "source_file": ".claude/prompt/otp-sms-site-name.md", "file_type": "document", "degree": 1}, {"id": "prompt_otp_sms_site_name_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 62, "community_name": "Community 62", "source_file": ".claude/prompt/otp-sms-site-name.md", "file_type": "document", "degree": 1}, {"id": "prompt_otp_sms_site_name_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 62, "community_name": "Community 62", "source_file": ".claude/prompt/otp-sms-site-name.md", "file_type": "document", "degree": 1}, {"id": "prompt_otp_sms_site_name_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 62, "community_name": "Community 62", "source_file": ".claude/prompt/otp-sms-site-name.md", "file_type": "document", "degree": 1}, {"id": "prompt_otp_sms_site_name_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 62, "community_name": "Community 62", "source_file": ".claude/prompt/otp-sms-site-name.md", "file_type": "document", "degree": 1}, {"id": "prompt_otp_sms_site_name_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 62, "community_name": "Community 62", "source_file": ".claude/prompt/otp-sms-site-name.md", "file_type": "document", "degree": 3}, {"id": "prompt_otp_sms_site_name_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_domain_\u0628\u0647_wrapper_sendcode", "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 `domain` \u0628\u0647 wrapper `sendCode`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 `domain` \u0628\u0647 wrapper `sendCode`", "community": 62, "community_name": "Community 62", "source_file": ".claude/prompt/otp-sms-site-name.md", "file_type": "document", "degree": 1}, {"id": "prompt_otp_sms_site_name_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0641\u0639\u0644\u06cc_\u0627\u0632_\u0635\u0641\u062d\u0647_\u0647\u0627\u06cc_\u0641\u0631\u0627\u062e\u0648\u0627\u0646", "label": "\u06f2. \u067e\u0627\u0633\u200c\u062f\u0627\u062f\u0646 \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u0641\u0639\u0644\u06cc \u0627\u0632 \u0635\u0641\u062d\u0647\u200c\u0647\u0627\u06cc \u0641\u0631\u0627\u062e\u0648\u0627\u0646", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u067e\u0627\u0633\u200c\u062f\u0627\u062f\u0646 \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u0641\u0639\u0644\u06cc \u0627\u0632 \u0635\u0641\u062d\u0647\u200c\u0647\u0627\u06cc \u0641\u0631\u0627\u062e\u0648\u0627\u0646", "community": 62, "community_name": "Community 62", "source_file": ".claude/prompt/otp-sms-site-name.md", "file_type": "document", "degree": 1}, {"id": "prompt_otp_sms_site_name_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 62, "community_name": "Community 62", "source_file": ".claude/prompt/otp-sms-site-name.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_flow_frontend", "label": "payment-flow-frontend.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "payment-flow-frontend.md", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "label": "\u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0633\u0645\u062a \u06a9\u0644\u0627\u06cc\u0646\u062a \u2014 \u0627\u0646\u062a\u0642\u0627\u0644 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0628\u06a9\u200c\u0627\u0646\u062f + \u0635\u0641\u062d\u0627\u062a \u0646\u062a\u06cc\u062c\u0647 (Frontend)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0633\u0645\u062a \u06a9\u0644\u0627\u06cc\u0646\u062a \u2014 \u0627\u0646\u062a\u0642\u0627\u0644 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0628\u06a9\u200c\u0627\u0646\u062f + \u0635\u0641\u062d\u0627\u062a \u0646\u062a\u06cc\u062c\u0647 (Frontend)", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 8}, {"id": "prompt_payment_flow_frontend_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_flow_frontend_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_flow_frontend_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_flow_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_flow_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 5}, {"id": "prompt_payment_flow_frontend_\u06f1_\u062a\u062b\u0628\u06cc\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u062f\u0648\u0646_\u062a\u0645\u0627\u0633_\u0645\u0633\u062a\u0642\u06cc\u0645_\u0628\u0627_\u0628\u0627\u0646\u06a9", "label": "\u06f1. \u062a\u062b\u0628\u06cc\u062a \u0627\u0646\u062a\u0642\u0627\u0644 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0628\u06a9\u200c\u0627\u0646\u062f (\u0628\u062f\u0648\u0646 \u062a\u0645\u0627\u0633 \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0627 \u0628\u0627\u0646\u06a9)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062a\u062b\u0628\u06cc\u062a \u0627\u0646\u062a\u0642\u0627\u0644 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0628\u06a9\u200c\u0627\u0646\u062f (\u0628\u062f\u0648\u0646 \u062a\u0645\u0627\u0633 \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0627 \u0628\u0627\u0646\u06a9)", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_flow_frontend_\u06f2_\u0635\u0641\u062d\u0647_\u0646\u062a\u06cc\u062c\u0647_\u0628\u0631_\u0627\u0633\u0627\u0633_status", "label": "\u06f2. \u0635\u0641\u062d\u0647\u0654 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0631 \u0627\u0633\u0627\u0633 `status`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0635\u0641\u062d\u0647\u0654 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0631 \u0627\u0633\u0627\u0633 `status`", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_flow_frontend_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u0634\u06a9\u0644_\u067e\u0627\u0633\u062e_getpayment", "label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u0627 \u0634\u06a9\u0644 \u067e\u0627\u0633\u062e `getPayment`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u0627 \u0634\u06a9\u0644 \u067e\u0627\u0633\u062e `getPayment`", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_flow_frontend_\u06f4_ux_\u0627\u0646\u0635\u0631\u0627\u0641_\u0634\u06a9\u0633\u062a", "label": "\u06f4. UX \u0627\u0646\u0635\u0631\u0627\u0641/\u0634\u06a9\u0633\u062a", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. UX \u0627\u0646\u0635\u0631\u0627\u0641/\u0634\u06a9\u0633\u062a", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_flow_frontend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 49, "community_name": "Community 49", "source_file": ".claude/prompt/payment-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_single_flow_frontend", "label": "payment-single-flow-frontend.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "payment-single-flow-frontend.md", "community": 54, "community_name": "Community 54", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "label": "entry \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a \u062e\u0627\u0644\u0635 \u0628\u0647 Backend (\u0628\u062f\u0648\u0646 XHR) \u2014 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "entry \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a \u062e\u0627\u0644\u0635 \u0628\u0647 Backend (\u0628\u062f\u0648\u0646 XHR) \u2014 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc", "community": 54, "community_name": "Community 54", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "file_type": "document", "degree": 8}, {"id": "prompt_payment_single_flow_frontend_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 54, "community_name": "Community 54", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_single_flow_frontend_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 54, "community_name": "Community 54", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_single_flow_frontend_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 54, "community_name": "Community 54", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_single_flow_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 54, "community_name": "Community 54", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_single_flow_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 54, "community_name": "Community 54", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 54, "community_name": "Community 54", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "file_type": "document", "degree": 4}, {"id": "prompt_payment_single_flow_frontend_\u06f1_\u062a\u0628\u062f\u06cc\u0644_\u062f\u06a9\u0645\u0647_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u062d\u0630\u0641_xhr", "label": "\u06f1. \u062a\u0628\u062f\u06cc\u0644 \u062f\u06a9\u0645\u0647\u0654 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647 \u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a\u0650 \u062e\u0627\u0644\u0635 (\u062d\u0630\u0641 XHR)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062a\u0628\u062f\u06cc\u0644 \u062f\u06a9\u0645\u0647\u0654 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647 \u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a\u0650 \u062e\u0627\u0644\u0635 (\u062d\u0630\u0641 XHR)", "community": 54, "community_name": "Community 54", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_single_flow_frontend_\u06f2_\u062d\u0641\u0638_\u0627\u0646\u062a\u062e\u0627\u0628_\u062f\u0631\u06af\u0627\u0647_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u0646\u06cc\u0627\u0632", "label": "\u06f2. \u062d\u0641\u0638 \u0627\u0646\u062a\u062e\u0627\u0628 \u062f\u0631\u06af\u0627\u0647 (\u0645\u0631\u062d\u0644\u0647\u0654 \u06f2 \u0646\u06cc\u0627\u0632)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u062d\u0641\u0638 \u0627\u0646\u062a\u062e\u0627\u0628 \u062f\u0631\u06af\u0627\u0647 (\u0645\u0631\u062d\u0644\u0647\u0654 \u06f2 \u0646\u06cc\u0627\u0632)", "community": 54, "community_name": "Community 54", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_single_flow_frontend_\u06f3_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc", "label": "\u06f3. \u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc", "community": 54, "community_name": "Community 54", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_payment_single_flow_frontend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 54, "community_name": "Community 54", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "file_type": "document", "degree": 1}, {"id": "prompt_profile_birthday_send_direction_fix", "label": "profile-birthday-send-direction-fix.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "profile-birthday-send-direction-fix.md", "community": 69, "community_name": "Community 69", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "label": "\u0631\u0641\u0639 \u062c\u0647\u062a \u062a\u0628\u062f\u06cc\u0644 \u062a\u0627\u0631\u06cc\u062e \u062a\u0648\u0644\u062f \u0647\u0646\u06af\u0627\u0645 \u0627\u06cc\u062c\u0627\u062f \u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0631\u0641\u0639 \u062c\u0647\u062a \u062a\u0628\u062f\u06cc\u0644 \u062a\u0627\u0631\u06cc\u062e \u062a\u0648\u0644\u062f \u0647\u0646\u06af\u0627\u0645 \u0627\u06cc\u062c\u0627\u062f \u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "community": 69, "community_name": "Community 69", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "file_type": "document", "degree": 8}, {"id": "prompt_profile_birthday_send_direction_fix_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 69, "community_name": "Community 69", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_profile_birthday_send_direction_fix_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 69, "community_name": "Community 69", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_profile_birthday_send_direction_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 69, "community_name": "Community 69", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_profile_birthday_send_direction_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 69, "community_name": "Community 69", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_profile_birthday_send_direction_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 69, "community_name": "Community 69", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_profile_birthday_send_direction_fix_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 69, "community_name": "Community 69", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "file_type": "document", "degree": 2}, {"id": "prompt_profile_birthday_send_direction_fix_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u062c\u0647\u062a_\u062f\u0631_postdata", "label": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u062c\u0647\u062a \u062f\u0631 `postData`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u062c\u0647\u062a \u062f\u0631 `postData`", "community": 69, "community_name": "Community 69", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_profile_birthday_send_direction_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 69, "community_name": "Community 69", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "file_type": "document", "degree": 1}, {"id": "prompt_rating_rich_ui_wiring", "label": "rating-rich-ui-wiring.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "rating-rich-ui-wiring.md", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 1}, {"id": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "label": "\u0627\u062a\u0635\u0627\u0644 UI \u063a\u0646\u06cc\u0650 \u0646\u0638\u0631\u0627\u062a/\u0627\u0645\u062a\u06cc\u0627\u0632 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9 \u0628\u0647 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u062c\u062f\u06cc\u062f \u0628\u06a9\u200c\u0627\u0646\u062f", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0627\u062a\u0635\u0627\u0644 UI \u063a\u0646\u06cc\u0650 \u0646\u0638\u0631\u0627\u062a/\u0627\u0645\u062a\u06cc\u0627\u0632 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9 \u0628\u0647 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u062c\u062f\u06cc\u062f \u0628\u06a9\u200c\u0627\u0646\u062f", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 7}, {"id": "prompt_rating_rich_ui_wiring_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 1}, {"id": "prompt_rating_rich_ui_wiring_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 1}, {"id": "prompt_rating_rich_ui_wiring_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06a9_\u0627\u0646\u062f_\u0645\u0631\u062c\u0639_\u0627\u0632_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0645\u062a\u0627", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0628\u06a9\u200c\u0627\u0646\u062f (\u0645\u0631\u062c\u0639 \u2014 \u0627\u0632 \u067e\u0631\u0627\u0645\u067e\u062a \u0647\u0645\u062a\u0627)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0628\u06a9\u200c\u0627\u0646\u062f (\u0645\u0631\u062c\u0639 \u2014 \u0627\u0632 \u067e\u0631\u0627\u0645\u067e\u062a \u0647\u0645\u062a\u0627)", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 1}, {"id": "prompt_rating_rich_ui_wiring_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637_ui_\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0648\u0635\u0644_\u0634\u0648\u062f", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637 (UI \u0645\u0648\u062c\u0648\u062f \u06a9\u0647 \u0628\u0627\u06cc\u062f \u0648\u0635\u0644 \u0634\u0648\u062f)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637 (UI \u0645\u0648\u062c\u0648\u062f \u06a9\u0647 \u0628\u0627\u06cc\u062f \u0648\u0635\u0644 \u0634\u0648\u062f)", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 1}, {"id": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 7}, {"id": "prompt_rating_rich_ui_wiring_\u06f1_fetch_\u062a\u062c\u0645\u06cc\u0639_\u0627\u0645\u062a\u06cc\u0627\u0632_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0648_\u0639\u0628\u0648\u0631_prop", "label": "\u06f1. fetch \u062a\u062c\u0645\u06cc\u0639 \u0627\u0645\u062a\u06cc\u0627\u0632 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0648 \u0639\u0628\u0648\u0631 prop", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. fetch \u062a\u062c\u0645\u06cc\u0639 \u0627\u0645\u062a\u06cc\u0627\u0632 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0648 \u0639\u0628\u0648\u0631 prop", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 1}, {"id": "prompt_rating_rich_ui_wiring_\u06f2_\u0627\u062a\u0635\u0627\u0644_\u0686\u0627\u0631\u062a_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_chart_index_js_progressall_js", "label": "\u06f2. \u0627\u062a\u0635\u0627\u0644 \u0686\u0627\u0631\u062a \u0628\u0647 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u062c\u062f\u06cc\u062f (`chart/index.js` + `ProgressAll.js`)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0627\u062a\u0635\u0627\u0644 \u0686\u0627\u0631\u062a \u0628\u0647 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u062c\u062f\u06cc\u062f (`chart/index.js` + `ProgressAll.js`)", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 1}, {"id": "prompt_rating_rich_ui_wiring_\u06f3_\u0641\u0631\u0645_\u062b\u0628\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_form_js_modalanswer_js_content_index_js", "label": "\u06f3. \u0641\u0631\u0645 \u062b\u0628\u062a \u0627\u0645\u062a\u06cc\u0627\u0632 \u0686\u0646\u062f\u0628\u064f\u0639\u062f\u06cc (`Form.js` + `ModalAnswer.js` + `content/index.js`)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0641\u0631\u0645 \u062b\u0628\u062a \u0627\u0645\u062a\u06cc\u0627\u0632 \u0686\u0646\u062f\u0628\u064f\u0639\u062f\u06cc (`Form.js` + `ModalAnswer.js` + `content/index.js`)", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 1}, {"id": "prompt_rating_rich_ui_wiring_\u06f4_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u0648\u0627\u0642\u0639\u06cc_itemuser_js_services_response_js", "label": "\u06f4. \u0644\u0627\u06cc\u06a9/\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9 \u0648\u0627\u0642\u0639\u06cc (`ItemUser.js` + `services/response.js`)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0644\u0627\u06cc\u06a9/\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9 \u0648\u0627\u0642\u0639\u06cc (`ItemUser.js` + `services/response.js`)", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 1}, {"id": "prompt_rating_rich_ui_wiring_\u06f5_\u062b\u0628\u062a_\u067e\u0627\u0633\u062e_sendanswer_js", "label": "\u06f5. \u062b\u0628\u062a \u067e\u0627\u0633\u062e (`SendAnswer.js`)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u062b\u0628\u062a \u067e\u0627\u0633\u062e (`SendAnswer.js`)", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 1}, {"id": "prompt_rating_rich_ui_wiring_\u06f6_wrapper\u0647\u0627_services_response_js", "label": "\u06f6. wrapper\u0647\u0627 (`services/response.js`)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. wrapper\u0647\u0627 (`services/response.js`)", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 1}, {"id": "prompt_rating_rich_ui_wiring_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 42, "community_name": "Community 42", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit", "label": "seo-critical-fixes-live-audit.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "seo-critical-fixes-live-audit.md", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "label": "\u062a\u0642\u0633\u06cc\u0645 \u0645\u0645\u06cc\u0632\u06cc SEO \u0628\u0647 \u067e\u0631\u0627\u0645\u067e\u062a\u200c\u0647\u0627\u06cc \u06a9\u0648\u0686\u06a9 \u0627\u062c\u0631\u0627\u06cc\u06cc \u2014 nobat724", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 21.2, "font": {"size": 12, "color": "#ffffff"}, "title": "\u062a\u0642\u0633\u06cc\u0645 \u0645\u0645\u06cc\u0632\u06cc SEO \u0628\u0647 \u067e\u0631\u0627\u0645\u067e\u062a\u200c\u0647\u0627\u06cc \u06a9\u0648\u0686\u06a9 \u0627\u062c\u0631\u0627\u06cc\u06cc \u2014 nobat724", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 18}, {"id": "prompt_seo_critical_fixes_live_audit_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u06a9\u0644\u06cc_\u0627\u0646\u062c\u0627\u0645_\u0634\u062f\u0647", "label": "\u0686\u06a9\u200c\u0644\u06cc\u0633\u062a \u06a9\u0644\u06cc \u2014 \u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f\u0647", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0686\u06a9\u200c\u0644\u06cc\u0633\u062a \u06a9\u0644\u06cc \u2014 \u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f\u0647", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_\u06a9\u0627\u0631\u0647\u0627\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9", "label": "\u06a9\u0627\u0631\u0647\u0627\u06cc \u0628\u0627\u0642\u06cc\u200c\u0645\u0627\u0646\u062f\u0647 \u2014 \u067e\u0631\u0627\u0645\u067e\u062a\u200c\u0647\u0627\u06cc \u06a9\u0648\u0686\u06a9", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06a9\u0627\u0631\u0647\u0627\u06cc \u0628\u0627\u0642\u06cc\u200c\u0645\u0627\u0646\u062f\u0647 \u2014 \u067e\u0631\u0627\u0645\u067e\u062a\u200c\u0647\u0627\u06cc \u06a9\u0648\u0686\u06a9", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_\u062a\u0635\u0645\u06cc\u0645_\u0647\u0627\u06cc_\u0622\u06af\u0627\u0647\u0627\u0646\u0647_side_effect_\u0646\u06cc\u0633\u062a\u0646\u062f", "label": "\u062a\u0635\u0645\u06cc\u0645\u200c\u0647\u0627\u06cc \u0622\u06af\u0627\u0647\u0627\u0646\u0647 (side-effect \u0646\u06cc\u0633\u062a\u0646\u062f)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062a\u0635\u0645\u06cc\u0645\u200c\u0647\u0627\u06cc \u0622\u06af\u0627\u0647\u0627\u0646\u0647 (side-effect \u0646\u06cc\u0633\u062a\u0646\u062f)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_\u0628\u0644\u0648\u06a9_\u0632\u0645\u06cc\u0646\u0647_\u0645\u0634\u062a\u0631\u06a9_\u0627\u0628\u062a\u062f\u0627\u06cc_\u0647\u0631_\u067e\u0631\u0627\u0645\u067e\u062a_\u06a9\u067e\u06cc_\u0634\u0648\u062f", "label": "\u0628\u0644\u0648\u06a9 \u0632\u0645\u06cc\u0646\u0647\u0654 \u0645\u0634\u062a\u0631\u06a9 (\u0627\u0628\u062a\u062f\u0627\u06cc \u0647\u0631 \u067e\u0631\u0627\u0645\u067e\u062a \u06a9\u067e\u06cc \u0634\u0648\u062f)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u0644\u0648\u06a9 \u0632\u0645\u06cc\u0646\u0647\u0654 \u0645\u0634\u062a\u0631\u06a9 (\u0627\u0628\u062a\u062f\u0627\u06cc \u0647\u0631 \u067e\u0631\u0627\u0645\u067e\u062a \u06a9\u067e\u06cc \u0634\u0648\u062f)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_\u0645\u0631\u062c\u0639_\u0641\u0647\u0631\u0633\u062a_\u06a9\u0627\u0645\u0644_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0632\u0646\u062f\u0647_\u0645\u0645\u06cc\u0632\u06cc_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_html_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0645\u0631\u062c\u0639: \u0641\u0647\u0631\u0633\u062a \u06a9\u0627\u0645\u0644 \u06cc\u0627\u0641\u062a\u0647\u200c\u0647\u0627\u06cc \u0632\u0646\u062f\u0647\u0654 \u0645\u0645\u06cc\u0632\u06cc (\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647 \u0628\u0627 HTML \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0631\u062c\u0639: \u0641\u0647\u0631\u0633\u062a \u06a9\u0627\u0645\u0644 \u06cc\u0627\u0641\u062a\u0647\u200c\u0647\u0627\u06cc \u0632\u0646\u062f\u0647\u0654 \u0645\u0645\u06cc\u0632\u06cc (\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647 \u0628\u0627 HTML \u0648\u0627\u0642\u0639\u06cc)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_p1_\u0628\u0631\u0631\u0633\u06cc_robots_txt_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc", "label": "P1 \u2014 \u0628\u0631\u0631\u0633\u06cc robots.txt (\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632 \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "P1 \u2014 \u0628\u0631\u0631\u0633\u06cc robots.txt (\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632 \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_p2_\u0647\u0644\u067e\u0631\u0647\u0627\u06cc_\u0645\u0634\u062a\u0631\u06a9_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", "label": "P2 \u2014 \u0647\u0644\u067e\u0631\u0647\u0627\u06cc \u0645\u0634\u062a\u0631\u06a9 (\u0632\u06cc\u0631\u0633\u0627\u062e\u062a)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "P2 \u2014 \u0647\u0644\u067e\u0631\u0647\u0627\u06cc \u0645\u0634\u062a\u0631\u06a9 (\u0632\u06cc\u0631\u0633\u0627\u062e\u062a)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_p3_\u0631\u0641\u0639_noindex_\u0633\u06cc\u0633\u062a\u0645\u06cc\u06a9_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a_c5_\u0628\u062f\u062a\u0631\u06cc\u0646_\u0628\u0627\u06af", "label": "P3 \u2014 \u0631\u0641\u0639 noindex \u0633\u06cc\u0633\u062a\u0645\u06cc\u06a9 \u0635\u0641\u062d\u0627\u062a \u0644\u06cc\u0633\u062a (C5 \u2014 \u0628\u062f\u062a\u0631\u06cc\u0646 \u0628\u0627\u06af)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "P3 \u2014 \u0631\u0641\u0639 noindex \u0633\u06cc\u0633\u062a\u0645\u06cc\u06a9 \u0635\u0641\u062d\u0627\u062a \u0644\u06cc\u0633\u062a (C5 \u2014 \u0628\u062f\u062a\u0631\u06cc\u0646 \u0628\u0627\u06af)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_p4_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_canonical_\u0633\u0647_\u062f\u0633\u062a\u0647_\u062a\u0635\u0645\u06cc\u0645_pagination_c1_a_b_c_m3_b", "label": "P4 \u2014 \u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc canonical \u0633\u0647\u200c\u062f\u0633\u062a\u0647 + \u062a\u0635\u0645\u06cc\u0645 pagination (C1-a/b/c + M3-B)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "P4 \u2014 \u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc canonical \u0633\u0647\u200c\u062f\u0633\u062a\u0647 + \u062a\u0635\u0645\u06cc\u0645 pagination (C1-a/b/c + M3-B)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_p5_\u0628\u0627\u0632\u0633\u0627\u0632\u06cc_sitemap_c2", "label": "P5 \u2014 \u0628\u0627\u0632\u0633\u0627\u0632\u06cc sitemap (C2)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "P5 \u2014 \u0628\u0627\u0632\u0633\u0627\u0632\u06cc sitemap (C2)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_p6_\u0635\u0641\u062d\u0627\u062a_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_soft_404_\u0648_noindex_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062e\u0627\u0644\u06cc_h4_h7", "label": "P6 \u2014 \u0635\u0641\u062d\u0627\u062a \u0645\u0648\u062c\u0648\u062f\u06cc\u062a: Soft-404 \u0648 noindex \u06a9\u0644\u06cc\u0646\u06cc\u06a9 \u062e\u0627\u0644\u06cc (H4 + H7)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "P6 \u2014 \u0635\u0641\u062d\u0627\u062a \u0645\u0648\u062c\u0648\u062f\u06cc\u062a: Soft-404 \u0648 noindex \u06a9\u0644\u06cc\u0646\u06cc\u06a9 \u062e\u0627\u0644\u06cc (H4 + H7)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_p7_\u0627\u0635\u0644\u0627\u062d_h1\u0647\u0627_\u062f\u0631_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a_h2_h3", "label": "P7 \u2014 \u0627\u0635\u0644\u0627\u062d H1\u0647\u0627 \u062f\u0631 \u0647\u0645\u0647\u0654 \u0635\u0641\u062d\u0627\u062a (H2 + H3)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "P7 \u2014 \u0627\u0635\u0644\u0627\u062d H1\u0647\u0627 \u062f\u0631 \u0647\u0645\u0647\u0654 \u0635\u0641\u062d\u0627\u062a (H2 + H3)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_p8_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_breadcrumb_h6", "label": "P8 \u2014 \u06cc\u06a9\u067e\u0627\u0631\u0686\u0647\u200c\u0633\u0627\u0632\u06cc Breadcrumb (H6)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "P8 \u2014 \u06cc\u06a9\u067e\u0627\u0631\u0686\u0647\u200c\u0633\u0627\u0632\u06cc Breadcrumb (H6)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_p9_\u0635\u0641\u062d\u0627\u062a_\u0641\u0631\u0648\u062f_\u062a\u062e\u0635\u0635_\u0648_\u062a\u062e\u0635\u0635_\u0634\u0647\u0631_c3_\u0628\u0632\u0631\u06af_\u062a\u0631\u06cc\u0646_\u0641\u0631\u0635\u062a_\u0631\u0634\u062f", "label": "P9 \u2014 \u0635\u0641\u062d\u0627\u062a \u0641\u0631\u0648\u062f \u062a\u062e\u0635\u0635 \u0648 \u00ab\u062a\u062e\u0635\u0635 + \u0634\u0647\u0631\u00bb (C3 \u2014 \u0628\u0632\u0631\u06af\u200c\u062a\u0631\u06cc\u0646 \u0641\u0631\u0635\u062a \u0631\u0634\u062f)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "P9 \u2014 \u0635\u0641\u062d\u0627\u062a \u0641\u0631\u0648\u062f \u062a\u062e\u0635\u0635 \u0648 \u00ab\u062a\u062e\u0635\u0635 + \u0634\u0647\u0631\u00bb (C3 \u2014 \u0628\u0632\u0631\u06af\u200c\u062a\u0631\u06cc\u0646 \u0641\u0631\u0635\u062a \u0631\u0634\u062f)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_p10_\u0628\u0644\u0627\u06af_\u0634\u0647\u0631_\u0645\u062d\u0648\u0631_c4", "label": "P10 \u2014 \u0628\u0644\u0627\u06af \u0634\u0647\u0631-\u0645\u062d\u0648\u0631 (C4)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "P10 \u2014 \u0628\u0644\u0627\u06af \u0634\u0647\u0631-\u0645\u062d\u0648\u0631 (C4)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_p11_faqpage_schema_\u0648_\u0645\u062a\u0646_\u0645\u0642\u062f\u0645\u0647_\u06cc\u06a9\u062a\u0627_m1_m2", "label": "P11 \u2014 FAQPage schema \u0648 \u0645\u062a\u0646 \u0645\u0642\u062f\u0645\u0647\u0654 \u06cc\u06a9\u062a\u0627 (M1 + M2)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "P11 \u2014 FAQPage schema \u0648 \u0645\u062a\u0646 \u0645\u0642\u062f\u0645\u0647\u0654 \u06cc\u06a9\u062a\u0627 (M1 + M2)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_critical_fixes_live_audit_\u06cc\u0627\u062f\u062f\u0627\u0634\u062a_\u0647\u0627\u06cc_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062f\u0631_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0647\u0631_\u0641\u0627\u0632_\u062a\u06a9\u0631\u0627\u0631_\u0634\u0648\u062f", "label": "\u06cc\u0627\u062f\u062f\u0627\u0634\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u0627\u0633\u0631\u06cc (\u062f\u0631 \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0647\u0631 \u0641\u0627\u0632 \u062a\u06a9\u0631\u0627\u0631 \u0634\u0648\u062f)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06cc\u0627\u062f\u062f\u0627\u0634\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u0627\u0633\u0631\u06cc (\u062f\u0631 \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0647\u0631 \u0641\u0627\u0632 \u062a\u06a9\u0631\u0627\u0631 \u0634\u0648\u062f)", "community": 366, "community_name": "Community 366", "source_file": ".claude/prompt/seo-critical-fixes-live-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit", "label": "seo-performance-rendering-audit.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "seo-performance-rendering-audit.md", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "label": "\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u06a9\u0627\u0645\u0644 Rendering Strategy\u060c SEO\u060c Performance \u0648 \u0627\u0645\u0646\u06cc\u062a (Next.js 15)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u06a9\u0627\u0645\u0644 Rendering Strategy\u060c SEO\u060c Performance \u0648 \u0627\u0645\u0646\u06cc\u062a (Next.js 15)", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 7}, {"id": "prompt_seo_performance_rendering_audit_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 5}, {"id": "prompt_seo_performance_rendering_audit_lib_req_js_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_caching", "label": "`lib/req.js` \u2014 \u0645\u0634\u06a9\u0644 \u0627\u0635\u0644\u06cc caching", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`lib/req.js` \u2014 \u0645\u0634\u06a9\u0644 \u0627\u0635\u0644\u06cc caching", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_app_doctor_slug_page_js_\u062f\u0648_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u062a\u06a9\u0631\u0627\u0631\u06cc", "label": "`app/doctor/[slug]/page.js` \u2014 \u062f\u0648 \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc \u062a\u06a9\u0631\u0627\u0631\u06cc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/doctor/[slug]/page.js` \u2014 \u062f\u0648 \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc \u062a\u06a9\u0631\u0627\u0631\u06cc", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_middleware_js_\u0627\u062c\u0631\u0627_\u0631\u0648\u06cc_\u0647\u0645\u0647_\u0645\u0633\u06cc\u0631\u0647\u0627", "label": "`middleware.js` \u2014 \u0627\u062c\u0631\u0627 \u0631\u0648\u06cc \u0647\u0645\u0647 \u0645\u0633\u06cc\u0631\u0647\u0627", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`middleware.js` \u2014 \u0627\u062c\u0631\u0627 \u0631\u0648\u06cc \u0647\u0645\u0647 \u0645\u0633\u06cc\u0631\u0647\u0627", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_app_doctors_page_js_\u0628\u062f\u0648\u0646_og_images_\u0628\u062f\u0648\u0646_cache", "label": "`app/doctors/page.js` \u2014 \u0628\u062f\u0648\u0646 og:images\u060c \u0628\u062f\u0648\u0646 cache", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`app/doctors/page.js` \u2014 \u0628\u062f\u0648\u0646 og:images\u060c \u0628\u062f\u0648\u0646 cache", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 10}, {"id": "prompt_seo_performance_rendering_audit_\u06f1_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_fetch_\u0644\u0627\u06cc\u0647_\u06cc_axios_\u0628\u0627_fetch_\u0628\u0648\u0645\u06cc_next_js_\u06cc\u0627_wrapper_\u0631\u0648\u06cc_\u0622\u0646_\u0628\u0631\u0627\u06cc_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u0647\u0627\u06cc_server_component", "label": "\u06f1. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc fetch \u0644\u0627\u06cc\u0647\u200c\u06cc axios \u0628\u0627 `fetch` \u0628\u0648\u0645\u06cc Next.js (\u06cc\u0627 wrapper \u0631\u0648\u06cc \u0622\u0646) \u0628\u0631\u0627\u06cc \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc\u200c\u0647\u0627\u06cc Server Component", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc fetch \u0644\u0627\u06cc\u0647\u200c\u06cc axios \u0628\u0627 `fetch` \u0628\u0648\u0645\u06cc Next.js (\u06cc\u0627 wrapper \u0631\u0648\u06cc \u0622\u0646) \u0628\u0631\u0627\u06cc \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc\u200c\u0647\u0627\u06cc Server Component", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u06f2_\u062d\u0630\u0641_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u062a\u06a9\u0631\u0627\u0631\u06cc_\u062f\u0631_doctor_slug_page_js_\u0648_\u0627\u0644\u06af\u0648\u06cc_\u0645\u0634\u0627\u0628\u0647_\u062f\u0631_clinic_slug_blog_slug", "label": "\u06f2. \u062d\u0630\u0641 \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc \u062a\u06a9\u0631\u0627\u0631\u06cc \u062f\u0631 `doctor/[slug]/page.js` (\u0648 \u0627\u0644\u06af\u0648\u06cc \u0645\u0634\u0627\u0628\u0647 \u062f\u0631 `clinic/[slug]`, `blog/[slug]`)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u062d\u0630\u0641 \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc \u062a\u06a9\u0631\u0627\u0631\u06cc \u062f\u0631 `doctor/[slug]/page.js` (\u0648 \u0627\u0644\u06af\u0648\u06cc \u0645\u0634\u0627\u0628\u0647 \u062f\u0631 `clinic/[slug]`, `blog/[slug]`)", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u06f3_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_middleware_js_\u0645\u062d\u062f\u0648\u062f_\u06a9\u0631\u062f\u0646_matcher_\u06cc\u0627_\u062d\u0630\u0641_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u063a\u06cc\u0631\u0636\u0631\u0648\u0631\u06cc", "label": "\u06f3. \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc `middleware.js` \u2014 \u0645\u062d\u062f\u0648\u062f \u06a9\u0631\u062f\u0646 matcher \u06cc\u0627 \u062d\u0630\u0641 \u0648\u0627\u0628\u0633\u062a\u06af\u06cc \u063a\u06cc\u0631\u0636\u0631\u0648\u0631\u06cc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc `middleware.js` \u2014 \u0645\u062d\u062f\u0648\u062f \u06a9\u0631\u062f\u0646 matcher \u06cc\u0627 \u062d\u0630\u0641 \u0648\u0627\u0628\u0633\u062a\u06af\u06cc \u063a\u06cc\u0631\u0636\u0631\u0648\u0631\u06cc", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u06f4_\u0627\u0641\u0632\u0648\u062f\u0646_json_ld_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062f\u0631_app_layout_js", "label": "\u06f4. \u0627\u0641\u0632\u0648\u062f\u0646 JSON-LD \u0633\u0631\u0627\u0633\u0631\u06cc \u062f\u0631 `app/layout.js`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0627\u0641\u0632\u0648\u062f\u0646 JSON-LD \u0633\u0631\u0627\u0633\u0631\u06cc \u062f\u0631 `app/layout.js`", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u06f5_\u062a\u06a9\u0645\u06cc\u0644_og_image_twitter_image_\u062f\u0631_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a", "label": "\u06f5. \u062a\u06a9\u0645\u06cc\u0644 og:image/twitter:image \u062f\u0631 \u0647\u0645\u0647 \u0635\u0641\u062d\u0627\u062a", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u062a\u06a9\u0645\u06cc\u0644 og:image/twitter:image \u062f\u0631 \u0647\u0645\u0647 \u0635\u0641\u062d\u0627\u062a", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u06f6_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_loading_js_\u0628\u0631\u0627\u06cc_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u062f\u0627\u062f\u0647_\u0645\u062d\u0648\u0631", "label": "\u06f6. \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 `loading.js` \u0628\u0631\u0627\u06cc \u0645\u0633\u06cc\u0631\u0647\u0627\u06cc \u062f\u0627\u062f\u0647\u200c\u0645\u062d\u0648\u0631", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 `loading.js` \u0628\u0631\u0627\u06cc \u0645\u0633\u06cc\u0631\u0647\u0627\u06cc \u062f\u0627\u062f\u0647\u200c\u0645\u062d\u0648\u0631", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u06f7_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_error_js_\u062f\u0631_\u0633\u0637\u062d_root_\u0648_\u0628\u0631\u0627\u06cc_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u067e\u0631\u062a\u0642\u0627\u0636\u0627", "label": "\u06f7. \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 `error.js` \u062f\u0631 \u0633\u0637\u062d root \u0648 \u0628\u0631\u0627\u06cc \u0645\u0633\u06cc\u0631\u0647\u0627\u06cc \u067e\u0631\u062a\u0642\u0627\u0636\u0627", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f7. \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 `error.js` \u062f\u0631 \u0633\u0637\u062d root \u0648 \u0628\u0631\u0627\u06cc \u0645\u0633\u06cc\u0631\u0647\u0627\u06cc \u067e\u0631\u062a\u0642\u0627\u0636\u0627", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u06f8_\u0628\u0631\u0631\u0633\u06cc_app_sitemap_js_\u0648_app_robots_js", "label": "\u06f8. \u0628\u0631\u0631\u0633\u06cc `app/sitemap.js` \u0648 `app/robots.js`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f8. \u0628\u0631\u0631\u0633\u06cc `app/sitemap.js` \u0648 `app/robots.js`", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u06f9_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0628\u0647_\u0635\u0648\u0631\u062a_\u062c\u062f\u0648\u0644", "label": "\u06f9. \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u062c\u062f\u0648\u0644", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f9. \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u062c\u062f\u0648\u0644", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_performance_rendering_audit_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 13, "community_name": "Community 13", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_post_deploy_verification", "label": "seo-post-deploy-verification.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "seo-post-deploy-verification.md", "community": 385, "community_name": "Community 385", "source_file": ".claude/prompt/seo-post-deploy-verification.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_post_deploy_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0632\u0646\u062f\u0647_\u0641\u06cc\u06a9\u0633_\u0647\u0627\u06cc_seo_\u0628\u0639\u062f_\u0627\u0632_deploy", "label": "\u062a\u0623\u06cc\u06cc\u062f \u0632\u0646\u062f\u0647\u0654 \u0641\u06cc\u06a9\u0633\u200c\u0647\u0627\u06cc SEO \u0628\u0639\u062f \u0627\u0632 deploy", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062a\u0623\u06cc\u06cc\u062f \u0632\u0646\u062f\u0647\u0654 \u0641\u06cc\u06a9\u0633\u200c\u0647\u0627\u06cc SEO \u0628\u0639\u062f \u0627\u0632 deploy", "community": 385, "community_name": "Community 385", "source_file": ".claude/prompt/seo-post-deploy-verification.md", "file_type": "document", "degree": 6}, {"id": "prompt_seo_post_deploy_verification_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 385, "community_name": "Community 385", "source_file": ".claude/prompt/seo-post-deploy-verification.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_post_deploy_verification_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 385, "community_name": "Community 385", "source_file": ".claude/prompt/seo-post-deploy-verification.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_post_deploy_verification_\u0647\u062f\u0641", "label": "\u0647\u062f\u0641", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0647\u062f\u0641", "community": 385, "community_name": "Community 385", "source_file": ".claude/prompt/seo-post-deploy-verification.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_post_deploy_verification_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 385, "community_name": "Community 385", "source_file": ".claude/prompt/seo-post-deploy-verification.md", "file_type": "document", "degree": 6}, {"id": "prompt_seo_post_deploy_verification_\u06f1_\u067e\u06cc\u0634_\u0627\u0632_deploy", "label": "\u06f1. \u067e\u06cc\u0634 \u0627\u0632 deploy", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u067e\u06cc\u0634 \u0627\u0632 deploy", "community": 385, "community_name": "Community 385", "source_file": ".claude/prompt/seo-post-deploy-verification.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_post_deploy_verification_\u06f2_\u0627\u062c\u0631\u0627\u06cc_\u0645\u0639\u06cc\u0627\u0631\u0647\u0627\u06cc_\u067e\u0630\u06cc\u0631\u0634_\u0631\u0648\u06cc_production", "label": "\u06f2. \u0627\u062c\u0631\u0627\u06cc \u0645\u0639\u06cc\u0627\u0631\u0647\u0627\u06cc \u067e\u0630\u06cc\u0631\u0634 \u0631\u0648\u06cc production", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0627\u062c\u0631\u0627\u06cc \u0645\u0639\u06cc\u0627\u0631\u0647\u0627\u06cc \u067e\u0630\u06cc\u0631\u0634 \u0631\u0648\u06cc production", "community": 385, "community_name": "Community 385", "source_file": ".claude/prompt/seo-post-deploy-verification.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_post_deploy_verification_\u06f3_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0627\u062e\u062a\u0627\u0631\u06cc\u0627\u0641\u062a\u0647", "label": "\u06f3. \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc \u0633\u0627\u062e\u062a\u0627\u0631\u06cc\u0627\u0641\u062a\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc \u0633\u0627\u062e\u062a\u0627\u0631\u06cc\u0627\u0641\u062a\u0647", "community": 385, "community_name": "Community 385", "source_file": ".claude/prompt/seo-post-deploy-verification.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_post_deploy_verification_\u06f4_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u0628\u0635\u0631\u06cc", "label": "\u06f4. \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u0628\u0635\u0631\u06cc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u0628\u0635\u0631\u06cc", "community": 385, "community_name": "Community 385", "source_file": ".claude/prompt/seo-post-deploy-verification.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_post_deploy_verification_\u06f5_search_console", "label": "\u06f5. Search Console", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. Search Console", "community": 385, "community_name": "Community 385", "source_file": ".claude/prompt/seo-post-deploy-verification.md", "file_type": "document", "degree": 1}, {"id": "prompt_seo_post_deploy_verification_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 385, "community_name": "Community 385", "source_file": ".claude/prompt/seo-post-deploy-verification.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking", "label": "service-based-online-booking.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "service-based-online-booking.md", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0633\u0631\u0648\u06cc\u0633_service_first_booking", "label": "\u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u0622\u0646\u0644\u0627\u06cc\u0646 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0633\u0631\u0648\u06cc\u0633 (Service-first booking)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u0622\u0646\u0644\u0627\u06cc\u0646 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0633\u0631\u0648\u06cc\u0633 (Service-first booking)", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 8}, {"id": "prompt_service_based_online_booking_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_\u0647\u062f\u0641_spec_\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc", "label": "\u0647\u062f\u0641 / spec \u0627\u0646\u06af\u0644\u06cc\u0633\u06cc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0647\u062f\u0641 / spec \u0627\u0646\u06af\u0644\u06cc\u0633\u06cc", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 4}, {"id": "prompt_service_based_online_booking_fetch_\u0627\u0633\u0644\u0627\u062a_\u062b\u0627\u0628\u062a", "label": "fetch \u0627\u0633\u0644\u0627\u062a \u062b\u0627\u0628\u062a", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "fetch \u0627\u0633\u0644\u0627\u062a \u062b\u0627\u0628\u062a", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_payload_\u0631\u0632\u0631\u0648_\u0628\u062f\u0648\u0646_\u0633\u0631\u0648\u06cc\u0633", "label": "payload \u0631\u0632\u0631\u0648 \u2014 \u0628\u062f\u0648\u0646 \u0633\u0631\u0648\u06cc\u0633", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "payload \u0631\u0632\u0631\u0648 \u2014 \u0628\u062f\u0648\u0646 \u0633\u0631\u0648\u06cc\u0633", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_step_router", "label": "step router", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "step router", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 6}, {"id": "prompt_service_based_online_booking_\u06f1_\u0633\u0631\u0648\u06cc\u0633_\u062f\u0631_response_js", "label": "\u06f1. \u0633\u0631\u0648\u06cc\u0633 \u062f\u0631 response.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0633\u0631\u0648\u06cc\u0633 \u062f\u0631 response.js", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_\u06f2_\u062a\u0634\u062e\u06cc\u0635_\u062d\u0627\u0644\u062a_\u067e\u0632\u0634\u06a9", "label": "\u06f2. \u062a\u0634\u062e\u06cc\u0635 \u062d\u0627\u0644\u062a \u067e\u0632\u0634\u06a9", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u062a\u0634\u062e\u06cc\u0635 \u062d\u0627\u0644\u062a \u067e\u0632\u0634\u06a9", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_\u06f3_\u0645\u0631\u062d\u0644\u0647_\u0627\u0646\u062a\u062e\u0627\u0628_\u0633\u0631\u0648\u06cc\u0633_\u0641\u0642\u0637_\u062d\u0627\u0644\u062a_\u0633\u0631\u0648\u06cc\u0633", "label": "\u06f3. \u0645\u0631\u062d\u0644\u0647\u0654 \u0627\u0646\u062a\u062e\u0627\u0628 \u0633\u0631\u0648\u06cc\u0633 (\u0641\u0642\u0637 \u062d\u0627\u0644\u062a \u0633\u0631\u0648\u06cc\u0633)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0645\u0631\u062d\u0644\u0647\u0654 \u0627\u0646\u062a\u062e\u0627\u0628 \u0633\u0631\u0648\u06cc\u0633 (\u0641\u0642\u0637 \u062d\u0627\u0644\u062a \u0633\u0631\u0648\u06cc\u0633)", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_\u06f4_\u0646\u0645\u0627\u06cc\u0634_\u0641\u0642\u0637_\u0632\u0645\u0627\u0646_\u0647\u0627\u06cc_\u06a9\u0627\u0641\u06cc", "label": "\u06f4. \u0646\u0645\u0627\u06cc\u0634 \u0641\u0642\u0637 \u0632\u0645\u0627\u0646\u200c\u0647\u0627\u06cc \u06a9\u0627\u0641\u06cc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0646\u0645\u0627\u06cc\u0634 \u0641\u0642\u0637 \u0632\u0645\u0627\u0646\u200c\u0647\u0627\u06cc \u06a9\u0627\u0641\u06cc", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_\u06f5_\u0642\u0641\u0644_\u0632\u0645\u0627\u0646_\u0647\u0646\u06af\u0627\u0645_\u062b\u0628\u062a", "label": "\u06f5. \u0642\u0641\u0644 \u0632\u0645\u0627\u0646 \u0647\u0646\u06af\u0627\u0645 \u062b\u0628\u062a", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u0642\u0641\u0644 \u0632\u0645\u0627\u0646 \u0647\u0646\u06af\u0627\u0645 \u062b\u0628\u062a", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_service_based_online_booking_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 373, "community_name": "Community 373", "source_file": ".claude/prompt/service-based-online-booking.md", "file_type": "document", "degree": 1}, {"id": "prompt_sitemap_simplify_with_city", "label": "sitemap-simplify-with-city.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "sitemap-simplify-with-city.md", "community": 387, "community_name": "Community 387", "source_file": ".claude/prompt/sitemap-simplify-with-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_sitemap_simplify_with_city_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_sitemap_\u0628\u0627_\u0634\u0647\u0631_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_\u067e\u0627\u0633\u062e_\u0622\u0633\u062a\u0627\u0646\u0647_sitemap_index", "label": "\u0633\u0627\u062f\u0647\u200c\u0633\u0627\u0632\u06cc sitemap \u0628\u0627 \u0634\u0647\u0631\u0650 \u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u067e\u0627\u0633\u062e + \u0622\u0633\u062a\u0627\u0646\u0647\u0654 sitemap-index", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0633\u0627\u062f\u0647\u200c\u0633\u0627\u0632\u06cc sitemap \u0628\u0627 \u0634\u0647\u0631\u0650 \u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u067e\u0627\u0633\u062e + \u0622\u0633\u062a\u0627\u0646\u0647\u0654 sitemap-index", "community": 387, "community_name": "Community 387", "source_file": ".claude/prompt/sitemap-simplify-with-city.md", "file_type": "document", "degree": 6}, {"id": "prompt_sitemap_simplify_with_city_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 387, "community_name": "Community 387", "source_file": ".claude/prompt/sitemap-simplify-with-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_sitemap_simplify_with_city_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 387, "community_name": "Community 387", "source_file": ".claude/prompt/sitemap-simplify-with-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_sitemap_simplify_with_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 387, "community_name": "Community 387", "source_file": ".claude/prompt/sitemap-simplify-with-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_sitemap_simplify_with_city_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 387, "community_name": "Community 387", "source_file": ".claude/prompt/sitemap-simplify-with-city.md", "file_type": "document", "degree": 4}, {"id": "prompt_sitemap_simplify_with_city_\u06f1_\u062d\u0630\u0641_\u06f3\u06f5_sweep_\u0648_\u06cc\u06a9\u0633\u0627\u0646_\u0633\u0627\u0632\u06cc_\u0628\u0627_\u0627\u0644\u06af\u0648\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "label": "\u06f1. \u062d\u0630\u0641 \u06f3\u06f5 sweep \u0648 \u06cc\u06a9\u0633\u0627\u0646\u200c\u0633\u0627\u0632\u06cc \u0628\u0627 \u0627\u0644\u06af\u0648\u06cc \u06a9\u0644\u06cc\u0646\u06cc\u06a9", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062d\u0630\u0641 \u06f3\u06f5 sweep \u0648 \u06cc\u06a9\u0633\u0627\u0646\u200c\u0633\u0627\u0632\u06cc \u0628\u0627 \u0627\u0644\u06af\u0648\u06cc \u06a9\u0644\u06cc\u0646\u06cc\u06a9", "community": 387, "community_name": "Community 387", "source_file": ".claude/prompt/sitemap-simplify-with-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_sitemap_simplify_with_city_\u06f2_\u0622\u0633\u062a\u0627\u0646\u0647_sitemap_index_\u0645\u0633\u062a\u0642\u0644_\u0627\u0632_backend", "label": "\u06f2. \u0622\u0633\u062a\u0627\u0646\u0647\u0654 sitemap-index (\u0645\u0633\u062a\u0642\u0644 \u0627\u0632 backend)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0622\u0633\u062a\u0627\u0646\u0647\u0654 sitemap-index (\u0645\u0633\u062a\u0642\u0644 \u0627\u0632 backend)", "community": 387, "community_name": "Community 387", "source_file": ".claude/prompt/sitemap-simplify-with-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_sitemap_simplify_with_city_\u06f3_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u0633\u0642\u0641_limit_\u0628\u0639\u062f_\u0627\u0632_\u062a\u063a\u06cc\u06cc\u0631_backend", "label": "\u06f3. \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u0633\u0642\u0641 `limit` \u0628\u0639\u062f \u0627\u0632 \u062a\u063a\u06cc\u06cc\u0631 backend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u0633\u0642\u0641 `limit` \u0628\u0639\u062f \u0627\u0632 \u062a\u063a\u06cc\u06cc\u0631 backend", "community": 387, "community_name": "Community 387", "source_file": ".claude/prompt/sitemap-simplify-with-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_sitemap_simplify_with_city_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 387, "community_name": "Community 387", "source_file": ".claude/prompt/sitemap-simplify-with-city.md", "file_type": "document", "degree": 1}, {"id": "prompt_specialties_doctor_count_wire", "label": "specialties-doctor-count-wire.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "specialties-doctor-count-wire.md", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 1}, {"id": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "label": "\u0646\u0645\u0627\u06cc\u0634 \u062a\u0639\u062f\u0627\u062f \u067e\u0632\u0634\u06a9\u0627\u0646 \u0647\u0631 \u062a\u062e\u0635\u0635 \u062f\u0631 \u0635\u0641\u062d\u0647 /specialties", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0646\u0645\u0627\u06cc\u0634 \u062a\u0639\u062f\u0627\u062f \u067e\u0632\u0634\u06a9\u0627\u0646 \u0647\u0631 \u062a\u062e\u0635\u0635 \u062f\u0631 \u0635\u0641\u062d\u0647 /specialties", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 8}, {"id": "prompt_specialties_doctor_count_wire_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 1}, {"id": "prompt_specialties_doctor_count_wire_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 1}, {"id": "prompt_specialties_doctor_count_wire_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 1}, {"id": "prompt_specialties_doctor_count_wire_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 1}, {"id": "prompt_specialties_doctor_count_wire_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 1}, {"id": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 5}, {"id": "prompt_specialties_doctor_count_wire_\u06f1_wrapper_\u062f\u0631_services_response_js", "label": "\u06f1. wrapper \u062f\u0631 `services/response.js`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. wrapper \u062f\u0631 `services/response.js`", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 1}, {"id": "prompt_specialties_doctor_count_wire_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_city_id_\u0627\u0632_\u0635\u0641\u062d\u0647_\u06cc_server_\u0628\u0647_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_client", "label": "\u06f2. \u067e\u0627\u0633\u200c\u062f\u0627\u062f\u0646 city id \u0627\u0632 \u0635\u0641\u062d\u0647\u200c\u06cc server \u0628\u0647 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a client", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u067e\u0627\u0633\u200c\u062f\u0627\u062f\u0646 city id \u0627\u0632 \u0635\u0641\u062d\u0647\u200c\u06cc server \u0628\u0647 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a client", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 1}, {"id": "prompt_specialties_doctor_count_wire_\u06f3_fetch_\u062f\u0631_components_specialties_index_js", "label": "\u06f3. fetch \u062f\u0631 `components/specialties/index.js`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. fetch \u062f\u0631 `components/specialties/index.js`", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 1}, {"id": "prompt_specialties_doctor_count_wire_\u06f4_itemspecialties_js", "label": "\u06f4. `ItemSpecialties.js`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. `ItemSpecialties.js`", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 1}, {"id": "prompt_specialties_doctor_count_wire_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 50, "community_name": "Community 50", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain", "label": "technical-seo-audit-multidomain.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "technical-seo-audit-multidomain.md", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "label": "\u0645\u0645\u06cc\u0632\u06cc \u0648 \u0631\u0641\u0639 \u06a9\u0627\u0645\u0644 Technical SEO \u0628\u0627 \u0645\u062d\u0648\u0631\u06cc\u062a \u0645\u0639\u0645\u0627\u0631\u06cc \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0645\u0645\u06cc\u0632\u06cc \u0648 \u0631\u0641\u0639 \u06a9\u0627\u0645\u0644 Technical SEO \u0628\u0627 \u0645\u062d\u0648\u0631\u06cc\u062a \u0645\u0639\u0645\u0627\u0631\u06cc \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 9}, {"id": "prompt_technical_seo_audit_multidomain_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u0646\u0642\u0634", "label": "\u0646\u0642\u0634", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u0642\u0634", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06cc\u0627\u0641\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0645\u06cc\u0632\u06cc \u0627\u0648\u0644\u06cc\u0647 \u2014 \u0627\u0632 \u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06cc\u0627\u0641\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0645\u06cc\u0632\u06cc \u0627\u0648\u0644\u06cc\u0647 \u2014 \u0627\u0632 \u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 8}, {"id": "prompt_technical_seo_audit_multidomain_\u06f1_canonical_\u0647\u0645\u0647_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627\u06cc_\u0634\u0647\u0631\u06cc_\u0631\u0627_\u0646\u0627\u0628\u0648\u062f_\u0645\u06cc_\u06a9\u0646\u062f_critical", "label": "\u06f1. Canonical \u0647\u0645\u0647 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627\u06cc \u0634\u0647\u0631\u06cc \u0631\u0627 \u0646\u0627\u0628\u0648\u062f \u0645\u06cc\u200c\u06a9\u0646\u062f (Critical)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. Canonical \u0647\u0645\u0647 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627\u06cc \u0634\u0647\u0631\u06cc \u0631\u0627 \u0646\u0627\u0628\u0648\u062f \u0645\u06cc\u200c\u06a9\u0646\u062f (Critical)", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f2_sitemap_high", "label": "\u06f2. Sitemap (High)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. Sitemap (High)", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f3_robots_high", "label": "\u06f3. Robots (High)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. Robots (High)", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f4_metadata_\u0633\u0637\u062d_\u0631\u06cc\u0634\u0647_high", "label": "\u06f4. Metadata \u0633\u0637\u062d \u0631\u06cc\u0634\u0647 (High)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. Metadata \u0633\u0637\u062d \u0631\u06cc\u0634\u0647 (High)", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f5_\u0635\u0641\u062d\u0627\u062a_dynamic_soft_404_\u0648_metadata_\u0646\u0627\u0642\u0635_high", "label": "\u06f5. \u0635\u0641\u062d\u0627\u062a dynamic \u2014 soft 404 \u0648 metadata \u0646\u0627\u0642\u0635 (High)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u0635\u0641\u062d\u0627\u062a dynamic \u2014 soft 404 \u0648 metadata \u0646\u0627\u0642\u0635 (High)", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f6_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a\u06cc_\u0648_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc_medium", "label": "\u06f6. \u0635\u0641\u062d\u0627\u062a \u0644\u06cc\u0633\u062a\u06cc \u0648 \u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc (Medium)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. \u0635\u0641\u062d\u0627\u062a \u0644\u06cc\u0633\u062a\u06cc \u0648 \u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc (Medium)", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f7_security_headers_\u0648\u0636\u0639\u06cc\u062a_\u062e\u0648\u0628", "label": "\u06f7. Security headers \u2014 \u0648\u0636\u0639\u06cc\u062a \u062e\u0648\u0628", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f7. Security headers \u2014 \u0648\u0636\u0639\u06cc\u062a \u062e\u0648\u0628", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 10}, {"id": "prompt_technical_seo_audit_multidomain_\u06f0_\u062a\u0635\u0645\u06cc\u0645_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632_\u0647\u0645\u0647_\u0686\u06cc\u0632", "label": "\u06f0. \u062a\u0635\u0645\u06cc\u0645 \u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc (\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632 \u0647\u0645\u0647\u200c\u0686\u06cc\u0632)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f0. \u062a\u0635\u0645\u06cc\u0645 \u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc (\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632 \u0647\u0645\u0647\u200c\u0686\u06cc\u0632)", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f1_metadatabase_\u0648_canonical_per_page", "label": "\u06f1. `metadataBase` \u0648 canonical per-page", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. `metadataBase` \u0648 canonical per-page", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f2_\u0627\u0635\u0644\u0627\u062d_sitemap", "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d sitemap", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0627\u0635\u0644\u0627\u062d sitemap", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f3_\u0627\u0635\u0644\u0627\u062d_robots", "label": "\u06f3. \u0627\u0635\u0644\u0627\u062d robots", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0627\u0635\u0644\u0627\u062d robots", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f4_json_ld_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "label": "\u06f4. JSON-LD \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. JSON-LD \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f5_soft_404_\u0648_status_codes", "label": "\u06f5. Soft 404 \u0648 status codes", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. Soft 404 \u0648 status codes", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f6_\u0645\u0645\u06cc\u0632\u06cc_rendering_\u0648_performance", "label": "\u06f6. \u0645\u0645\u06cc\u0632\u06cc rendering \u0648 performance", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. \u0645\u0645\u06cc\u0632\u06cc rendering \u0648 performance", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f7_pagination_\u0648_\u0635\u0641\u062d\u0627\u062a_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc", "label": "\u06f7. Pagination \u0648 \u0635\u0641\u062d\u0627\u062a \u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f7. Pagination \u0648 \u0635\u0641\u062d\u0627\u062a \u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u06f8_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0645\u0645\u06cc\u0632\u06cc", "label": "\u06f8. \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0645\u0645\u06cc\u0632\u06cc", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f8. \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0645\u0645\u06cc\u0632\u06cc", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_technical_seo_audit_multidomain_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 10, "community_name": "Community 10", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page", "label": "unclaimed-doctor-public-page.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "unclaimed-doctor-public-page.md", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u0635\u0641\u062d\u0647_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0632\u0634\u06a9_\u0631\u0641\u062a\u0627\u0631_\u0627\u0644\u0632\u0627\u0645\u06cc_\u0628\u0631\u0627\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u062f\u0648\u0646_\u0635\u0627\u062d\u0628_unclaimed", "label": "\u0635\u0641\u062d\u0647 \u0639\u0645\u0648\u0645\u06cc \u067e\u0632\u0634\u06a9 \u2014 \u0631\u0641\u062a\u0627\u0631 \u0627\u0644\u0632\u0627\u0645\u06cc \u0628\u0631\u0627\u06cc \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u062f\u0648\u0646 \u0635\u0627\u062d\u0628 (unclaimed)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0635\u0641\u062d\u0647 \u0639\u0645\u0648\u0645\u06cc \u067e\u0632\u0634\u06a9 \u2014 \u0631\u0641\u062a\u0627\u0631 \u0627\u0644\u0632\u0627\u0645\u06cc \u0628\u0631\u0627\u06cc \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u062f\u0648\u0646 \u0635\u0627\u062d\u0628 (unclaimed)", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 7}, {"id": "prompt_unclaimed_doctor_public_page_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 9}, {"id": "prompt_unclaimed_doctor_public_page_\u06f1_\u0645\u062e\u0641\u06cc_\u06a9\u0631\u062f\u0646_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0631\u0636\u0627\u06cc\u062a_\u0628\u0631\u0627\u06cc_unclaimed_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646", "label": "\u06f1. \u0645\u062e\u0641\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0627\u0645\u062a\u06cc\u0627\u0632/\u0631\u0636\u0627\u06cc\u062a \u0628\u0631\u0627\u06cc unclaimed (\u0645\u0647\u0645\u200c\u062a\u0631\u06cc\u0646)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0645\u062e\u0641\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0627\u0645\u062a\u06cc\u0627\u0632/\u0631\u0636\u0627\u06cc\u062a \u0628\u0631\u0627\u06cc unclaimed (\u0645\u0647\u0645\u200c\u062a\u0631\u06cc\u0646)", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u06f2_\u062d\u0630\u0641_json_ld_aggregaterating_\u0628\u0631\u0627\u06cc_unclaimed", "label": "\u06f2. \u062d\u0630\u0641 JSON-LD AggregateRating \u0628\u0631\u0627\u06cc unclaimed", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u062d\u0630\u0641 JSON-LD AggregateRating \u0628\u0631\u0627\u06cc unclaimed", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u06f3_\u062a\u06cc\u06a9_\u062a\u0623\u06cc\u06cc\u062f_\u0641\u0642\u0637_\u0628\u0631\u0627\u06cc_claimed", "label": "\u06f3. \u062a\u06cc\u06a9 \u062a\u0623\u06cc\u06cc\u062f \u0641\u0642\u0637 \u0628\u0631\u0627\u06cc claimed", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u06cc\u06a9 \u062a\u0623\u06cc\u06cc\u062f \u0641\u0642\u0637 \u0628\u0631\u0627\u06cc claimed", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u06f4_noindex_\u0631\u0648\u06cc_\u0635\u0641\u062d\u0647_\u06cc_unclaimed", "label": "\u06f4. noindex \u0631\u0648\u06cc \u0635\u0641\u062d\u0647\u200c\u06cc unclaimed", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. noindex \u0631\u0648\u06cc \u0635\u0641\u062d\u0647\u200c\u06cc unclaimed", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u06f5_\u062e\u0627\u0631\u062c_\u06a9\u0631\u062f\u0646_unclaimed_\u0627\u0632_sitemap", "label": "\u06f5. \u062e\u0627\u0631\u062c\u200c\u06a9\u0631\u062f\u0646 unclaimed \u0627\u0632 sitemap", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u062e\u0627\u0631\u062c\u200c\u06a9\u0631\u062f\u0646 unclaimed \u0627\u0632 sitemap", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u06f6_\u0628\u0631\u0686\u0633\u0628_\u062a\u0623\u06cc\u06cc\u062f\u0646\u0634\u062f\u0647_cta_\u062a\u0635\u0627\u062d\u0628", "label": "\u06f6. \u0628\u0631\u0686\u0633\u0628 \u00ab\u062a\u0623\u06cc\u06cc\u062f\u0646\u0634\u062f\u0647\u00bb + CTA \u062a\u0635\u0627\u062d\u0628", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. \u0628\u0631\u0686\u0633\u0628 \u00ab\u062a\u0623\u06cc\u06cc\u062f\u0646\u0634\u062f\u0647\u00bb + CTA \u062a\u0635\u0627\u062d\u0628", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u06f7_\u0645\u062e\u0641\u06cc_\u06a9\u0631\u062f\u0646_\u0628\u0644\u0648\u06a9_\u0647\u0627\u06cc_\u062e\u0627\u0644\u06cc_\u062f\u0631_\u062d\u0627\u0644\u062a_unclaimed", "label": "\u06f7. \u0645\u062e\u0641\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0628\u0644\u0648\u06a9\u200c\u0647\u0627\u06cc \u062e\u0627\u0644\u06cc \u062f\u0631 \u062d\u0627\u0644\u062a unclaimed", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f7. \u0645\u062e\u0641\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0628\u0644\u0648\u06a9\u200c\u0647\u0627\u06cc \u062e\u0627\u0644\u06cc \u062f\u0631 \u062d\u0627\u0644\u062a unclaimed", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u06f8_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0627\u0648\u0644\u0648\u06cc\u062a_\u067e\u0627\u06cc\u06cc\u0646_\u0627\u0633\u0644\u0627\u06af_\u06a9\u0644\u06cc\u062f\u0648\u0627\u0698\u0647_\u062f\u0627\u0631", "label": "\u06f8. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc\u060c \u0627\u0648\u0644\u0648\u06cc\u062a \u067e\u0627\u06cc\u06cc\u0646) \u0627\u0633\u0644\u0627\u06af \u06a9\u0644\u06cc\u062f\u0648\u0627\u0698\u0647\u200c\u062f\u0627\u0631", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f8. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc\u060c \u0627\u0648\u0644\u0648\u06cc\u062a \u067e\u0627\u06cc\u06cc\u0646) \u0627\u0633\u0644\u0627\u06af \u06a9\u0644\u06cc\u062f\u0648\u0627\u0698\u0647\u200c\u062f\u0627\u0631", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_unclaimed_doctor_public_page_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 374, "community_name": "Community 374", "source_file": ".claude/prompt/unclaimed-doctor-public-page.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16", "label": "upgrade-next-16.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "upgrade-next-16.md", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "label": "\u0627\u0631\u062a\u0642\u0627\u06cc Next.js \u0627\u0632 15 \u0628\u0647 16 (\u0622\u062e\u0631\u06cc\u0646 \u0646\u0633\u062e\u0647) + \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0627\u0645\u06a9\u0627\u0646\u0627\u062a \u062c\u062f\u06cc\u062f", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0627\u0631\u062a\u0642\u0627\u06cc Next.js \u0627\u0632 15 \u0628\u0647 16 (\u0622\u062e\u0631\u06cc\u0646 \u0646\u0633\u062e\u0647) + \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0627\u0645\u06a9\u0627\u0646\u0627\u062a \u062c\u062f\u06cc\u062f", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 8}, {"id": "prompt_upgrade_next_16_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 10}, {"id": "prompt_upgrade_next_16_\u06f1_\u0633\u0627\u062e\u062a_\u0628\u0631\u0646\u0686", "label": "\u06f1. \u0633\u0627\u062e\u062a \u0628\u0631\u0646\u0686", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0633\u0627\u062e\u062a \u0628\u0631\u0646\u0686", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u06f2_\u0627\u0631\u062a\u0642\u0627\u06cc_\u067e\u06a9\u06cc\u062c_\u0647\u0627", "label": "\u06f2. \u0627\u0631\u062a\u0642\u0627\u06cc \u067e\u06a9\u06cc\u062c\u200c\u0647\u0627", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0627\u0631\u062a\u0642\u0627\u06cc \u067e\u06a9\u06cc\u062c\u200c\u0647\u0627", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u06f3_\u062a\u0628\u062f\u06cc\u0644_middleware_js_\u0628\u0647_proxy_js", "label": "\u06f3. \u062a\u0628\u062f\u06cc\u0644 `middleware.js` \u0628\u0647 `proxy.js`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u0628\u062f\u06cc\u0644 `middleware.js` \u0628\u0647 `proxy.js`", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u06f4_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_next_lint", "label": "\u06f4. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc `next lint`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc `next lint`", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u06f5_turbopack_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u062c\u062f\u06cc\u062f_dev_\u0648_build", "label": "\u06f5. Turbopack (\u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u062c\u062f\u06cc\u062f dev \u0648 build)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. Turbopack (\u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u062c\u062f\u06cc\u062f dev \u0648 build)", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u06f6_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_react_compiler", "label": "\u06f6. \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc React Compiler", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f6. \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc React Compiler", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u06f7_cache_components_\u0627\u0631\u0632\u06cc\u0627\u0628\u06cc_\u0645\u062d\u062a\u0627\u0637\u0627\u0646\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0645\u0634\u0631\u0648\u0637", "label": "\u06f7. Cache Components \u2014 \u0627\u0631\u0632\u06cc\u0627\u0628\u06cc \u0645\u062d\u062a\u0627\u0637\u0627\u0646\u0647 (\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0645\u0634\u0631\u0648\u0637)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f7. Cache Components \u2014 \u0627\u0631\u0632\u06cc\u0627\u0628\u06cc \u0645\u062d\u062a\u0627\u0637\u0627\u0646\u0647 (\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0645\u0634\u0631\u0648\u0637)", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u06f8_\u062a\u0645\u06cc\u0632\u06a9\u0627\u0631\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0646\u0641\u06cc\u06af_\u0646\u0633\u062e\u0647_16", "label": "\u06f8. \u062a\u0645\u06cc\u0632\u06a9\u0627\u0631\u06cc\u200c\u0647\u0627\u06cc \u06a9\u0627\u0646\u0641\u06cc\u06af \u0646\u0633\u062e\u0647 16", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f8. \u062a\u0645\u06cc\u0632\u06a9\u0627\u0631\u06cc\u200c\u0647\u0627\u06cc \u06a9\u0627\u0646\u0641\u06cc\u06af \u0646\u0633\u062e\u0647 16", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u06f9_\u062a\u0633\u062a_\u0646\u0647\u0627\u06cc\u06cc_\u0648_commit", "label": "\u06f9. \u062a\u0633\u062a \u0646\u0647\u0627\u06cc\u06cc \u0648 commit", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f9. \u062a\u0633\u062a \u0646\u0647\u0627\u06cc\u06cc \u0648 commit", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_upgrade_next_16_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 20, "community_name": "Community 20", "source_file": ".claude/prompt/upgrade-next-16.md", "file_type": "document", "degree": 1}, {"id": "prompt_user_profile_no_404", "label": "user-profile-no-404.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "user-profile-no-404.md", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 1}, {"id": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "label": "\u0647\u0645\u200c\u062e\u0648\u0627\u0646\u200c\u06a9\u0631\u062f\u0646 \u0645\u0635\u0631\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0627 endpoint \u0627\u0635\u0644\u0627\u062d\u200c\u0634\u062f\u0647 (\u0628\u062f\u0648\u0646 404 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 \u062c\u062f\u06cc\u062f)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0647\u0645\u200c\u062e\u0648\u0627\u0646\u200c\u06a9\u0631\u062f\u0646 \u0645\u0635\u0631\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0627 endpoint \u0627\u0635\u0644\u0627\u062d\u200c\u0634\u062f\u0647 (\u0628\u062f\u0648\u0646 404 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 \u062c\u062f\u06cc\u062f)", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 8}, {"id": "prompt_user_profile_no_404_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 1}, {"id": "prompt_user_profile_no_404_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 1}, {"id": "prompt_user_profile_no_404_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 1}, {"id": "prompt_user_profile_no_404_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 1}, {"id": "prompt_user_profile_no_404_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 3}, {"id": "prompt_user_profile_no_404_components_appointment_index_js_\u0647\u0646\u062f\u0644_\u0648\u06cc\u0698\u0647_\u06cc_404", "label": "`components/appointment/index.js` \u2014 \u0647\u0646\u062f\u0644 \u0648\u06cc\u0698\u0647\u200c\u06cc 404", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`components/appointment/index.js` \u2014 \u0647\u0646\u062f\u0644 \u0648\u06cc\u0698\u0647\u200c\u06cc 404", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 1}, {"id": "prompt_user_profile_no_404_submitdata_js_\u0627\u0646\u062a\u062e\u0627\u0628_post_\u06cc\u0627_patch_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0648\u062c\u0648\u062f_uuid", "label": "`SubmitData.js` \u2014 \u0627\u0646\u062a\u062e\u0627\u0628 POST \u06cc\u0627 PATCH \u0628\u0631 \u0627\u0633\u0627\u0633 \u0648\u062c\u0648\u062f `uuid`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`SubmitData.js` \u2014 \u0627\u0646\u062a\u062e\u0627\u0628 POST \u06cc\u0627 PATCH \u0628\u0631 \u0627\u0633\u0627\u0633 \u0648\u062c\u0648\u062f `uuid`", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 1}, {"id": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 4}, {"id": "prompt_user_profile_no_404_\u06f1_\u062a\u0623\u06cc\u06cc\u062f_\u062c\u0631\u06cc\u0627\u0646_\u0644\u0648\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_appointment_dashboard", "label": "\u06f1. \u062a\u0623\u06cc\u06cc\u062f \u062c\u0631\u06cc\u0627\u0646 \u0644\u0648\u062f \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 (appointment + dashboard)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062a\u0623\u06cc\u06cc\u062f \u062c\u0631\u06cc\u0627\u0646 \u0644\u0648\u062f \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 (appointment + dashboard)", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 1}, {"id": "prompt_user_profile_no_404_\u06f2_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0647\u0646\u062f\u0644_404_\u0645\u0646\u0633\u0648\u062e", "label": "\u06f2. \u0633\u0627\u062f\u0647\u200c\u0633\u0627\u0632\u06cc \u0647\u0646\u062f\u0644 404 \u0645\u0646\u0633\u0648\u062e", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0633\u0627\u062f\u0647\u200c\u0633\u0627\u0632\u06cc \u0647\u0646\u062f\u0644 404 \u0645\u0646\u0633\u0648\u062e", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 1}, {"id": "prompt_user_profile_no_404_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_post_patch_\u062f\u0631_submitdata_js", "label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc POST/PATCH \u062f\u0631 `SubmitData.js`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc POST/PATCH \u062f\u0631 `SubmitData.js`", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 1}, {"id": "prompt_user_profile_no_404_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 43, "community_name": "Community 43", "source_file": ".claude/prompt/user-profile-no-404.md", "file_type": "document", "degree": 1}, {"id": "prompt_verify_past_slots_disabled", "label": "verify-past-slots-disabled.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "verify-past-slots-disabled.md", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "label": "\u062a\u0623\u06cc\u06cc\u062f \u0648 \u0633\u062e\u062a\u200c\u0633\u0627\u0632\u06cc \u063a\u06cc\u0631\u0641\u0639\u0627\u0644\u200c\u0628\u0648\u062f\u0646 \u0627\u0633\u0644\u0627\u062a\u200c\u0647\u0627\u06cc \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u0648\u0628\u062a", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "\u062a\u0623\u06cc\u06cc\u062f \u0648 \u0633\u062e\u062a\u200c\u0633\u0627\u0632\u06cc \u063a\u06cc\u0631\u0641\u0639\u0627\u0644\u200c\u0628\u0648\u062f\u0646 \u0627\u0633\u0644\u0627\u062a\u200c\u0647\u0627\u06cc \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u0648\u0628\u062a", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 8}, {"id": "prompt_verify_past_slots_disabled_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0631\u0648\u0698\u0647", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_verify_past_slots_disabled_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0632\u0645\u06cc\u0646\u0647", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_verify_past_slots_disabled_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_verify_past_slots_disabled_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_verify_past_slots_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 3}, {"id": "prompt_verify_past_slots_disabled_hours_list_js", "label": "`hours/List.js`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "`hours/List.js`", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_verify_past_slots_disabled_\u0622\u0628\u062c\u06a9\u062a_\u0627\u0633\u0644\u0627\u062a_\u0627\u0632_adaptslots_api", "label": "\u0622\u0628\u062c\u06a9\u062a \u0627\u0633\u0644\u0627\u062a (\u0627\u0632 `adaptSlots` / API)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0622\u0628\u062c\u06a9\u062a \u0627\u0633\u0644\u0627\u062a (\u0627\u0632 `adaptSlots` / API)", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0638\u0627\u06cc\u0641", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 4}, {"id": "prompt_verify_past_slots_disabled_\u06f1_\u06af\u0627\u0631\u062f_\u0632\u0645\u0627\u0646_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u06af\u0631\u06cc\u062f_\u0633\u0627\u0639\u062a", "label": "\u06f1. \u06af\u0627\u0631\u062f \u0632\u0645\u0627\u0646 \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 \u06af\u0631\u06cc\u062f \u0633\u0627\u0639\u062a", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u06af\u0627\u0631\u062f \u0632\u0645\u0627\u0646 \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 \u06af\u0631\u06cc\u062f \u0633\u0627\u0639\u062a", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_verify_past_slots_disabled_\u06f2_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0639\u062f\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0627\u0633\u0644\u0627\u062a_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_sendappo", "label": "\u06f2. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc) \u0639\u062f\u0645 \u0627\u0646\u062a\u062e\u0627\u0628 \u0627\u0633\u0644\u0627\u062a \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 SendAppo", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc) \u0639\u062f\u0645 \u0627\u0646\u062a\u062e\u0627\u0628 \u0627\u0633\u0644\u0627\u062a \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 SendAppo", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_verify_past_slots_disabled_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u0631\u0641\u062a\u0627\u0631_end_to_end", "label": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f \u0631\u0641\u062a\u0627\u0631 end-to-end", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f \u0631\u0641\u062a\u0627\u0631 end-to-end", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 1}, {"id": "prompt_verify_past_slots_disabled_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "community": 44, "community_name": "Community 44", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "file_type": "document", "degree": 1}, {"id": "claude", "label": "CLAUDE.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CLAUDE.md", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_claude_md", "label": "CLAUDE.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CLAUDE.md", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 4}, {"id": "claude_commands", "label": "Commands", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Commands", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_environment_variables", "label": "Environment Variables", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Environment Variables", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_architecture_overview", "label": "Architecture Overview", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Architecture Overview", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 10}, {"id": "claude_multi_domain_system_core_concept", "label": "Multi-Domain System (Core Concept)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Multi-Domain System (Core Concept)", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_page_metadata_pattern", "label": "Page Metadata Pattern", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Page Metadata Pattern", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_data_fetching", "label": "Data Fetching", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Data Fetching", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_authentication_authorization", "label": "Authentication & Authorization", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Authentication &amp; Authorization", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_styling", "label": "Styling", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Styling", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_routing_structure", "label": "Routing Structure", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Routing Structure", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_key_data_files", "label": "Key Data Files", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Key Data Files", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_doctor_clinic_slugs", "label": "Doctor & Clinic Slugs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Doctor &amp; Clinic Slugs", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_json_ld_structured_data", "label": "JSON-LD Structured Data", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "JSON-LD Structured Data", "community": 39, "community_name": "Community 39", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "readme", "label": "README.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "README.md", "community": 63, "community_name": "Community 63", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "label": "\ud83c\udfe5 \u0646\u0648\u0628\u062a724 (Nobat724) - \u0633\u06cc\u0633\u062a\u0645 \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u0622\u0646\u0644\u0627\u06cc\u0646 \u067e\u0632\u0634\u06a9\u06cc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 21.9, "font": {"size": 12, "color": "#ffffff"}, "title": "\ud83c\udfe5 \u0646\u0648\u0628\u062a724 (Nobat724) - \u0633\u06cc\u0633\u062a\u0645 \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u0622\u0646\u0644\u0627\u06cc\u0646 \u067e\u0632\u0634\u06a9\u06cc", "community": 63, "community_name": "Community 63", "source_file": "README.md", "file_type": "document", "degree": 19}, {"id": "readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628", "label": "\ud83d\udccb \u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udccb \u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628", "community": 63, "community_name": "Community 63", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0645\u0639\u0631\u0641\u06cc_\u067e\u0631\u0648\u0698\u0647", "label": "\ud83c\udfaf \u0645\u0639\u0631\u0641\u06cc \u067e\u0631\u0648\u0698\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83c\udfaf \u0645\u0639\u0631\u0641\u06cc \u067e\u0631\u0648\u0698\u0647", "community": 63, "community_name": "Community 63", "source_file": "README.md", "file_type": "document", "degree": 2}, {"id": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", "label": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0627\u0635\u0644\u06cc:", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0627\u0635\u0644\u06cc:", "community": 63, "community_name": "Community 63", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "label": "\ud83c\udfd7\ufe0f \u0645\u0639\u0645\u0627\u0631\u06cc \u0648 \u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83c\udfd7\ufe0f \u0645\u0639\u0645\u0627\u0631\u06cc \u0648 \u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "community": 75, "community_name": "Community 75", "source_file": "README.md", "file_type": "document", "degree": 7}, {"id": "readme_frontend_framework", "label": "Frontend Framework", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend Framework", "community": 75, "community_name": "Community 75", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_ui_ux", "label": "UI/UX", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UI/UX", "community": 75, "community_name": "Community 75", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_state_management_data_fetching", "label": "State Management & Data Fetching", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "State Management &amp; Data Fetching", "community": 75, "community_name": "Community 75", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_authentication_authorization", "label": "Authentication & Authorization", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Authentication &amp; Authorization", "community": 75, "community_name": "Community 75", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647_\u0647\u0627\u06cc_\u062a\u062e\u0635\u0635\u06cc", "label": "\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u0635\u06cc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u0635\u06cc", "community": 75, "community_name": "Community 75", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_development_tools", "label": "Development Tools", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Development Tools", "community": 75, "community_name": "Community 75", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0631\u0648\u0698\u0647", "label": "\ud83d\udcc1 \u0633\u0627\u062e\u062a\u0627\u0631 \u067e\u0631\u0648\u0698\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udcc1 \u0633\u0627\u062e\u062a\u0627\u0631 \u067e\u0631\u0648\u0698\u0647", "community": 63, "community_name": "Community 63", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", "label": "\u2728 \u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u06a9\u0644\u06cc\u062f\u06cc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u2728 \u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u06a9\u0644\u06cc\u062f\u06cc", "community": 93, "community_name": "Community 93", "source_file": "README.md", "file_type": "document", "degree": 5}, {"id": "readme_1_multi_domain_architecture", "label": "1. Multi-Domain Architecture", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Multi-Domain Architecture", "community": 93, "community_name": "Community 93", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_2_\u0633\u06cc\u0633\u062a\u0645_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", "label": "2. \u0633\u06cc\u0633\u062a\u0645 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u0633\u06cc\u0633\u062a\u0645 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a", "community": 93, "community_name": "Community 93", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_3_\u0633\u06cc\u0633\u062a\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "label": "3. \u0633\u06cc\u0633\u062a\u0645 \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0633\u06cc\u0633\u062a\u0645 \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a", "community": 93, "community_name": "Community 93", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_4_\u067e\u0646\u0644_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc", "label": "4. \u067e\u0646\u0644 \u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u067e\u0646\u0644 \u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc", "community": 93, "community_name": "Community 93", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", "label": "\ud83d\ude80 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u067e\u0631\u0648\u0698\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\ude80 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u067e\u0631\u0648\u0698\u0647", "community": 95, "community_name": "Community 95", "source_file": "README.md", "file_type": "document", "degree": 5}, {"id": "readme_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", "label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", "community": 95, "community_name": "Community 95", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0646\u0635\u0628_\u0648_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc", "label": "\u0646\u0635\u0628 \u0648 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u0635\u0628 \u0648 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc", "community": 95, "community_name": "Community 95", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f", "label": "\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a\u200c\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a\u200c\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f", "community": 95, "community_name": "Community 95", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_docker", "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u0627 Docker", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u0627 Docker", "community": 95, "community_name": "Community 95", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", "label": "\ud83c\udf10 \u0633\u06cc\u0633\u062a\u0645 Multi-Domain", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83c\udf10 \u0633\u06cc\u0633\u062a\u0645 Multi-Domain", "community": 107, "community_name": "Community 107", "source_file": "README.md", "file_type": "document", "degree": 4}, {"id": "readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627", "label": "\u0633\u0627\u062e\u062a\u0627\u0631 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0633\u0627\u062e\u062a\u0627\u0631 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627", "community": 107, "community_name": "Community 107", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0641\u0631\u0622\u06cc\u0646\u062f_\u062a\u0634\u062e\u06cc\u0635_\u0634\u0647\u0631", "label": "\u0641\u0631\u0622\u06cc\u0646\u062f \u062a\u0634\u062e\u06cc\u0635 \u0634\u0647\u0631", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0631\u0622\u06cc\u0646\u062f \u062a\u0634\u062e\u06cc\u0635 \u0634\u0647\u0631", "community": 107, "community_name": "Community 107", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_metadata_\u062f\u0627\u06cc\u0646\u0627\u0645\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631", "label": "Metadata \u062f\u0627\u06cc\u0646\u0627\u0645\u06cc\u06a9 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0634\u0647\u0631", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Metadata \u062f\u0627\u06cc\u0646\u0627\u0645\u06cc\u06a9 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0634\u0647\u0631", "community": 107, "community_name": "Community 107", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", "label": "\ud83d\udd10 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a \u0648 \u0645\u062c\u0648\u0632\u0647\u0627", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd10 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a \u0648 \u0645\u062c\u0648\u0632\u0647\u0627", "community": 105, "community_name": "Community 105", "source_file": "README.md", "file_type": "document", "degree": 4}, {"id": "readme_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0648\u0631\u0648\u062f", "label": "\u0641\u0631\u0622\u06cc\u0646\u062f \u0648\u0631\u0648\u062f", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0631\u0622\u06cc\u0646\u062f \u0648\u0631\u0648\u062f", "community": 105, "community_name": "Community 105", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_cookies_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0634\u062f\u0647", "label": "Cookies \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Cookies \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647", "community": 105, "community_name": "Community 105", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0645\u062d\u0627\u0641\u0638\u062a_\u0627\u0632_\u0645\u0633\u06cc\u0631\u0647\u0627", "label": "\u0645\u062d\u0627\u0641\u0638\u062a \u0627\u0632 \u0645\u0633\u06cc\u0631\u0647\u0627", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u062d\u0627\u0641\u0638\u062a \u0627\u0632 \u0645\u0633\u06cc\u0631\u0647\u0627", "community": 105, "community_name": "Community 105", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", "label": "\ud83d\udccd \u0645\u0633\u06cc\u0631\u0647\u0627 \u0648 \u0635\u0641\u062d\u0627\u062a", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udccd \u0645\u0633\u06cc\u0631\u0647\u0627 \u0648 \u0635\u0641\u062d\u0627\u062a", "community": 96, "community_name": "Community 96", "source_file": "README.md", "file_type": "document", "degree": 5}, {"id": "readme_\u0635\u0641\u062d\u0627\u062a_\u0639\u0645\u0648\u0645\u06cc_public", "label": "\u0635\u0641\u062d\u0627\u062a \u0639\u0645\u0648\u0645\u06cc (Public)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0635\u0641\u062d\u0627\u062a \u0639\u0645\u0648\u0645\u06cc (Public)", "community": 96, "community_name": "Community 96", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0635\u0641\u062d\u0627\u062a_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "label": "\u0635\u0641\u062d\u0627\u062a \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0635\u0641\u062d\u0627\u062a \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a", "community": 96, "community_name": "Community 96", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0635\u0641\u062d\u0627\u062a_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", "label": "\u0635\u0641\u062d\u0627\u062a \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0635\u0641\u062d\u0627\u062a \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a", "community": 96, "community_name": "Community 96", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u067e\u0646\u0644_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc_protected", "label": "\u067e\u0646\u0644 \u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc (Protected)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u0646\u0644 \u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc (Protected)", "community": 96, "community_name": "Community 96", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", "label": "\ud83e\udde9 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a\u200c\u0647\u0627\u06cc \u0627\u0635\u0644\u06cc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83e\udde9 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a\u200c\u0647\u0627\u06cc \u0627\u0635\u0644\u06cc", "community": 122, "community_name": "Community 122", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_layout_components", "label": "Layout Components", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Layout Components", "community": 122, "community_name": "Community 122", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_feature_components", "label": "Feature Components", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Feature Components", "community": 122, "community_name": "Community 122", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "label": "\ud83d\udd0c API \u0648 \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd0c API \u0648 \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627", "community": 104, "community_name": "Community 104", "source_file": "README.md", "file_type": "document", "degree": 4}, {"id": "readme_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_axios_services_api_js", "label": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a Axios (`services/api.js`)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a Axios (`services/api.js`)", "community": 104, "community_name": "Community 104", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_api_endpoints_services_response_js", "label": "API Endpoints (`services/response.js`)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "API Endpoints (`services/response.js`)", "community": 104, "community_name": "Community 104", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_helper_functions_helper_index_js", "label": "Helper Functions (`helper/index.js`)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Helper Functions (`helper/index.js`)", "community": 104, "community_name": "Community 104", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", "label": "\ud83c\udfa8 \u0627\u0633\u062a\u0627\u06cc\u0644\u200c\u062f\u0647\u06cc", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83c\udfa8 \u0627\u0633\u062a\u0627\u06cc\u0644\u200c\u062f\u0647\u06cc", "community": 106, "community_name": "Community 106", "source_file": "README.md", "file_type": "document", "degree": 4}, {"id": "readme_tailwind_css", "label": "Tailwind CSS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Tailwind CSS", "community": 106, "community_name": "Community 106", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_material_ui_theme", "label": "Material-UI Theme", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Material-UI Theme", "community": 106, "community_name": "Community 106", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_dark_mode", "label": "Dark Mode", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Dark Mode", "community": 106, "community_name": "Community 106", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_deployment", "label": "\ud83d\udc33 Deployment", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udc33 Deployment", "community": 94, "community_name": "Community 94", "source_file": "README.md", "file_type": "document", "degree": 5}, {"id": "readme_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc_\u0645\u062d\u06cc\u0637\u06cc_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", "label": "\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc \u0645\u062d\u06cc\u0637\u06cc \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc \u0645\u062d\u06cc\u0637\u06cc \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632", "community": 94, "community_name": "Community 94", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_build_production", "label": "Build Production", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Build Production", "community": 94, "community_name": "Community 94", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_docker_deployment", "label": "Docker Deployment", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Docker Deployment", "community": 94, "community_name": "Community 94", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_docker_compose", "label": "Docker Compose", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Docker Compose", "community": 94, "community_name": "Community 94", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "label": "\ud83d\udcdd \u0646\u06a9\u0627\u062a \u062a\u0648\u0633\u0639\u0647", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udcdd \u0646\u06a9\u0627\u062a \u062a\u0648\u0633\u0639\u0647", "community": 87, "community_name": "Community 87", "source_file": "README.md", "file_type": "document", "degree": 6}, {"id": "readme_1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0635\u0641\u062d\u0647_\u062c\u062f\u06cc\u062f", "label": "1. \u0627\u0641\u0632\u0648\u062f\u0646 \u0635\u0641\u062d\u0647 \u062c\u062f\u06cc\u062f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "1. \u0627\u0641\u0632\u0648\u062f\u0646 \u0635\u0641\u062d\u0647 \u062c\u062f\u06cc\u062f", "community": 87, "community_name": "Community 87", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_2_\u0627\u0641\u0632\u0648\u062f\u0646_api_endpoint_\u062c\u062f\u06cc\u062f", "label": "2. \u0627\u0641\u0632\u0648\u062f\u0646 API Endpoint \u062c\u062f\u06cc\u062f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "2. \u0627\u0641\u0632\u0648\u062f\u0646 API Endpoint \u062c\u062f\u06cc\u062f", "community": 87, "community_name": "Community 87", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_3_\u0627\u0641\u0632\u0648\u062f\u0646_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u062c\u062f\u06cc\u062f", "label": "3. \u0627\u0641\u0632\u0648\u062f\u0646 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a \u062c\u062f\u06cc\u062f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "3. \u0627\u0641\u0632\u0648\u062f\u0646 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a \u062c\u062f\u06cc\u062f", "community": 87, "community_name": "Community 87", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_4_\u06a9\u0627\u0631_\u0628\u0627_\u062a\u0627\u0631\u06cc\u062e_\u0634\u0645\u0633\u06cc", "label": "4. \u06a9\u0627\u0631 \u0628\u0627 \u062a\u0627\u0631\u06cc\u062e \u0634\u0645\u0633\u06cc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "4. \u06a9\u0627\u0631 \u0628\u0627 \u062a\u0627\u0631\u06cc\u062e \u0634\u0645\u0633\u06cc", "community": 87, "community_name": "Community 87", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_5_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_context", "label": "5. \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 Context", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "5. \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 Context", "community": 87, "community_name": "Community 87", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_troubleshooting", "label": "\ud83d\udd27 Troubleshooting", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.2, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd27 Troubleshooting", "community": 63, "community_name": "Community 63", "source_file": "README.md", "file_type": "document", "degree": 2}, {"id": "readme_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0631\u0627\u06cc\u062c", "label": "\u0645\u0634\u06a9\u0644\u0627\u062a \u0631\u0627\u06cc\u062c", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u0634\u06a9\u0644\u0627\u062a \u0631\u0627\u06cc\u062c", "community": 63, "community_name": "Community 63", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u0645\u0646\u0627\u0628\u0639_\u0645\u0641\u06cc\u062f", "label": "\ud83d\udcda \u0645\u0646\u0627\u0628\u0639 \u0645\u0641\u06cc\u062f", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udcda \u0645\u0646\u0627\u0628\u0639 \u0645\u0641\u06cc\u062f", "community": 63, "community_name": "Community 63", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u062a\u06cc\u0645_\u062a\u0648\u0633\u0639\u0647", "label": "\ud83d\udc65 \u062a\u06cc\u0645 \u062a\u0648\u0633\u0639\u0647", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udc65 \u062a\u06cc\u0645 \u062a\u0648\u0633\u0639\u0647", "community": 63, "community_name": "Community 63", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc", "label": "\ud83d\udcde \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udcde \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc", "community": 63, "community_name": "Community 63", "source_file": "README.md", "file_type": "document", "degree": 1}];
const RAW_EDGES = [{"from": "app_customtoastify", "to": "app_customtoastify_customtoastify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_layout", "to": "app_customtoastify", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_layout", "to": "app_customtoastify_customtoastify", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_layout", "to": "app_providers", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_providers", "to": "app_providers_providers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_layout", "to": "app_providers_providers", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_us_page", "to": "about_us_page_aboutus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_us_page", "to": "about_us_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_us_page_generatemetadata", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "logout_route", "to": "logout_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "logout_route_post", "to": "lib_refreshcookie_clearrefreshcookie", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "refresh_route", "to": "refresh_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "refresh_route_post", "to": "lib_refreshcookie_clearrefreshcookie", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "refresh_route_post", "to": "lib_refreshcookie_setrefreshcookie", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "token_route", "to": "token_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "token_route_post", "to": "lib_refreshcookie_setrefreshcookie", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "revalidate_route", "to": "revalidate_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctorid_page", "to": "doctorid_page_appointment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctorid_page", "to": "doctorid_page_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctorid_page_appointment", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_blog_slug_page_js_slug_page", "to": "app_blog_slug_page_js_slug_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_blog_slug_page_js_slug_page", "to": "slug_page_blog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_blog_slug_page_js_slug_page", "to": "slug_page_getblog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_blog_slug_page_js_slug_page", "to": "slug_page_getscopedblog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_blog_slug_page_js_slug_page_generatemetadata", "to": "slug_page_getblog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "slug_page_blog", "to": "slug_page_getblog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "slug_page_getscopedblog", "to": "slug_page_getblog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_blog_slug_page_js_slug_page_generatemetadata", "to": "slug_page_getscopedblog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "slug_page_blog", "to": "slug_page_getscopedblog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "slug_page_getscopedblog", "to": "lib_domainhelpers_domainscopecityid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_getscopedblog", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_blog_slug_page_js_slug_page_generatemetadata", "to": "helper_index_blogcover", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_blog_slug_page_js_slug_page_generatemetadata", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_blog_slug_page_js_slug_page_generatemetadata", "to": "lib_domainhelpers_extractentitycityid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_blog_slug_page_js_slug_page_generatemetadata", "to": "lib_domainhelpers_findcitybyid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_blog_slug_page_js_slug_page_generatemetadata", "to": "lib_getcanonicalurl_getblogcanonicalorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_blog_slug_page_js_slug_page_generatemetadata", "to": "lib_getcanonicalurl_getentityorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_blog_slug_page_js_slug_page_generatemetadata", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_blog", "to": "helper_index_blogcover", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_blog", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_blog", "to": "helper_index_normalizeblog", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_blog", "to": "lib_domainhelpers_domainscopecityid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_blog", "to": "lib_domainhelpers_extractentitycityid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_blog", "to": "lib_domainhelpers_findcitybyid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_blog", "to": "lib_getcanonicalurl_getblogcanonicalorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_blog", "to": "lib_getcanonicalurl_getentityorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_blog", "to": "lib_getcanonicalurl_getrequestorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_blog", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_blog", "to": "lib_req_fetchreq", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_blog", "to": "lib_sanitize_safejsonld", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "blogs_loading", "to": "blogs_loading_loading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blogs_page", "to": "blogs_page_blogs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blogs_page", "to": "blogs_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blogs_page_generatemetadata", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "blogs_page_blogs", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_clinic_slug_page_js_slug_page", "to": "app_clinic_slug_page_js_slug_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_clinic_slug_page_js_slug_page", "to": "slug_page_clinic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_clinic_slug_page_js_slug_page", "to": "slug_page_computeclinicrating", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_clinic_slug_page_js_slug_page", "to": "slug_page_getclinic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_clinic_slug_page_js_slug_page_generatemetadata", "to": "slug_page_getclinic", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "slug_page_clinic", "to": "slug_page_getclinic", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_clinic_slug_page_js_slug_page_generatemetadata", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_clinic_slug_page_js_slug_page_generatemetadata", "to": "lib_domainhelpers_extractentitycityid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_clinic_slug_page_js_slug_page_generatemetadata", "to": "lib_entityquality_isthinclinic", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_clinic_slug_page_js_slug_page_generatemetadata", "to": "lib_getcanonicalurl_getentityorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_clinic_slug_page_js_slug_page_generatemetadata", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_clinic", "to": "slug_page_computeclinicrating", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "slug_page_clinic", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_clinic", "to": "lib_cliniccontact_getcliniccity", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_clinic", "to": "lib_cliniccontact_getclinicphone", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_clinic", "to": "lib_cliniccontact_getclinicstate", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_clinic", "to": "lib_cliniccontact_toe164ir", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_clinic", "to": "lib_domainhelpers_extractentitycityid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_clinic", "to": "lib_getcanonicalurl_getentityorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_clinic", "to": "lib_getcanonicalurl_getrequestorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_clinic", "to": "lib_req_fetchreq", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_clinic", "to": "lib_sanitize_safejsonld", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "clinics_loading", "to": "clinics_loading_loading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinics_page", "to": "clinics_page_clinics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinics_page", "to": "clinics_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinics_page_generatemetadata", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "clinics_page_generatemetadata", "to": "lib_listingrobots_listingrobots", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "clinics_page_clinics", "to": "helper_index_buildclinicparams", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "clinics_page_clinics", "to": "lib_getcanonicalurl_getrequestorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "clinics_page_clinics", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "clinics_page_clinics", "to": "lib_maintenance_isnextredirecterror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "clinics_page_clinics", "to": "lib_req_fetchreq", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "component_animationtexthead", "to": "component_animationtexthead_animationtexthead", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_buttondate", "to": "component_buttondate_buttondate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_buttondate", "to": "component_datepickercontent", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_buttondate", "to": "component_datepickercontent_datepickercontent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_contenttext", "to": "component_contenttext_contenttext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_customtable", "to": "component_customtable_customtable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_datepickercontent", "to": "component_datepickercontent_datepickercontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_popoverdate", "to": "component_datepickercontent", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_popoverdate", "to": "component_datepickercontent_datepickercontent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_detailprofile", "to": "component_detailprofile_detailprofile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_detailprofile", "to": "component_modallogout", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_detailprofile", "to": "component_modallogout_modallogout", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_doctoravatar", "to": "component_doctoravatar_doctoravatar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_doctoravatar", "to": "component_doctoravatar_getinitials", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_itemdoctor", "to": "component_doctoravatar", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_doctoravatar_doctoravatar", "to": "component_doctoravatar_getinitials", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_doctoravatar_doctoravatar", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "component_itemdoctor", "to": "component_doctoravatar_doctoravatar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_itemdoctor", "to": "component_itemdoctor_itemdoctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_itemdoctor", "to": "loading_circular", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_itemdoctor", "to": "loading_circular_circularloading", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_itemdoctor", "to": "loading_custom", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_itemdoctor", "to": "loading_custom_customloading", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_itemdoctor", "to": "loading_text", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_itemdoctor", "to": "loading_text_textloading", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_loadingcomponent", "to": "component_loadingcomponent_loadingcomponent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_logo", "to": "component_logo_logo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_modallogout", "to": "component_modallogout_modallogout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sidebar_list", "to": "component_modallogout", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sidebar_list", "to": "component_modallogout_modallogout", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_pageguide", "to": "component_pageguide_pageguide", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_pageguide_pageguide", "to": "lib_breadcrumb_buildbreadcrumbjsonld", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "component_pageguide_pageguide", "to": "lib_breadcrumb_normalizebreadcrumb", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "component_pageguide_pageguide", "to": "lib_sanitize_safejsonld", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "component_pagination", "to": "component_pagination_pagination", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_paginationcontent", "to": "component_paginationcontent_paginationcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_popoverdate", "to": "component_popoverdate_popoverdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_profressdetail", "to": "component_profressdetail_fallbacklabels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_profressdetail", "to": "component_profressdetail_progressdetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_profressdetail_progressdetail", "to": "helper_index_numbertoarstyle", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "component_progresschange", "to": "component_progresschange_progresschange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_scrolltotop", "to": "component_scrolltotop_scrolltotop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_switchtable", "to": "component_switchtable_materialuiswitch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_switchtable", "to": "component_switchtable_switchtable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_tabs", "to": "component_tabs_a11yprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_tabs", "to": "component_tabs_tabs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datetime_index", "to": "component_tabs", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datetime_index", "to": "component_tabs_tabs", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_layout", "to": "component_themeregistry", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_themeregistry", "to": "component_themeregistry_themeregistry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_themeregistry", "to": "theme_theme", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_themeregistry", "to": "theme_theme_theme", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_layout", "to": "component_themeregistry_themeregistry", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_timepickerfield", "to": "component_timepickerfield_timepickerfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_timepickerinput", "to": "component_timepickerinput_timepickerinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_field", "to": "comment_field_field", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_sendanswer", "to": "comment_field", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_sendanswer", "to": "comment_field_field", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_index", "to": "comment_itemuser", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_itemuser", "to": "comment_itemuser_itemuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_itemuser", "to": "comment_replies", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_itemuser", "to": "comment_replies_replies", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_itemuser", "to": "comment_sendanswer", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_itemuser", "to": "comment_sendanswer_sendanswer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_index", "to": "comment_itemuser_itemuser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_itemuser_itemuser", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "comment_itemuser_itemuser", "to": "helper_index_timeago", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "comment_replies", "to": "comment_itemuser_itemuser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_replies", "to": "comment_replies_replies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_sendanswer", "to": "comment_sendanswer_sendanswer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comment_index", "to": "comment_index_comment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datepicker_buttondate", "to": "datepicker_buttondate_buttondate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datepicker_field", "to": "datepicker_field_field", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_firstdatepicker", "to": "datepicker_loadingdate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_seconddatepicker", "to": "datepicker_loadingdate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datepicker_loadingdate", "to": "datepicker_loadingdate_loadingdate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_firstdatepicker", "to": "datepicker_loadingdate_loadingdate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_seconddatepicker", "to": "datepicker_loadingdate_loadingdate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_firstdatepicker", "to": "date_dataicon", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_firstdatepicker", "to": "date_dataicon_nexticondata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_firstdatepicker", "to": "date_dataicon_previcondata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_firstdatepicker", "to": "date_firstdatepicker_firstdatepicker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_seconddatepicker", "to": "date_dataicon", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_seconddatepicker", "to": "date_dataicon_nexticondata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_seconddatepicker", "to": "date_dataicon_previcondata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_seconddatepicker", "to": "date_seconddatepicker_seconddatepicker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_dataicon", "to": "date_dataicon_fixedicondata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_dataicon", "to": "date_dataicon_nexticondata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_dataicon", "to": "date_dataicon_previcondata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datepicker_index", "to": "datepicker_index_datepicker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datepicker_index", "to": "datepicker_index_gregorianmonthsof", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datetime_index", "to": "datetime_sendappo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datetime_sendappo", "to": "datetime_sendappo_sendappo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datetime_index", "to": "datetime_sendappo_sendappo", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "hours_index", "to": "hours_list", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "hours_list", "to": "hours_list_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "hours_index", "to": "hours_list_list", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "hours_index", "to": "hours_loading", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "hours_loading", "to": "hours_loading_loading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "hours_index", "to": "hours_loading_loading", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datetime_index", "to": "hours_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "hours_index", "to": "hours_index_hours", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datetime_index", "to": "hours_index_hours", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "datetime_index", "to": "datetime_index_datetime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "element_autocompleteselect", "to": "element_autocompleteselect_autocompleteselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "element_autoselector", "to": "element_autoselector_autoselector", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "element_field", "to": "element_field_convertpersiantoenglish", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "element_field", "to": "element_field_field", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_form", "to": "fields_editfield", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fields_editfield", "to": "fields_editfield_convertpersiantoenglish", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fields_editfield", "to": "fields_editfield_editfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_form", "to": "fields_editfield_editfield", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fields_field", "to": "fields_field_field", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "fields_fieldicon", "to": "fields_fieldicon_fieldicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_component_head_index_js_head_index", "to": "head_index_headpagelist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loading_circular", "to": "loading_circular_circularloading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loading_custom", "to": "loading_custom_customloading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loading_multiline", "to": "loading_multiline_multilineloading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loading_text", "to": "loading_text_textloading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modalsearchcity_addressselector", "to": "modalsearchcity_addressselector_addressselector", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modalsearchcity_content", "to": "modalsearchcity_addressselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modalsearchcity_content", "to": "modalsearchcity_addressselector_addressselector", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modalsearchcity_buttonfilter", "to": "modalsearchcity_buttonfilter_buttonfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modalsearchcity_content", "to": "modalsearchcity_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modalsearchcity_index", "to": "modalsearchcity_content", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modalsearchcity_content_content", "to": "lib_getstateinfoclient_getstateinfoclient", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "modalsearchcity_index", "to": "modalsearchcity_content_content", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modalsearchcity_index", "to": "modalsearchcity_index_modalsearchcity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "openlocation_content", "to": "openlocation_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "openlocation_index", "to": "openlocation_content", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "openlocation_index", "to": "openlocation_content_content", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "openlocation_index", "to": "openlocation_index_modalopenlocation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "selectors_defaultselect", "to": "selectors_defaultselect_defaultselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "selectors_groupedselect", "to": "selectors_groupedselect_groupedselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "selectors_groupedselect", "to": "selectors_groupedselect_groupspecialtiesbyparent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "selectors_groupedselect_groupedselect", "to": "selectors_groupedselect_groupspecialtiesbyparent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "selectors_multipleselect", "to": "selectors_multipleselect_multipleselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_crop", "to": "uploadfile_crop_crop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_crop", "to": "uploadfile_cropimg", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_crop", "to": "uploadfile_cropimg_cropimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_crop", "to": "uploadfile_cropimg_dataurltofile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_modalupload", "to": "uploadfile_crop", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_crop_crop", "to": "uploadfile_cropimg_cropimage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_crop_crop", "to": "uploadfile_cropimg_dataurltofile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_modalupload", "to": "uploadfile_crop_crop", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_index", "to": "uploadfile_modalupload", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_modalupload", "to": "uploadfile_modalupload_modalupload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_index", "to": "uploadfile_modalupload_modalupload", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_cropimg", "to": "uploadfile_cropimg_createimage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_cropimg", "to": "uploadfile_cropimg_cropimage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_cropimg", "to": "uploadfile_cropimg_dataurltofile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_cropimg", "to": "uploadfile_cropimg_getcroppedimg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_cropimg_getcroppedimg", "to": "uploadfile_cropimg_createimage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_cropimg_cropimage", "to": "uploadfile_cropimg_getcroppedimg", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uploadfile_index", "to": "uploadfile_index_uploadfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contact_us_page", "to": "contact_us_page_contactus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_not_found", "to": "dashboard_not_found_notfound", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_page", "to": "dashboard_page_dashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_page", "to": "dashboard_page_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_page_dashboard", "to": "lib_ability_defineabilitiesfor", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "dashboard_page_dashboard", "to": "lib_auth_getuser", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "dashboard_page_dashboard", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "dashboard_page_dashboard", "to": "lib_money_rialtotoman", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "dashboard_page_dashboard", "to": "lib_representationadapters_buildpatientuser", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "dashboard_page_dashboard", "to": "lib_req_fetchreq", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "dashboard_page_dashboard", "to": "lib_sanitize_safejsonparse", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "dashboard_page_dashboard", "to": "lib_servertoken_getserveraccesstoken", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "dashboard_page_dashboard", "to": "utils_index_removetoken", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_error", "to": "slug_error_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_doctor_slug_page_js_slug_page", "to": "app_doctor_slug_page_js_slug_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_doctor_slug_page_js_slug_page", "to": "slug_page_doctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_doctor_slug_page_js_slug_page", "to": "slug_page_getbookinglocations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_doctor_slug_page_js_slug_page", "to": "slug_page_getdoctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_doctor_slug_page_js_slug_page", "to": "slug_page_getdoctoraddresses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_doctor_slug_page_js_slug_page_generatemetadata", "to": "slug_page_getdoctor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "slug_page_doctor", "to": "slug_page_getdoctor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "slug_page_doctor", "to": "slug_page_getdoctoraddresses", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "slug_page_doctor", "to": "slug_page_getbookinglocations", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_doctor_slug_page_js_slug_page_generatemetadata", "to": "helper_index_doctortitle", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_doctor_slug_page_js_slug_page_generatemetadata", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_doctor_slug_page_js_slug_page_generatemetadata", "to": "lib_domainhelpers_extractentitycityid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_doctor_slug_page_js_slug_page_generatemetadata", "to": "lib_entityquality_isnoindexdoctor", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_doctor_slug_page_js_slug_page_generatemetadata", "to": "lib_entityquality_isthindoctor", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_doctor_slug_page_js_slug_page_generatemetadata", "to": "lib_getcanonicalurl_getentityorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_doctor_slug_page_js_slug_page_generatemetadata", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_doctor", "to": "helper_index_doctortitle", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_doctor", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_doctor", "to": "lib_domainhelpers_extractentitycityid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_doctor", "to": "lib_domainhelpers_findcitybyid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_doctor", "to": "lib_getcanonicalurl_getentityorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_doctor", "to": "lib_getcanonicalurl_getrequestorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_doctor", "to": "lib_sanitize_safejsonld", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_doctor", "to": "lib_specialtycontent_builddoctorfaq", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "doctors_loading", "to": "doctors_loading_loading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctors_page", "to": "doctors_page_doctors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctors_page", "to": "doctors_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctors_page_generatemetadata", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "doctors_page_generatemetadata", "to": "lib_listingrobots_listingrobots", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "doctors_page_doctors", "to": "helper_index_builddoctorparams", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "doctors_page_doctors", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "doctors_page_doctors", "to": "lib_maintenance_isnextredirecterror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "doctors_page_doctors", "to": "lib_req_fetchreq", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_error", "to": "app_error_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_layout", "to": "app_layout_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_layout", "to": "app_layout_rootlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_layout", "to": "app_layout_viewport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_layout_generatemetadata", "to": "lib_getcanonicalurl_buildcanonicalurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_layout_generatemetadata", "to": "lib_getcanonicalurl_getcanonicalurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_layout_generatemetadata", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_layout_rootlayout", "to": "lib_getcanonicalurl_getrequestorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_layout_rootlayout", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_layout_rootlayout", "to": "lib_sanitize_safejsonld", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "login_verify_page", "to": "login_verify_page_loginverify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_verify_page", "to": "login_verify_page_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_page", "to": "login_page_login", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_page", "to": "login_page_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "login_page_login", "to": "lib_ability_defineabilitiesfor", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "login_page_login", "to": "lib_auth_getuser", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "maintenance_page", "to": "maintenance_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "maintenance_page", "to": "maintenance_page_maintenance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_not_found", "to": "app_not_found_notfound", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_page", "to": "app_page_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "uuid_page", "to": "uuid_page_paymentdetailspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_layout", "to": "payment_layout_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_layout", "to": "payment_layout_paymentlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "result_page", "to": "result_page_paymentresultpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "result_page", "to": "result_page_paymentresultredirect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_robots", "to": "app_robots_getcurrentdomain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_robots", "to": "app_robots_robots", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_robots", "to": "utils_sitemap", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_robots", "to": "utils_sitemap_getbaseurl", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_robots_robots", "to": "app_robots_getcurrentdomain", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_robots_robots", "to": "utils_sitemap_getbaseurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_cityfilterparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_fetchallpages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_getblogurls", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_getcityscope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_getclinicurls", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_getcurrentdomain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_getdoctorurls", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_getpublisheddoctors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_getspecialtyurls", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_getstaticpages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_sitemap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_tosafedate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "app_sitemap_withlastmodified", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "utils_sitemap", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap", "to": "utils_sitemap_getbaseurl", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_withlastmodified", "to": "app_sitemap_tosafedate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_sitemap", "to": "app_sitemap_getcurrentdomain", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_getcityscope", "to": "lib_rootcity_isrootcity", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_sitemap_sitemap", "to": "app_sitemap_getcityscope", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_sitemap", "to": "app_sitemap_getstaticpages", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_getblogurls", "to": "app_sitemap_fetchallpages", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_getclinicurls", "to": "app_sitemap_fetchallpages", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_getdoctorurls", "to": "app_sitemap_fetchallpages", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_getpublisheddoctors", "to": "app_sitemap_fetchallpages", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_getclinicurls", "to": "app_sitemap_cityfilterparams", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_getdoctorurls", "to": "app_sitemap_cityfilterparams", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_getpublisheddoctors", "to": "app_sitemap_cityfilterparams", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_sitemap", "to": "app_sitemap_getpublisheddoctors", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_sitemap", "to": "app_sitemap_getdoctorurls", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_sitemap", "to": "app_sitemap_getclinicurls", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_sitemap", "to": "app_sitemap_getspecialtyurls", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_sitemap", "to": "app_sitemap_getblogurls", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_sitemap_sitemap", "to": "utils_sitemap_getbaseurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_specialties_slug_page_js_slug_page", "to": "app_specialties_slug_page_js_slug_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_specialties_slug_page_js_slug_page", "to": "slug_page_findspecialty", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_specialties_slug_page_js_slug_page", "to": "slug_page_getdoctors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_specialties_slug_page_js_slug_page", "to": "slug_page_specialtydetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_specialties_slug_page_js_slug_page_generatemetadata", "to": "slug_page_findspecialty", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "slug_page_specialtydetail", "to": "slug_page_findspecialty", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_specialties_slug_page_js_slug_page_generatemetadata", "to": "slug_page_getdoctors", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "slug_page_getdoctors", "to": "lib_req_fetchreq", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_specialtydetail", "to": "slug_page_getdoctors", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "app_specialties_slug_page_js_slug_page_generatemetadata", "to": "lib_domainhelpers_resolvecitydisplayname", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_specialties_slug_page_js_slug_page_generatemetadata", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "app_specialties_slug_page_js_slug_page_generatemetadata", "to": "lib_specialtyindexing_iscategoryspecialty", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_specialtydetail", "to": "lib_domainhelpers_resolvecitydisplayname", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_specialtydetail", "to": "lib_getcanonicalurl_getrequestorigin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_specialtydetail", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_specialtydetail", "to": "lib_sanitize_safejsonld", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_specialtydetail", "to": "lib_specialtycontent_buildspecialtyfaq", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "slug_page_specialtydetail", "to": "lib_specialtycontent_buildspecialtyintro", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "specialties_page", "to": "specialties_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialties_page", "to": "specialties_page_specialties", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialties_page_generatemetadata", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "specialties_page_specialties", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "theme_theme", "to": "theme_theme_theme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_altcha", "to": "components_altcha_altcha", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_head", "to": "aboutus_head_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_index", "to": "aboutus_head", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_index", "to": "aboutus_head_head", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_index", "to": "aboutus_services", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_services", "to": "aboutus_services_ourservices", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_services", "to": "aboutus_services_services", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_services", "to": "icons_tickorangea", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_services", "to": "icons_tickorangea_tickorangea", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_services", "to": "icons_underlinelg", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_services", "to": "icons_underlinelg_underlinelg", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_index", "to": "aboutus_services_services", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_index", "to": "aboutus_index_aboutuspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "aboutus_index_aboutuspage", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "appointment_container", "to": "appointment_container_container", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_container", "to": "appointment_content", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_container", "to": "appointment_content_content", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_container", "to": "date_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_container", "to": "date_index_date", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_container", "to": "location_locationselect", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_container", "to": "location_locationselect_locationselect", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_container", "to": "service_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_container", "to": "service_index_serviceselect", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_index", "to": "appointment_container", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_index", "to": "appointment_container_container", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_content", "to": "appointment_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_content", "to": "location_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_content", "to": "location_index_location", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "time_index", "to": "time_selectdatepicker", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "time_selectdatepicker", "to": "time_selectdatepicker_selectdatepicker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "time_index", "to": "time_selectdatepicker_selectdatepicker", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_index", "to": "time_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "time_index", "to": "time_index_time", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_index", "to": "time_index_time", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_index", "to": "hour_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "hour_index", "to": "hour_index_hour", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_index", "to": "hour_index_hour", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "date_index", "to": "date_index_date", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_content", "to": "detail_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_form", "to": "detail_content", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_form", "to": "detail_content_content", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_appointment_detail_index_js_detail_index", "to": "detail_form", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_form", "to": "detail_form_form", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_appointment_detail_index_js_detail_index", "to": "detail_form_form", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_appointment_detail_index_js_detail_index", "to": "detail_submitdata", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_submitdata", "to": "detail_submitdata_submitdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_submitdata", "to": "paying_buttonfixed", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_submitdata", "to": "paying_buttonfixed_buttonfixed", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_appointment_detail_index_js_detail_index", "to": "detail_submitdata_submitdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_submitdata_submitdata", "to": "context_provinceprovider_useprovince", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "components_appointment_detail_index_js_detail_index", "to": "components_appointment_detail_index_js_detail_index_detail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "failedpay_index", "to": "failedpay_index_failedpay", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_index", "to": "appointment_index_appointmentpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_index", "to": "appointment_index_buildprofiledata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_index", "to": "appointment_index_defaultdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_appointment_information_index_js_information_index", "to": "information_detail", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "information_detail", "to": "information_detail_detail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_appointment_information_index_js_information_index", "to": "information_detail_detail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_appointment_information_index_js_information_index", "to": "information_head", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "information_head", "to": "information_head_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_appointment_information_index_js_information_index", "to": "information_head_head", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_appointment_information_index_js_information_index", "to": "components_appointment_information_index_js_information_index_information", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_address", "to": "location_address_address", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_index", "to": "location_address", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_index", "to": "location_address_address", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_head", "to": "location_head_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_index", "to": "location_head", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_index", "to": "location_head_head", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_locationselect", "to": "location_locationselect_locationselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_locationselect", "to": "location_locationselect_nextavailablelabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_index", "to": "location_index_location", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "paying_buttonfixed", "to": "paying_buttonfixed_buttonfixed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "paying_index", "to": "paying_buttonfixed", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "paying_index", "to": "paying_buttonfixed_buttonfixed", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "paying_index", "to": "paying_index_paying", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "paying_index_paying", "to": "lib_money_formattoman", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "service_index", "to": "service_index_serviceselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "service_index", "to": "service_index_totoman", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "successpay_index", "to": "successpay_index_successpay", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_blog_detail_index_js_detail_index", "to": "detail_caption", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_caption", "to": "detail_caption_caption", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_blog_detail_index_js_detail_index", "to": "detail_caption_caption", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_caption_caption", "to": "helper_index_blogcover", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "detail_caption_caption", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "detail_caption_caption", "to": "lib_sanitize_sanitizehtml", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "components_blog_detail_faq_js_detail_faq", "to": "components_blog_detail_faq_js_detail_faq_faq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_blog_detail_index_js_detail_index", "to": "detail_socialmedia", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_socialmedia", "to": "detail_socialmedia_socialmedia", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_socialmedia", "to": "detail_socialmedia_socials", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_blog_detail_index_js_detail_index", "to": "detail_socialmedia_socialmedia", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_blog_detail_index_js_detail_index", "to": "detail_sources", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_sources", "to": "detail_sources_sources", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_blog_detail_index_js_detail_index", "to": "detail_sources_sources", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "commentuser_addcomment", "to": "commentuser_addcomment_addcomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "commentuser_index", "to": "commentuser_addcomment", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "commentuser_index", "to": "commentuser_addcomment_addcomment", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "commentuser_index", "to": "commentuser_index_commentuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_blog_detail_index_js_detail_index", "to": "commentuser_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_blog_detail_index_js_detail_index", "to": "commentuser_index_commentuser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_blog_detail_index_js_detail_index", "to": "components_blog_detail_index_js_detail_index_detail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_blog_head_index_js_head_index", "to": "components_blog_head_index_js_head_index_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_blog_head_index_js_head_index_head", "to": "helper_index_converttimestamptojalali", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "blog_index", "to": "blog_index_blogpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_index", "to": "relatedcontent_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_index", "to": "relatedcontent_index_relatedcontent", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relatedcontent_index", "to": "relatedcontent_item", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relatedcontent_item", "to": "relatedcontent_item_item", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relatedcontent_index", "to": "relatedcontent_item_item", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relatedcontent_item_item", "to": "helper_index_blogcover", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "relatedcontent_item_item", "to": "helper_index_converttimestamptojalali", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "relatedcontent_item_item", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "relatedcontent_index", "to": "relatedcontent_index_relatedcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blogs_head", "to": "blogs_head_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blogs_index", "to": "blogs_head", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blogs_index", "to": "blogs_head_head", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blogs_index", "to": "blogs_index_blogspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blogs_index", "to": "latestarticles_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blogs_index", "to": "latestarticles_index_latestarticles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blogs_index", "to": "title_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blogs_index", "to": "title_index_title", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "latestarticles_article", "to": "latestarticles_article_article", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "latestarticles_index", "to": "latestarticles_article", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "latestarticles_article_article", "to": "helper_index_blogcover", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "latestarticles_article_article", "to": "helper_index_converttimestamptojalali", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "latestarticles_article_article", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "latestarticles_index", "to": "latestarticles_article_article", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "latestarticles_index", "to": "latestarticles_index_latestarticles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "title_index", "to": "title_itemtitle", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "title_itemtitle", "to": "title_itemtitle_itemtitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "title_index", "to": "title_itemtitle_itemtitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "title_index", "to": "title_index_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_contentdetail", "to": "about_contentdetail_contentdetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_index", "to": "about_contentdetail", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_index", "to": "about_contentdetail_contentdetail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_index", "to": "about_listbime", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_listbime", "to": "about_listbime_listbime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_index", "to": "about_listbime_listbime", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_index", "to": "about_services", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_services", "to": "about_services_services", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_index", "to": "about_services_services", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_index", "to": "about_specialties", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_specialties", "to": "about_specialties_specialties", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_index", "to": "about_specialties_specialties", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_index", "to": "about_textdetail", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_textdetail", "to": "about_textdetail_textdetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_index", "to": "about_textdetail_textdetail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_textdetail_textdetail", "to": "lib_sanitize_sanitizehtml", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "about_index", "to": "images_images", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "images_images", "to": "images_images_images", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "images_images", "to": "images_list", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "images_images", "to": "images_list_list", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "images_images", "to": "images_slider", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "images_images", "to": "images_slider_slider", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_index", "to": "images_images_images", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "images_images_images", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "images_img", "to": "images_img_img", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "images_list", "to": "images_list_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "images_slider", "to": "images_slider_slider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "about_index", "to": "about_index_about", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_index", "to": "about_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_index", "to": "about_index_about", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contact_contentdetail", "to": "contact_contentdetail_contentdetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contact_detail", "to": "contact_contentdetail", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contact_detail", "to": "contact_contentdetail_contentdetail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contact_detail", "to": "contact_detail_detail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contact_index", "to": "contact_detail", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contact_detail_detail", "to": "lib_cliniccontact_getclinicaddress", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "contact_detail_detail", "to": "lib_cliniccontact_getclinicphone", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "contact_detail_detail", "to": "lib_cliniccontact_telhref", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "contact_index", "to": "contact_detail_detail", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_index", "to": "contact_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contact_index", "to": "contact_index_contact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contact_index", "to": "contact_index_mapview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_index", "to": "contact_index_contact", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contact_index_contact", "to": "lib_cliniccontact_hascliniccontact", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "components_clinic_components_contact_modal_content_js_modal_content", "to": "components_clinic_components_contact_modal_content_js_modal_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_contact_modal_content_js_modal_content", "to": "modal_content_maps", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_contact_modal_index_js_modal_index", "to": "modal_index_modalopenlocation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_index_js_doctors_index", "to": "doctors_list", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctors_list", "to": "doctors_list_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_index_js_doctors_index", "to": "doctors_list_list", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_index_js_head_index", "to": "components_clinic_components_doctors_head_index_js_head_index_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_modal_buttonapply_js_modal_buttonapply", "to": "components_clinic_components_doctors_head_modal_buttonapply_js_modal_buttonapply_buttonapply", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_modal_content_js_modal_content", "to": "components_clinic_components_doctors_head_modal_content_js_modal_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_modal_deleteallbutton_js_modal_deleteallbutton", "to": "components_clinic_components_doctors_head_modal_deleteallbutton_js_modal_deleteallbutton_deleteallbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_modal_filtermodal_js_modal_filtermodal", "to": "components_clinic_components_doctors_head_modal_filtermodal_js_modal_filtermodal_filtermodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_modal_form_cateselector_js_form_cateselector", "to": "components_clinic_components_doctors_head_modal_form_cateselector_js_form_cateselector_cateselector", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_modal_form_radiocontent_js_form_radiocontent", "to": "components_clinic_components_doctors_head_modal_form_radiocontent_js_form_radiocontent_radiocontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_modal_form_radios_js_form_radios", "to": "components_clinic_components_doctors_head_modal_form_radios_js_form_radios_radios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_modal_form_switchcontent_js_form_switchcontent", "to": "components_clinic_components_doctors_head_modal_form_switchcontent_js_form_switchcontent_switchcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_modal_form_index_js_form_index", "to": "components_clinic_components_doctors_head_modal_form_index_js_form_index_degree", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_modal_form_index_js_form_index", "to": "components_clinic_components_doctors_head_modal_form_index_js_form_index_form", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_modal_form_index_js_form_index", "to": "components_clinic_components_doctors_head_modal_form_index_js_form_index_gender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_modal_form_index_js_form_index_form", "to": "helper_index_filterlist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "components_clinic_components_doctors_head_search_autocomplete_js_search_autocomplete", "to": "components_clinic_components_doctors_head_search_autocomplete_js_search_autocomplete_autocomplete", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_search_searchfield_js_search_searchfield", "to": "components_clinic_components_doctors_head_search_searchfield_js_search_searchfield_searchfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_search_sendreq_js_search_sendreq", "to": "components_clinic_components_doctors_head_search_sendreq_js_search_sendreq_sendreq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_search_index_js_search_index", "to": "components_clinic_components_doctors_head_search_index_js_search_index_searchbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_sortlist_filterbtn_js_sortlist_filterbtn", "to": "components_clinic_components_doctors_head_sortlist_filterbtn_js_sortlist_filterbtn_filterbtn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort", "to": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort_listsort", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort", "to": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort_selectsort", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_head_sortlist_index_js_sortlist_index", "to": "components_clinic_components_doctors_head_sortlist_index_js_sortlist_index_sortlist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinic_components_doctors_index_js_doctors_index", "to": "doctors_index_doctors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_index", "to": "doctors_index_doctors", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_index", "to": "clinic_index_clinicpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_index", "to": "clinic_index_listtab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_autosearch", "to": "head_autosearch_autosearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_searchbar", "to": "head_autosearch", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_searchbar", "to": "head_autosearch_autosearch", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_filterbutton", "to": "head_filterbutton_filterbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_searchbar", "to": "head_filterbutton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_searchbar", "to": "head_filterbutton_filterbutton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinics_index", "to": "head_searchbar", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_searchbar", "to": "filter_buttonfilter", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_searchbar", "to": "filter_buttonfilter_buttonfilter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_searchbar", "to": "filter_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_searchbar", "to": "filter_index_modalsearchcity", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_searchbar", "to": "head_searchbar_searchbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinics_index", "to": "head_searchbar_searchbar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filter_autocomplete", "to": "filter_autocomplete_autocomplete", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filter_content", "to": "filter_autocomplete", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filter_content", "to": "filter_autocomplete_autocomplete", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filter_buttonfilter", "to": "filter_buttonfilter_buttonfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filter_content", "to": "filter_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filter_index", "to": "filter_content", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filter_index", "to": "filter_content_content", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "filter_index", "to": "filter_index_modalsearchcity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinics_head_modal_index_js_modal_index", "to": "components_clinics_head_modal_index_js_modal_index_modalsearchcity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinics_index", "to": "clinics_index_clinicspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinics_index_clinicspage", "to": "lib_domainhelpers_resolvecitydisplayname", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "clinics_index_clinicspage", "to": "lib_listingintro_buildclinicsintro", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "clinics_index_clinicspage", "to": "lib_rootcity_isrootcity", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "components_clinics_list_index_js_list_index", "to": "list_itemclinic", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "list_itemclinic", "to": "list_itemclinic_itemclinic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_clinics_list_index_js_list_index", "to": "list_itemclinic_itemclinic", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "list_itemclinic_itemclinic", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "components_clinics_list_index_js_list_index", "to": "components_clinics_list_index_js_list_index_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "common_inlinejalalimonth", "to": "common_inlinejalalimonth_builddays", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "common_inlinejalalimonth", "to": "common_inlinejalalimonth_inlinejalalimonth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "common_inlinejalalimonth", "to": "common_inlinejalalimonth_months", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "common_inlinejalalimonth", "to": "common_inlinejalalimonth_weekdays", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "common_inlinejalalimonth_inlinejalalimonth", "to": "common_inlinejalalimonth_builddays", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "common_jalalidatepicker", "to": "common_jalalidatepicker_jalalidatepicker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "common_jalalidatepicker", "to": "common_jalalidatepicker_months", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "common_jalalidatepicker", "to": "common_jalalidatepicker_parsevalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "common_jalalidatepicker", "to": "common_jalalidatepicker_weekdays", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "common_mapview", "to": "common_mapview_icon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "common_mapview", "to": "common_mapview_mapview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_connect", "to": "contactus_connect_connect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_connect", "to": "contactus_fieldlabel", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_connect", "to": "contactus_fieldlabel_fieldlabel", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_connect", "to": "icons_arrowleftc", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_connect", "to": "icons_arrowleftc_arrowleftc", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_index", "to": "contactus_connect", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_index", "to": "contactus_connect_connect", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "call_links", "to": "contactus_contentcontact", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_contentcontact", "to": "contactus_contentcontact_contentcontact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "call_links", "to": "contactus_contentcontact_contentcontact", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_fieldlabel", "to": "contactus_fieldlabel_fieldlabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "call_call", "to": "call_call_call", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "call_call", "to": "call_links", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "call_call", "to": "call_links_links", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_index", "to": "call_call", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_index", "to": "call_call_call", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "call_links", "to": "call_links_links", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "call_links", "to": "icons_callc", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "call_links", "to": "icons_callc_callc", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "call_links", "to": "icons_emailc", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "call_links", "to": "icons_emailc_emailc", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "call_links", "to": "icons_whatsappc", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "call_links", "to": "icons_whatsappc_whatsappc", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_index", "to": "contactus_index_contactuspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "contactus_index_contactuspage", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "dashboard_content", "to": "dashboard_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_content", "to": "useraccount_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_content", "to": "useraccount_index_useraccountpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_index", "to": "dashboard_index_dashboardpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_index", "to": "layout_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_index", "to": "layout_index_layout", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_head", "to": "useraccount_head_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "useraccount_head", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "useraccount_head_head", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "useraccount_notfounddashboard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_notfounddashboard", "to": "useraccount_notfounddashboard_notfounddashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "useraccount_notfounddashboard_notfounddashboard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_addbtn", "to": "components_addbtn_addbtn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_head", "to": "components_head_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_updatebtn", "to": "components_updatebtn_updatebtn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modal_modaldeleteitem", "to": "modal_modaldeleteitem_modaldeleteitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modal_modaledititem", "to": "modal_modaledititem_modaledititem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "content_headtab", "to": "content_headtab_headtab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "content_headtab", "to": "isturnsdetails_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "content_headtab", "to": "isturnsdetails_index_isturnsdetails", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "content_headtab", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "content_headtab_headtab", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "allergies_index", "to": "allergies_itemallergie", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "allergies_itemallergie", "to": "allergies_itemallergie_itemallergie", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "allergies_index", "to": "allergies_itemallergie_itemallergie", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "allergies_index", "to": "allergies_index_allergies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "allergies_index", "to": "modal_index_modaladdalergie", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "allergies_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "allergies_index_allergies", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content", "to": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content", "to": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content_listintensity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_allergies_modal_index_js_modal_index", "to": "modal_index_modaladdalergie", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "disease_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "disease_index", "to": "disease_index_disease", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "disease_index_disease", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "familyhistory_index", "to": "familyhistory_itemhistory", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "familyhistory_itemhistory", "to": "familyhistory_itemhistory_itemhistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "familyhistory_index", "to": "familyhistory_itemhistory_itemhistory", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "familyhistory_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "familyhistory_index", "to": "familyhistory_index_familyhistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "familyhistory_index", "to": "modal_index_modaladdhistory", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "familyhistory_index_familyhistory", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_familyhistory_modal_content_js_modal_content", "to": "components_dashboard_useraccount_detailuser_familyhistory_modal_content_js_modal_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_familyhistory_modal_index_js_modal_index", "to": "modal_index_modaladdhistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_function", "to": "detailuser_function_setnewdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "detailuser_function", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "detailuser_function_setnewdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index_detailuser", "to": "detailuser_function_setnewdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "detailuser_index_detailuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "medications_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "medications_index_medications", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "relatives_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "relatives_index_relatives", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "surgeries_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detailuser_index", "to": "surgeries_index_surgeries", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "detailuser_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "detailuser_index_detailuser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_index_js_information_index", "to": "information_buttonsenddata", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "information_buttonsenddata", "to": "information_buttonsenddata_buttonsenddata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_index_js_information_index", "to": "information_buttonsenddata_buttonsenddata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_autoselector", "to": "component_autoselector_autoselector", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "component_field", "to": "component_field_field", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "to": "component_field", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "to": "component_field_field", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "to": "form_content", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "form_content", "to": "form_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "to": "form_content_content", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "to": "form_datebirthday", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "form_datebirthday", "to": "form_datebirthday_datebirthday", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "to": "form_datebirthday_datebirthday", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_index_js_information_index", "to": "form_disease", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "form_disease", "to": "form_disease_disease", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_index_js_information_index", "to": "form_disease_disease", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "to": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index_form", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "to": "form_listselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "to": "form_listselector_blood_group", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "to": "form_listselector_gender", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "to": "form_listselector_job", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", "to": "form_listselector_marital_status", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index_form", "to": "helper_index_getparseduserinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "form_listselector", "to": "form_listselector_blood_group", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "form_listselector", "to": "form_listselector_gender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "form_listselector", "to": "form_listselector_job", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "form_listselector", "to": "form_listselector_marital_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_information_index_js_information_index", "to": "components_dashboard_useraccount_detailuser_information_index_js_information_index_information", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "medications_index", "to": "medications_itemmedication", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "medications_itemmedication", "to": "medications_itemmedication_itemmedication", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "medications_index", "to": "medications_itemmedication_itemmedication", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "medications_index", "to": "medications_index_medications", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "medications_index", "to": "modal_index_modaladdmedications", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_medications_modal_content_js_modal_content", "to": "components_dashboard_useraccount_detailuser_medications_modal_content_js_modal_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_medications_modal_index_js_modal_index", "to": "modal_index_modaladdmedications", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relatives_index", "to": "relatives_itemrelatives", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relatives_itemrelatives", "to": "relatives_itemrelatives_itemrelatives", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relatives_index", "to": "relatives_itemrelatives_itemrelatives", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relatives_index", "to": "modal_index_modaladdrelatives", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "relatives_index", "to": "relatives_index_relatives", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_relatives_modal_content_js_modal_content", "to": "components_dashboard_useraccount_detailuser_relatives_modal_content_js_modal_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_relatives_modal_index_js_modal_index", "to": "modal_index_modaladdrelatives", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surgeries_index", "to": "surgeries_itemsurgeries", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surgeries_itemsurgeries", "to": "surgeries_itemsurgeries_itemsurgeries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surgeries_index", "to": "surgeries_itemsurgeries_itemsurgeries", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surgeries_index", "to": "modal_index_modaladdsurgeries", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "surgeries_index", "to": "surgeries_index_surgeries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content", "to": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content", "to": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content_listintensity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_detailuser_surgeries_modal_index_js_modal_index", "to": "modal_index_modaladdsurgeries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "messages_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "messages_index_messages", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "transactions_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "transactions_index_transactions", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "turns_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "turns_index_turns", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "useraccount_index_listtab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "useraccount_index", "to": "useraccount_index_useraccountpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "comments_comment", "to": "comments_comment_comment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_sidebars_comments_index_js_comments_index", "to": "comments_comment", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_sidebars_comments_index_js_comments_index", "to": "comments_comment_comment", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_sidebars_comments_index_js_comments_index", "to": "components_dashboard_useraccount_sidebars_comments_index_js_comments_index_comments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_sidebars_comments_modal_index_js_modal_index", "to": "components_dashboard_useraccount_sidebars_comments_modal_index_js_modal_index_modaldeletecomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "messages_index", "to": "messages_message", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "messages_message", "to": "messages_message_message", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "messages_index", "to": "messages_message_message", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "messages_index", "to": "messages_index_messages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_card", "to": "transactions_card_card", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_card", "to": "transactions_card_payment_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_card", "to": "transactions_card_type_labels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_list", "to": "transactions_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_card_card", "to": "helper_index_converttimestamptojalali", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "transactions_card_card", "to": "lib_money_formattoman", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "transactions_list", "to": "transactions_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_head", "to": "transactions_head_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_head", "to": "transactions_head_listtab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_index", "to": "transactions_head", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_index", "to": "transactions_head_head", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_index", "to": "transactions_list", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_list", "to": "transactions_list_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_list", "to": "transactions_list_payment_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_list", "to": "transactions_list_type_labels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_index", "to": "transactions_list_list", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "transactions_index", "to": "transactions_index_transactions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_card", "to": "turns_card_card", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_card", "to": "turns_card_status_labels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_list", "to": "turns_card", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_card_card", "to": "helper_index_converttimestamptojalali", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "turns_card_card", "to": "helper_index_converttimestamptotime", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "turns_list", "to": "turns_card_card", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_head", "to": "turns_head_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_head", "to": "turns_head_listtab", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_index", "to": "turns_head", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_index", "to": "turns_head_head", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_index", "to": "turns_list", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_list", "to": "turns_list_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_list", "to": "turns_list_status_labels", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_index", "to": "turns_list_list", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_index", "to": "isturnsdetails_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_index", "to": "isturnsdetails_index_isturnsdetails", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "turns_index", "to": "turns_index_turns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_buttondata", "to": "isturnsdetails_buttondata_buttondata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_detailsm", "to": "isturnsdetails_buttondata", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_head", "to": "isturnsdetails_buttondata", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_detailsm", "to": "isturnsdetails_buttondata_buttondata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_head", "to": "isturnsdetails_buttondata_buttondata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_detaillg", "to": "isturnsdetails_detaillg_detaillg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_index", "to": "isturnsdetails_detaillg", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_detaillg_detaillg", "to": "helper_index_converttimestamptojalali", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "isturnsdetails_detaillg_detaillg", "to": "helper_index_converttimestamptotime", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "isturnsdetails_index", "to": "isturnsdetails_detaillg_detaillg", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_detailsm", "to": "isturnsdetails_detailsm_detailsm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_index", "to": "isturnsdetails_detailsm", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_detailsm_detailsm", "to": "helper_index_converttimestamptojalali", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "isturnsdetails_detailsm_detailsm", "to": "helper_index_converttimestamptotime", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "isturnsdetails_index", "to": "isturnsdetails_detailsm_detailsm", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_head", "to": "isturnsdetails_head_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_index", "to": "isturnsdetails_head", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_index", "to": "isturnsdetails_head_head", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "isturnsdetails_index", "to": "isturnsdetails_index_isturnsdetails", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_dashboard_useraccount_sidebars_turns_isturnsdetails_modal_index_js_modal_index", "to": "components_dashboard_useraccount_sidebars_turns_isturnsdetails_modal_index_js_modal_index_modaldeletecomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_index", "to": "appointmentlist_itemappointment", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_itemappointment", "to": "appointmentlist_bookingstate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_itemappointment", "to": "appointmentlist_bookingstate_bookingstate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_itemappointment", "to": "appointmentlist_itemappointment_itemappointment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_index", "to": "appointmentlist_itemappointment_itemappointment", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_itemappointment_itemappointment", "to": "appointmentlist_bookingstate_bookingstate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_bookingstate", "to": "appointmentlist_bookingstate_bookingstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_bookingstate", "to": "appointmentlist_bookingstate_day_names", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_bookingstate", "to": "appointmentlist_bookingstate_formatjalali", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_index", "to": "appointmentlist_bookingstate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_bookingstate_bookingstate", "to": "appointmentlist_bookingstate_formatjalali", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_index", "to": "appointmentlist_bookingstate_bookingstate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_index_appointmentlist", "to": "appointmentlist_bookingstate_bookingstate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointmentlist_index", "to": "appointmentlist_index_appointmentlist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_index", "to": "appointmentlist_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_index", "to": "appointmentlist_index_appointmentlist", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctor_appointmentlist_modal_index_js_modal_index", "to": "modal_index_modaldatepicker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claim_index", "to": "claim_index_claimprofilesection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claim_index", "to": "claim_index_currentusermobile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claim_index", "to": "claim_index_initialform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_index", "to": "claim_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claim_index_claimprofilesection", "to": "claim_index_currentusermobile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claim_index_claimprofilesection", "to": "helper_index_isuserloggedin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "doctor_index", "to": "claim_index_claimprofilesection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_index", "to": "detaildoctor_link", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_link", "to": "detaildoctor_link_link", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_link", "to": "detaildoctor_link_listlink", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_index", "to": "detaildoctor_link_link", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_list", "to": "detaildoctor_list_getvazirembedcss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_list", "to": "detaildoctor_list_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_list", "to": "detaildoctor_list_vazir_weights", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_list", "to": "detaildoctor_list_waitforimages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_share", "to": "detaildoctor_list", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_share", "to": "detaildoctor_list_list", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_index", "to": "detaildoctor_share", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_share", "to": "detaildoctor_share_share", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_share", "to": "detaildoctor_share_variants", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_share", "to": "poster_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_share", "to": "poster_index_poster", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_share", "to": "poster_posterlight", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_share", "to": "poster_posterlight_posterlight", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_index", "to": "detaildoctor_share", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_index", "to": "detaildoctor_share_share", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_index", "to": "detaildoctor_share_share", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_index", "to": "detaildoctor_title", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_title", "to": "detaildoctor_title_social_icons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_title", "to": "detaildoctor_title_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_index", "to": "detaildoctor_title_title", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_title_title", "to": "helper_index_doctortitle", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "cards_aboutdcotor", "to": "cards_aboutdcotor_aboutdcotor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_index", "to": "cards_aboutdcotor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_index", "to": "cards_aboutdcotor_aboutdcotor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chart_index", "to": "chart_progressall", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chart_progressall", "to": "chart_progressall_progressall", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chart_index", "to": "chart_progressall_progressall", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "chart_progressall_progressall", "to": "helper_index_numbertoarstyle", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "chart_index", "to": "chart_index_chart", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctor_detaildoctor_cards_comments_index_js_comments_index", "to": "chart_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctor_detaildoctor_cards_comments_index_js_comments_index", "to": "chart_index_chart", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctor_detaildoctor_cards_comments_index_js_comments_index", "to": "components_doctor_detaildoctor_cards_comments_index_js_comments_index_comments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctor_detaildoctor_cards_comments_index_js_comments_index", "to": "modal_modalanswer", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctor_detaildoctor_cards_comments_index_js_comments_index", "to": "modal_modalanswer_modalanswer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modal_btnnewcomment", "to": "modal_btnnewcomment_btnnewcomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modal_modalanswer", "to": "modal_btnnewcomment", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modal_modalanswer", "to": "modal_btnnewcomment_btnnewcomment", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modal_modalanswer", "to": "content_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modal_modalanswer", "to": "content_index_content", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modal_modalanswer", "to": "modal_modalanswer_modalanswer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "content_form", "to": "content_form_form", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "content_index", "to": "content_form", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "content_index", "to": "content_form_form", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "content_index", "to": "content_rates", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "content_rates", "to": "content_rates_rates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "content_index", "to": "content_rates_rates", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "content_index", "to": "content_index_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "locations_index", "to": "locations_item", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "locations_item", "to": "locations_item_item", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "locations_item", "to": "locations_item_mapview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "locations_index", "to": "locations_item_item", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_index", "to": "locations_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "locations_index", "to": "locations_index_locations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_index", "to": "locations_index_locations", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detaildoctor_index", "to": "detaildoctor_index_detaildoctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_index", "to": "detaildoctor_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_index", "to": "detaildoctor_index_detaildoctor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_index", "to": "doctor_index_doctorpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_index", "to": "doctor_index_specialtyhref", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_index_doctorpage", "to": "helper_index_doctortitle", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "poster_posterlight", "to": "poster_posterlight_posterlight", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_posterlight", "to": "poster_qrimg", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_posterlight", "to": "poster_qrimg_qrimg", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_posterlight", "to": "poster_sitelogo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_posterlight", "to": "poster_sitelogo_sitelogo", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_posterlight_posterlight", "to": "helper_index_doctortitle", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "poster_index", "to": "poster_qrimg", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_qrimg", "to": "poster_qrimg_qrimg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_index", "to": "poster_qrimg_qrimg", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_index", "to": "poster_sitelogo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_sitelogo", "to": "poster_sitelogo_sitelogo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_index", "to": "poster_sitelogo_sitelogo", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_index", "to": "poster_index_poster", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_index", "to": "poster_index_sectiontitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_index", "to": "poster_index_sitelogo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "poster_index_poster", "to": "helper_index_doctortitle", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "components_doctors_head_index_js_head_index", "to": "head_filterlocate", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_filterlocate", "to": "head_filterlocate_filterlocate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_filterlocate", "to": "icons_locationd", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "head_filterlocate", "to": "icons_locationd_locationd", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_head_index_js_head_index", "to": "head_filterlocate_filterlocate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_head_index_js_head_index", "to": "components_doctors_head_index_js_head_index_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_index_js_doctors_index", "to": "doctors_index_doctorspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_index_js_doctors_index", "to": "listdoctors_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_index_js_doctors_index", "to": "listdoctors_index_listdoctors", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctors_index_doctorspage", "to": "lib_domainhelpers_resolvecitydisplayname", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "doctors_index_doctorspage", "to": "lib_listingintro_builddoctorsintro", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "doctors_index_doctorspage", "to": "lib_rootcity_isrootcity", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "listdoctors_index", "to": "listdoctors_index_listdoctors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_modal_buttonapply_js_modal_buttonapply", "to": "components_doctors_modal_buttonapply_js_modal_buttonapply_buttonapply", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_modal_content_js_modal_content", "to": "components_doctors_modal_content_js_modal_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_modal_deleteallbutton_js_modal_deleteallbutton", "to": "components_doctors_modal_deleteallbutton_js_modal_deleteallbutton_deleteallbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_modal_filtermodal_js_modal_filtermodal", "to": "components_doctors_modal_filtermodal_js_modal_filtermodal_filtermodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_modal_form_cateselector_js_form_cateselector", "to": "components_doctors_modal_form_cateselector_js_form_cateselector_cateselector", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_modal_form_radiocontent_js_form_radiocontent", "to": "components_doctors_modal_form_radiocontent_js_form_radiocontent_radiocontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_modal_form_radios_js_form_radios", "to": "components_doctors_modal_form_radios_js_form_radios_radios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_modal_form_switchcontent_js_form_switchcontent", "to": "components_doctors_modal_form_switchcontent_js_form_switchcontent_switchcontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_modal_form_index_js_form_index", "to": "components_doctors_modal_form_index_js_form_index_degree", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_modal_form_index_js_form_index", "to": "components_doctors_modal_form_index_js_form_index_form", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_modal_form_index_js_form_index", "to": "components_doctors_modal_form_index_js_form_index_gender", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_modal_form_index_js_form_index_form", "to": "helper_index_filterlist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "components_doctors_search_autocomplete_js_search_autocomplete", "to": "components_doctors_search_autocomplete_js_search_autocomplete_autocomplete", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_search_searchfield_js_search_searchfield", "to": "components_doctors_search_searchfield_js_search_searchfield_searchfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_search_sendreq_js_search_sendreq", "to": "components_doctors_search_sendreq_js_search_sendreq_sendreq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_search_index_js_search_index", "to": "components_doctors_search_index_js_search_index_searchbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_sortlist_filterbtn_js_sortlist_filterbtn", "to": "components_doctors_sortlist_filterbtn_js_sortlist_filterbtn_filterbtn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", "to": "components_doctors_sortlist_selectsort_js_sortlist_selectsort_listsort", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", "to": "components_doctors_sortlist_selectsort_js_sortlist_selectsort_selectsort", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", "to": "icons_arrowbottomd", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", "to": "icons_arrowbottomd_arrowbottomd", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", "to": "icons_sortd", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", "to": "icons_sortd_sortd", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_doctors_sortlist_index_js_sortlist_index", "to": "components_doctors_sortlist_index_js_sortlist_index_sortlist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_frequentsearches", "to": "home_frequentsearches_frequentsearches", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_index", "to": "home_frequentsearches", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_index", "to": "home_frequentsearches_frequentsearches", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_index", "to": "home_textheader", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_textheader", "to": "home_textheader_textheader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_textheader", "to": "icons_atext", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_textheader", "to": "icons_atext_atext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_textheader", "to": "icons_btext", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_textheader", "to": "icons_btext_btext", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_index", "to": "home_textheader_textheader", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "home_textheader_textheader", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "home_index", "to": "home_index_homepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_home_search_index_js_search_index", "to": "search_fields", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_fields", "to": "modal_buttonfilter", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_fields", "to": "modal_buttonfilter_buttonfilter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_fields", "to": "search_fields_fields", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_fields", "to": "search_redirectlink", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_fields", "to": "search_redirectlink_redirectlink", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_home_search_index_js_search_index", "to": "search_fields_fields", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_filtertext", "to": "search_filtertext_filtertext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "search_redirectlink", "to": "search_redirectlink_redirectlink", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_home_search_index_js_search_index", "to": "components_home_search_index_js_search_index_searchbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_home_search_index_js_search_index_searchbar", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "modal_autocomplete", "to": "modal_autocomplete_autocomplete", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "modal_buttonfilter", "to": "modal_buttonfilter_buttonfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_home_search_modal_content_js_modal_content", "to": "components_home_search_modal_content_js_modal_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_home_search_modal_index_js_modal_index", "to": "components_home_search_modal_index_js_modal_index_modalsearchcity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_home_search_modal_index_js_modal_index_modalsearchcity", "to": "helper_index_addlabeltolist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "icons_atext", "to": "icons_atext_atext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_addcirclebluea", "to": "icons_addcirclebluea_addcirclebluea", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_addlocationp", "to": "icons_addlocationp_addlocationp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_addtimep", "to": "icons_addtimep_addtimep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_addressposter", "to": "icons_addressposter_addressposter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_aparat", "to": "icons_aparat_aparat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowbottomd", "to": "icons_arrowbottomd_arrowbottomd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowbottomgrayd", "to": "icons_arrowbottomgrayd_arrowbottomgrayd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowbottomh", "to": "icons_arrowbottomh_arrowbottomh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowbottomhd", "to": "icons_arrowbottomhd_arrowbottomhd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowbottomp", "to": "icons_arrowbottomp_arrowbottomp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowdownf", "to": "icons_arrowdownf_arrowdownf", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowdownp", "to": "icons_arrowdownp_arrowdownp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftb", "to": "icons_arrowleftb_arrowleftb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftbluea", "to": "icons_arrowleftbluea_arrowleftbluea", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftblued", "to": "icons_arrowleftblued_arrowleftblued", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftbluep", "to": "icons_arrowleftbluep_arrowleftbluep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftbuttonp", "to": "icons_arrowleftbuttonp_arrowleftbuttonp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftc", "to": "icons_arrowleftc_arrowleftc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftcardd", "to": "icons_arrowleftcardd_arrowleftcardd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftd", "to": "icons_arrowleftd_arrowleftd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftlist", "to": "icons_arrowleftlist_arrowleftlist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftm", "to": "icons_arrowleftm_arrowleftm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftorangea", "to": "icons_arrowleftorangea_arrowleftorangea", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftoranges", "to": "icons_arrowleftoranges_arrowleftoranges", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftp", "to": "icons_arrowleftp_arrowleftp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftpa", "to": "icons_arrowleftpa_arrowleftpa", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftph", "to": "icons_arrowleftph_arrowleftph", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftpu", "to": "icons_arrowleftpu_arrowleftpu", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftsidebar", "to": "icons_arrowleftsidebar_arrowleftsidebar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftwd", "to": "icons_arrowleftwd_arrowleftwd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowleftwhited", "to": "icons_arrowleftwhited_arrowleftwhited", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowrightd", "to": "icons_arrowrightd_arrowrightd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowrightp", "to": "icons_arrowrightp_arrowrightp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowrightph", "to": "icons_arrowrightph_arrowrightph", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowrights", "to": "icons_arrowrights_arrowrights", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_index", "to": "icons_arrowrights", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_index", "to": "icons_arrowrights_arrowrights", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_arrowupcomment", "to": "icons_arrowupcomment_arrowupcomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_btext", "to": "icons_btext_btext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_bolddislikecomment", "to": "icons_bolddislikecomment_bolddislikecomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_boldlikecomment", "to": "icons_boldlikecomment_boldlikecomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_bottomselect", "to": "icons_bottomselect_bottomselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_calendara", "to": "icons_calendara_calendara", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_calendaradd", "to": "icons_calendaradd_calendaradd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_calendaraddf", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_calendaraddf", "to": "icons_calendaraddf_calendaraddf", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_calendaraddf_calendaraddf", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_calendard", "to": "icons_calendard_calendard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_calendaredit", "to": "icons_calendaredit_calendaredit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_calendarp", "to": "icons_calendarp_calendarp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_calendarpd", "to": "icons_calendarpd_calendarpd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_calendartick", "to": "icons_calendartick_calendartick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_calendartickgreenp", "to": "icons_calendartickgreenp_calendartickgreenp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_callc", "to": "icons_callc_callc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_calld", "to": "icons_calld_calld", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_calndard", "to": "icons_calndard_calndard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_cardd", "to": "icons_cardd_cardd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_cardda", "to": "icons_cardda_cardda", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_cardorangep", "to": "icons_cardorangep_cardorangep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_cardtickd", "to": "icons_cardtickd_cardtickd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_categoryp", "to": "icons_categoryp_categoryp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_circleorangesm", "to": "icons_circleorangesm_circleorangesm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_clipboard", "to": "icons_clipboard_clipboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_clocka", "to": "icons_clocka_clocka", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_clockclinic", "to": "icons_clockclinic_clockclinic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_clockd", "to": "icons_clockd_clockd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_clockfield", "to": "icons_clockfield_clockfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_clockp", "to": "icons_clockp_clockp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_clockturn", "to": "icons_clockturn_clockturn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_closemodald", "to": "icons_closemodald_closemodald", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_closeorangemodal", "to": "icons_closeorangemodal_closeorangemodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_copyblued", "to": "icons_copyblued_copyblued", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_dislikecomment", "to": "icons_dislikecomment_dislikecomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_doublearrowleftp", "to": "icons_doublearrowleftp_doublearrowleftp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_downloadblue", "to": "icons_downloadblue_downloadblue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_downloadd", "to": "icons_downloadd_downloadd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_editb", "to": "icons_editb_editb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_editgraya", "to": "icons_editgraya_editgraya", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_editlogin", "to": "icons_editlogin_editlogin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_index", "to": "icons_editlogin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_index", "to": "icons_editlogin_editlogin", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_editorangea", "to": "icons_editorangea_editorangea", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_editorangead", "to": "icons_editorangead_editorangead", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_editturnsd", "to": "icons_editturnsd_editturnsd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_emailc", "to": "icons_emailc_emailc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_exportp", "to": "icons_exportp_exportp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_greencalendarturn", "to": "icons_greencalendarturn_greencalendarturn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_iconmultipleselect", "to": "icons_iconmultipleselect_iconmultipleselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_infocirclereda", "to": "icons_infocirclereda_infocirclereda", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_instagram", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_instagram", "to": "icons_instagram_instagram", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_instagram_instagram", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_likecomment", "to": "icons_likecomment_likecomment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_liked", "to": "icons_liked_liked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_likedi", "to": "icons_likedi_likedi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_linkedin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_linkedin", "to": "icons_linkedin_linkedin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_linkedin_linkedin", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_linkedinb", "to": "icons_linkedinb_linkedinb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_linkedingblued", "to": "icons_linkedingblued_linkedingblued", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_location", "to": "icons_location_location", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_locationa", "to": "icons_locationa_locationa", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_locationadd", "to": "icons_locationadd_locationadd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_locationclinic", "to": "icons_locationclinic_locationclinic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_locationd", "to": "icons_locationd_locationd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_locationf", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_locationf", "to": "icons_locationf_locationf", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_locationf_locationf", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_locationp", "to": "icons_locationp_locationp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_locationturn", "to": "icons_locationturn_locationturn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_logopanel", "to": "icons_logopanel_logopanel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_logopanelhead", "to": "icons_logopanelhead_logopanelhead", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_logoutd", "to": "icons_logoutd_logoutd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_logoutorangep", "to": "icons_logoutorangep_logoutorangep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_logoutp", "to": "icons_logoutp_logoutp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_menus", "to": "icons_menus_menus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_messaged", "to": "icons_messaged_messaged", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_messagenotifd", "to": "icons_messagenotifd_messagenotifd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_moonp", "to": "icons_moonp_moonp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_notfoundcover", "to": "icons_notfoundcover_notfoundcover", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_notificationd", "to": "icons_notificationd_notificationd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_notificationp", "to": "icons_notificationp_notificationp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_numbernotfound", "to": "icons_numbernotfound_numbernotfound", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "notfound_index", "to": "icons_numbernotfound", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "notfound_index", "to": "icons_numbernotfound_numbernotfound", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_peoplebluep", "to": "icons_peoplebluep_peoplebluep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_plusb", "to": "icons_plusb_plusb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_plusbluep", "to": "icons_plusbluep_plusbluep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_pointd", "to": "icons_pointd_pointd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_profileaddp", "to": "icons_profileaddp_profileaddp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_profilecirclep", "to": "icons_profilecirclep_profilecirclep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_profiled", "to": "icons_profiled_profiled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_profilep", "to": "icons_profilep_profilep", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_profilepa", "to": "icons_profilepa_profilepa", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_redoa", "to": "icons_redoa_redoa", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_refresha", "to": "icons_refresha_refresha", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_retrylogin", "to": "icons_retrylogin_retrylogin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_routingc", "to": "icons_routingc_routingc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_routingwhitec", "to": "icons_routingwhitec_routingwhitec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_search", "to": "icons_search_search", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_searchd", "to": "icons_searchd_searchd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_searchheaderp", "to": "icons_searchheaderp_searchheaderp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_settingd", "to": "icons_settingd_settingd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_settingp", "to": "icons_settingp_settingp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_settingpa", "to": "icons_settingpa_settingpa", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_sharedi", "to": "icons_sharedi_sharedi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_sortd", "to": "icons_sortd_sortd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_stardi", "to": "icons_stardi_stardi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_stethoscopef", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_stethoscopef", "to": "icons_stethoscopef_stethoscopef", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_stethoscopef_stethoscopef", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_sun", "to": "icons_sun_sun", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_telefonposter", "to": "icons_telefonposter_telefonposter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_telegram", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_telegram", "to": "icons_telegram_telegram", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_telegram_telegram", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_telegramb", "to": "icons_telegramb_telegramb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_telegramblued", "to": "icons_telegramblued_telegramblued", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_tickalert", "to": "icons_tickalert_tickalert", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_tickcircle", "to": "icons_tickcircle_tickcircle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_tickcirclegreena", "to": "icons_tickcirclegreena_tickcirclegreena", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_tickcircleorange", "to": "icons_tickcircleorange_tickcircleorange", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_tickorangea", "to": "icons_tickorangea_tickorangea", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_ticketd", "to": "icons_ticketd_ticketd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_trashb", "to": "icons_trashb_trashb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_trashoranged", "to": "icons_trashoranged_trashoranged", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_underline", "to": "icons_underline_underline", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_underlinelg", "to": "icons_underlinelg_underlinelg", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_updatelist", "to": "icons_updatelist_updatelist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_useredit", "to": "icons_useredit_useredit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_userlogin", "to": "icons_userlogin_userlogin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_warnp", "to": "icons_warnp_warnp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_whatsapp", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_whatsapp", "to": "icons_whatsapp_whatsapp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "icons_whatsapp_whatsapp", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_whatsappb", "to": "icons_whatsappb_whatsappb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_whatsappblued", "to": "icons_whatsappblued_whatsappblued", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_whatsappc", "to": "icons_whatsappc_whatsappc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "icons_youtube", "to": "icons_youtube_youtube", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_stlayout", "to": "footer_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_stlayout", "to": "footer_index_footer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_stlayout", "to": "header_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_stlayout", "to": "header_index_header", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_stlayout", "to": "layout_stlayout_stlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_stlayout_stlayout", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "footer_index", "to": "footer_logonamad", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_logonamad", "to": "footer_logonamad_logonamad", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_logonamad", "to": "footer_logonamad_namads", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "footer_logonamad_logonamad", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "footer_index_buildsocialurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "footer_index_footer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "footer_index_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "menu_headmenu", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "menu_headmenu_headmenu", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "menu_listmenu", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "footer_index", "to": "menu_listmenu_listmenu", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_index", "to": "footer_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_index", "to": "footer_index_footer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "menu_headmenu", "to": "menu_headmenu_headmenu", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "menu_listmenu", "to": "menu_listmenu_listmenu", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_content", "to": "col_bggray", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_content", "to": "col_bggray_bggray", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_content", "to": "col_buttonmenu", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_content", "to": "col_buttonmenu_buttonmenu", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_content", "to": "col_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_content", "to": "col_index_col", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_content", "to": "header_content_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_content", "to": "list_row", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_content", "to": "list_row_row", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_content", "to": "profile_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_content", "to": "profile_index_profileuser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_index", "to": "header_content", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_index", "to": "header_content_content", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "header_index", "to": "header_index_header", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_index", "to": "header_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_index", "to": "header_index_header", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "list_row", "to": "list_row_row", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "col_bggray", "to": "col_bggray_bggray", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "col_buttonmenu", "to": "col_buttonmenu_buttonmenu", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "col_index", "to": "col_index_col", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "profile_index", "to": "profile_index_profileuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_index", "to": "layout_index_layout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_index", "to": "sidebar_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "layout_index", "to": "sidebar_index_sidebar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sidebar_cards", "to": "sidebar_cards_cards", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sidebar_index", "to": "sidebar_cards", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sidebar_index", "to": "sidebar_cards_cards", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sidebar_head", "to": "sidebar_head_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sidebar_index", "to": "sidebar_head", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sidebar_head_head", "to": "helper_index_imageurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "sidebar_index", "to": "sidebar_head_head", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sidebar_index", "to": "sidebar_list", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sidebar_list", "to": "sidebar_list_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sidebar_index", "to": "sidebar_list_list", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sidebar_index", "to": "sidebar_index_sidebar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "loginverify_index", "to": "loginverify_index_loginverifypage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "maintenance_index", "to": "maintenance_index_maintenancepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "notfound_index", "to": "notfound_index_notfoundpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_contentlogin", "to": "register_contentlogin_contentlogin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_contentlogin_contentlogin", "to": "lib_getstateinfo_getstateinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "register_contentverify", "to": "register_contentverify_contentverify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_index", "to": "register_layoutregister", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_layoutregister", "to": "register_layoutregister_about", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_layoutregister", "to": "register_layoutregister_layoutregister", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_index", "to": "register_layoutregister_layoutregister", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_loginpage", "to": "register_loginpage_loginpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "element_otpform", "to": "element_otpform_otpform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_index", "to": "element_otpform", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_index", "to": "element_otpform_otpform", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "register_index", "to": "register_index_registerpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_index", "to": "verificationpage_recode", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_recode", "to": "verificationpage_recode_recode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_index", "to": "verificationpage_recode_recode", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_index", "to": "verificationpage_sendreq", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_sendreq", "to": "verificationpage_sendreq_sendreq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_index", "to": "verificationpage_sendreq_sendreq", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "verificationpage_index", "to": "verificationpage_index_verificationpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "smsearch_autocompletesearch", "to": "smsearch_autocompletesearch_autocompletesearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "smsearch_index", "to": "smsearch_autocompletesearch", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "smsearch_index", "to": "smsearch_autocompletesearch_autocompletesearch", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "smsearch_index", "to": "smsearch_index_smsearch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialties_index", "to": "smsearch_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialties_index", "to": "smsearch_index_smsearch", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_specialties_detail_index_js_detail_index", "to": "detail_doctorgrid", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "detail_doctorgrid", "to": "detail_doctorgrid_doctorgrid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_specialties_detail_index_js_detail_index", "to": "detail_doctorgrid_doctorgrid", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_specialties_detail_faq_js_detail_faq", "to": "components_specialties_detail_faq_js_detail_faq_faq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_specialties_detail_index_js_detail_index", "to": "detail_index_specialtydetailpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialties_index", "to": "specialties_index_specialtiespage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_specialties_list_index_js_list_index", "to": "list_itemspecialties", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "list_itemspecialties", "to": "list_itemspecialties_itemspecialties", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "list_itemspecialties", "to": "list_itemspecialties_specialtyhref", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "list_itemspecialties_itemspecialties", "to": "list_itemspecialties_specialtyhref", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_specialties_list_index_js_list_index", "to": "list_itemspecialties_itemspecialties", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "components_specialties_list_index_js_list_index", "to": "components_specialties_list_index_js_list_index_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "constans_index", "to": "constans_index_footerl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "constans_index", "to": "constans_index_footerr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "constans_index", "to": "constans_index_frequentsearches", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "constans_index", "to": "constans_index_listnav", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "context_provinceprovider", "to": "context_provinceprovider_provincecontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "context_provinceprovider", "to": "context_provinceprovider_provinceprovider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "context_provinceprovider", "to": "context_provinceprovider_useprovince", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "context_provinceprovider_provinceprovider", "to": "lib_rootcity_isrootcity", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "context_provinceprovider_test_probe", "to": "context_provinceprovider_useprovince", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "context_provinceprovider_test", "to": "context_provinceprovider_test_probe", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "context_provinceprovider_test", "to": "context_provinceprovider_test_sethostname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "eslint_config", "to": "eslint_config_eslintconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_addlabeltolist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_alert", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_blogcover", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_buildclinicparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_builddoctorparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_changedatetype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_changenumtodefault", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_checkallvalues", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_checktimes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_cleardoctorclinicparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_clearfilterparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_converttimestamptojalali", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_converttimestamptopersiandatesimple", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_converttimestamptotime", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_converttojalali", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_datetotimestamp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_degreeval", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_doctortitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_filterlist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_formatphonenumber", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_getcleannumbervalue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_getparseduserinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_handletimeexpirestoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_handletwolength", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_hasdatachanged", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_imageurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_isactiveurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_isuserloggedin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_isvalidirannationalcode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_name_honorifics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_normalizeblog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_normalizedoctornamequery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_numbertoarstyle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_queryforclinicdoctorfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_queryforclinicsfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_queryfordoctorsclinicreq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_queryfordoctorsfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_queryfordoctorsreq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_removeadditionalkeysdashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_removetokenhead", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_searchonlist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_timeago", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_uploadimage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index", "to": "helper_index_validatephonenumber", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index_builddoctorparams", "to": "helper_index_normalizedoctornamequery", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index_queryfordoctorsclinicreq", "to": "helper_index_normalizedoctornamequery", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "helper_index_queryfordoctorsreq", "to": "helper_index_normalizedoctornamequery", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_buildsearchurl_buildsearchurl", "to": "helper_index_normalizedoctornamequery", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "helper_index_blogcover", "to": "helper_index_imageurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent_builddoctorfaq", "to": "helper_index_doctortitle", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "hooks_usecanonicalurl", "to": "hooks_usecanonicalurl_usecanonicalurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "hooks_usecanonicalurl", "to": "hooks_usecanonicalurl_usecanonicalurlinjection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "hooks_usecanonicalurl_usecanonicalurlinjection", "to": "hooks_usecanonicalurl_usecanonicalurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "jsconfig", "to": "jsconfig_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "jsconfig_compileroptions", "to": "jsconfig_compileroptions_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "jsconfig_compileroptions_paths", "to": "jsconfig_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_ability", "to": "lib_ability_defineabilitiesfor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_appointmentslots", "to": "lib_appointmentslots_adaptserviceslots", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_appointmentslots", "to": "lib_appointmentslots_adaptslots", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_appointmentslots", "to": "lib_appointmentslots_hasavailable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_auth", "to": "lib_auth_getuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_breadcrumb", "to": "lib_breadcrumb_absoluteurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_breadcrumb", "to": "lib_breadcrumb_buildbreadcrumbjsonld", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_breadcrumb", "to": "lib_breadcrumb_normalizebreadcrumb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_breadcrumb_buildbreadcrumbjsonld", "to": "lib_breadcrumb_normalizebreadcrumb", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_breadcrumb_buildbreadcrumbjsonld", "to": "lib_breadcrumb_absoluteurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_buildsearchurl", "to": "lib_buildsearchurl_buildsearchurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_cliniccontact", "to": "lib_cliniccontact_getclinicaddress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_cliniccontact", "to": "lib_cliniccontact_getcliniccity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_cliniccontact", "to": "lib_cliniccontact_getclinicphone", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_cliniccontact", "to": "lib_cliniccontact_getclinicstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_cliniccontact", "to": "lib_cliniccontact_hascliniccontact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_cliniccontact", "to": "lib_cliniccontact_telhref", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_cliniccontact", "to": "lib_cliniccontact_toe164ir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_cliniccontact_hascliniccontact", "to": "lib_cliniccontact_getclinicphone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_cliniccontact_getclinicaddress", "to": "lib_cliniccontact_getcliniccity", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_cliniccontact_getclinicaddress", "to": "lib_cliniccontact_getclinicstate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_cliniccontact_hascliniccontact", "to": "lib_cliniccontact_getclinicaddress", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_domainhelpers", "to": "lib_domainhelpers_domainscopecityid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_domainhelpers", "to": "lib_domainhelpers_extractentitycityid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_domainhelpers", "to": "lib_domainhelpers_findcitybyid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_domainhelpers", "to": "lib_domainhelpers_finddomainbycityid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_domainhelpers", "to": "lib_domainhelpers_isblogvisibleondomain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_domainhelpers", "to": "lib_domainhelpers_resolvecitydisplayname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_domainhelpers_finddomainbycityid", "to": "lib_rootcity_isrootcity", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_getcanonicalurl_getblogcanonicalorigin", "to": "lib_domainhelpers_finddomainbycityid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_getcanonicalurl_getentitycanonical", "to": "lib_domainhelpers_finddomainbycityid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_domainhelpers_findcitybyid", "to": "lib_rootcity_isrootcity", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_domainhelpers_isblogvisibleondomain", "to": "lib_domainhelpers_domainscopecityid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_domainhelpers_resolvecitydisplayname", "to": "lib_rootcity_isrootcity", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_domainhelpers_test", "to": "lib_domainhelpers_test_root", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_domainhelpers_test", "to": "lib_domainhelpers_test_yasuj", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_entityquality", "to": "lib_entityquality_hasrealname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_entityquality", "to": "lib_entityquality_isnoindexdoctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_entityquality", "to": "lib_entityquality_isthinclinic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_entityquality", "to": "lib_entityquality_isthindoctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_entityquality", "to": "lib_entityquality_isunclaimeddoctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_entityquality", "to": "lib_entityquality_placeholder_names", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_entityquality_isthinclinic", "to": "lib_entityquality_hasrealname", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_entityquality_isthindoctor", "to": "lib_entityquality_hasrealname", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_entityquality_isnoindexdoctor", "to": "lib_entityquality_isthindoctor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_entityquality_isnoindexdoctor", "to": "lib_entityquality_isunclaimeddoctor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_buildcanonicalpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_buildcanonicalquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_buildcanonicalurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_buildfilteredlistingcanonical", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_buildmaincanonicalurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_canonical_query_keys", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_getblogcanonicalorigin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_getcanonicalurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_getentitycanonical", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_getentityorigin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_getrequestorigin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_listing_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_normalizehost", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl", "to": "lib_getcanonicalurl_static_shared_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl_buildcanonicalurl", "to": "lib_getcanonicalurl_normalizehost", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl_buildcanonicalurl", "to": "lib_getcanonicalurl_buildcanonicalpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl_buildmaincanonicalurl", "to": "lib_getcanonicalurl_buildcanonicalpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl_getcanonicalurl", "to": "lib_getcanonicalurl_buildcanonicalpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl_buildfilteredlistingcanonical", "to": "lib_getcanonicalurl_buildcanonicalurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl_getblogcanonicalorigin", "to": "lib_getcanonicalurl_buildcanonicalurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl_getcanonicalurl", "to": "lib_getcanonicalurl_buildcanonicalurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl_getentitycanonical", "to": "lib_getcanonicalurl_buildcanonicalurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl_getrequestorigin", "to": "lib_getcanonicalurl_buildcanonicalurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_sitemap_getbaseurl", "to": "lib_getcanonicalurl_buildcanonicalurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_getcanonicalurl_getcanonicalurl", "to": "lib_getcanonicalurl_buildmaincanonicalurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl_getcanonicalurl", "to": "lib_getcanonicalurl_buildfilteredlistingcanonical", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl_getcanonicalurl", "to": "lib_getcanonicalurl_buildcanonicalquery", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getcanonicalurl_getentityorigin", "to": "lib_getcanonicalurl_getentitycanonical", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getstateinfo", "to": "lib_getstateinfo_fetchsitecontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getstateinfo", "to": "lib_getstateinfo_getstateinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getstateinfo", "to": "lib_getstateinfo_sitecontextcache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getstateinfo_fetchsitecontext", "to": "lib_req_fetchreq", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_getstateinfo_getstateinfo", "to": "lib_getstateinfo_fetchsitecontext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getstateinfo_getstateinfo", "to": "lib_rootcity_isrootcity", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_getstateinfo_test", "to": "lib_getstateinfo_test_hostref", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_getstateinfoclient", "to": "lib_getstateinfoclient_getstateinfoclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingintro", "to": "lib_listingintro_buildclinicsintro", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingintro", "to": "lib_listingintro_builddoctorsintro", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingintro", "to": "lib_listingintro_clinic_intros", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingintro", "to": "lib_listingintro_doctor_intros", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingintro", "to": "lib_listingintro_hash", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingintro", "to": "lib_listingintro_pick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingintro_buildclinicsintro", "to": "lib_listingintro_pick", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingintro_builddoctorsintro", "to": "lib_listingintro_pick", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingintro_builddoctorsintro", "to": "lib_listingintro_doctor_intros", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingintro_buildclinicsintro", "to": "lib_listingintro_clinic_intros", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingrobots", "to": "lib_listingrobots_haslistingfilters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingrobots", "to": "lib_listingrobots_isempty", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingrobots", "to": "lib_listingrobots_listingrobots", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingrobots", "to": "lib_listingrobots_non_filter_keys", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingrobots_listingrobots", "to": "lib_listingrobots_haslistingfilters", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_listingrobots_test", "to": "lib_listingrobots_test_isnoindex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_maintenance", "to": "lib_maintenance_ismaintenanceerror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_maintenance", "to": "lib_maintenance_isnextredirecterror", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_maintenance", "to": "lib_maintenance_maintenancemessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_req_fetchreq", "to": "lib_maintenance_ismaintenanceerror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "services_clinicapi_getclinicdoctors", "to": "lib_maintenance_isnextredirecterror", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "lib_money", "to": "lib_money_formattoman", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_money", "to": "lib_money_rialtotoman", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_money", "to": "lib_money_tomantorial", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_money_formattoman", "to": "lib_money_rialtotoman", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_multidomainclient_test", "to": "lib_multidomainclient_test_setlocation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_refreshcookie", "to": "lib_refreshcookie_clearrefreshcookie", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_refreshcookie", "to": "lib_refreshcookie_cookiedomain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_refreshcookie", "to": "lib_refreshcookie_setrefreshcookie", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_refreshcookie_clearrefreshcookie", "to": "lib_refreshcookie_cookiedomain", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_refreshcookie_setrefreshcookie", "to": "lib_refreshcookie_cookiedomain", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_representationadapters", "to": "lib_representationadapters_buildpatientuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_req", "to": "lib_req_axiosinstance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_req", "to": "lib_req_fetchreq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_rootcity", "to": "lib_rootcity_isrootcity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_sanitize", "to": "lib_sanitize_safejsonld", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_sanitize", "to": "lib_sanitize_safejsonparse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_sanitize", "to": "lib_sanitize_sanitizehtml", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_servertoken", "to": "lib_servertoken_getserveraccesstoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent", "to": "lib_specialtycontent_bodyvariants", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent", "to": "lib_specialtycontent_builddoctorfaq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent", "to": "lib_specialtycontent_buildspecialtyfaq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent", "to": "lib_specialtycontent_buildspecialtyintro", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent", "to": "lib_specialtycontent_closingvariants", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent", "to": "lib_specialtycontent_hash", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent", "to": "lib_specialtycontent_openingvariants", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent", "to": "lib_specialtycontent_pick", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent_buildspecialtyintro", "to": "lib_specialtycontent_pick", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent_buildspecialtyintro", "to": "lib_specialtycontent_openingvariants", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent_buildspecialtyintro", "to": "lib_specialtycontent_bodyvariants", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent_buildspecialtyintro", "to": "lib_specialtycontent_closingvariants", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent_test", "to": "lib_specialtycontent_test_cities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent_test", "to": "lib_specialtycontent_test_specialties", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtycontent_test", "to": "lib_specialtycontent_test_words", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtyindexing", "to": "lib_specialtyindexing_ids_with_active_children", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtyindexing", "to": "lib_specialtyindexing_iscategoryspecialty", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtyindexing", "to": "lib_specialtyindexing_isindexablespecialty", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtyindexing_isindexablespecialty", "to": "lib_specialtyindexing_iscategoryspecialty", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_specialtyindexing_test", "to": "lib_specialtyindexing_test_byslug", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_tokenstore", "to": "lib_tokenstore_clearaccesstoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_tokenstore", "to": "lib_tokenstore_getaccesstoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "lib_tokenstore", "to": "lib_tokenstore_setaccesstoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_api_handlesessionexpired", "to": "lib_tokenstore_clearaccesstoken", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "utils_index_removetoken", "to": "lib_tokenstore_clearaccesstoken", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "mui_index", "to": "mui_index_styledefault", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "mui_index", "to": "mui_index_styletextselectright", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "next_config", "to": "next_config_nextconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_engines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_private", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_engines", "to": "package_engines_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_start", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_test_cov", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_test_watch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_altcha", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_aos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_axios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_casl_ability", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_casl_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_date_fns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_dayjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_emotion_cache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_emotion_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_emotion_styled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_html2canvas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_html_to_image", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_i", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_isomorphic_dompurify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_jalaali_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_jalali_moment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_js_cookie", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_jspdf", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_leaflet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_maptiler_sdk", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_moment_jalaali", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_mui_icons_material", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_mui_material", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_mui_styled_engine", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_mui_x_charts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_mui_x_date_pickers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_next", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_next_themes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_next_third_parties", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_npm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_postcss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_qrcode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_qrcode_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_react_easy_crop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_react_google_map_picker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_react_images_uploading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_react_leaflet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_react_toastify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_sharp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_styled_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_stylis", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_stylis_plugin_rtl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_swiper", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_tailwindcss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_uninstall", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_babel_plugin_react_compiler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_cross_env", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_eslint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_eslint_config_next", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_eslint_eslintrc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_jsdom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_prettier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_testing_library_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_testing_library_jest_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_testing_library_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_testing_library_user_event", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_vitejs_plugin_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_vitest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "postcss_config", "to": "postcss_config_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "proxy", "to": "proxy_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "proxy", "to": "proxy_proxy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_make_blog_cover", "to": "scripts_make_blog_cover_card", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_make_blog_cover", "to": "scripts_make_blog_cover_lines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_make_blog_cover", "to": "scripts_make_blog_cover_mark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_make_blog_cover", "to": "scripts_make_blog_cover_out", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_make_blog_cover", "to": "scripts_make_blog_cover_paragraph", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_make_blog_cover", "to": "scripts_make_blog_cover_root", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_api", "to": "services_api_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_api", "to": "services_api_extracterrormessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_api", "to": "services_api_handlesessionexpired", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_api", "to": "services_api_refreshaccesstoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_response", "to": "services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_response", "to": "services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_clinicapi", "to": "services_clinicapi_getclinicdoctors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_response", "to": "services_response_clinicquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "services_response", "to": "services_response_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_utils", "to": "test_utils_renderui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_index", "to": "utils_index_removetoken", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "utils_sitemap", "to": "utils_sitemap_getbaseurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api", "to": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "to": "prompt_adapt_backend_audit_api_\u062c\u062f\u0648\u0644_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0645\u0631\u062a\u0628\u0637_\u0628\u0627_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "to": "prompt_adapt_backend_audit_api_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "to": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "to": "prompt_adapt_backend_audit_api_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "to": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "to": "prompt_adapt_backend_audit_api_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", "to": "prompt_adapt_backend_audit_api_\u0631\u0641\u062a\u0627\u0631_\u062c\u062f\u06cc\u062f_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", "to": "prompt_adapt_backend_audit_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_nobat724_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_lib_servertoken_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", "to": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u062d\u0644_rotation_\u06cc\u06a9\u06cc_\u0627\u0632_\u062f\u0648_\u0645\u0633\u06cc\u0631_\u0645\u0633\u06cc\u0631_a_\u062a\u0648\u0635\u06cc\u0647_\u0645\u06cc_\u0634\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", "to": "prompt_adapt_backend_audit_api_\u0686\u0631\u0627_\u0645\u06cc_\u0634\u06a9\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", "to": "prompt_adapt_backend_audit_api_\u062a\u063a\u06cc\u06cc\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", "to": "prompt_adapt_backend_audit_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_app_doctor_slug_page_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", "to": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates", "to": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "to": "prompt_appointment_calendar_disabled_dates_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "to": "prompt_appointment_calendar_disabled_dates_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "to": "prompt_appointment_calendar_disabled_dates_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_endpoint_\u062c\u062f\u06cc\u062f_backend_\u0645\u0631\u062c\u0639", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "to": "prompt_appointment_calendar_disabled_dates_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "to": "prompt_appointment_calendar_disabled_dates_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "to": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "to": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "to": "prompt_appointment_calendar_disabled_dates_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_appointment_calendar_disabled_dates_app_appointment_doctorid_page_js_disableddates_\u062e\u0627\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_appointment_calendar_disabled_dates_app_component_date_datepicker_index_js_\u0645\u0635\u0631\u0641_disableddates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_appointment_calendar_disabled_dates_services_response_js_\u062a\u0648\u0627\u0628\u0639_slot_\u0645\u0648\u062c\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_appointment_calendar_disabled_dates_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_getmonthavailability_\u0628\u0647_services_response_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_appointment_calendar_disabled_dates_\u06f2_\u0644\u0648\u062f_\u062f\u0627\u062f\u0647_\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u062f\u0631_datepicker_\u0648_disable_\u06a9\u0631\u062f\u0646_\u0631\u0648\u0632\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_appointment_calendar_disabled_dates_\u06f3_\u0647\u0646\u062f\u0644_\u0646\u0627\u0648\u0628\u0631\u06cc_\u0645\u0627\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_appointment_calendar_disabled_dates_\u06f4_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0648\u0644\u06cc_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u062e\u0627\u0645\u0648\u0634", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_detail_fields_fix", "to": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "to": "prompt_appointment_detail_fields_fix_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "to": "prompt_appointment_detail_fields_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "to": "prompt_appointment_detail_fields_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "to": "prompt_appointment_detail_fields_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "to": "prompt_appointment_detail_fields_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0647\u0631_\u062f\u0648_\u0641\u0627\u06cc\u0644_\u0645\u0634\u0627\u0628\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "to": "prompt_appointment_detail_fields_fix_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "to": "prompt_appointment_detail_fields_fix_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_detail_fields_fix_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_appointment_detail_fields_fix_\u06f1_\u0627\u0635\u0644\u0627\u062d_detaillg_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_detail_fields_fix_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_appointment_detail_fields_fix_\u06f2_\u0627\u0635\u0644\u0627\u062d_detailsm_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_required_account_fields", "to": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "to": "prompt_appointment_required_account_fields_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "to": "prompt_appointment_required_account_fields_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "to": "prompt_appointment_required_account_fields_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "to": "prompt_appointment_required_account_fields_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "to": "prompt_appointment_required_account_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "to": "prompt_appointment_required_account_fields_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "to": "prompt_appointment_required_account_fields_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_required_account_fields_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_appointment_required_account_fields_\u06f1_\u062a\u0627\u0628\u0639_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0627\u062c\u0628\u0627\u0631\u06cc_\u062f\u0631_submitdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_appointment_required_account_fields_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_appointment_required_account_fields_\u06f2_\u0647\u0645\u0627\u0647\u0646\u06af\u06cc_\u0634\u06a9\u0644_\u062f\u0627\u062f\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_birthday_picker_year_month_day", "to": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "to": "prompt_birthday_picker_year_month_day_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "to": "prompt_birthday_picker_year_month_day_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "to": "prompt_birthday_picker_year_month_day_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "to": "prompt_birthday_picker_year_month_day_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "to": "prompt_birthday_picker_year_month_day_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "to": "prompt_birthday_picker_year_month_day_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "to": "prompt_birthday_picker_year_month_day_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_birthday_picker_year_month_day_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_birthday_picker_year_month_day_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0628\u0647_jalalidatepicker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_birthday_picker_year_month_day_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_birthday_picker_year_month_day_\u06f2_\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u0631_datebirthday_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_city_scoping_activate", "to": "prompt_blog_city_scoping_activate_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0628\u0644\u0627\u06af_\u0634\u0647\u0631_\u0645\u062d\u0648\u0631_\u0628\u0639\u062f_\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u0634\u0647\u0631_\u062f\u0631_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_city_scoping_activate_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0628\u0644\u0627\u06af_\u0634\u0647\u0631_\u0645\u062d\u0648\u0631_\u0628\u0639\u062f_\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u0634\u0647\u0631_\u062f\u0631_backend", "to": "prompt_blog_city_scoping_activate_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_city_scoping_activate_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0628\u0644\u0627\u06af_\u0634\u0647\u0631_\u0645\u062d\u0648\u0631_\u0628\u0639\u062f_\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u0634\u0647\u0631_\u062f\u0631_backend", "to": "prompt_blog_city_scoping_activate_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_city_scoping_activate_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0628\u0644\u0627\u06af_\u0634\u0647\u0631_\u0645\u062d\u0648\u0631_\u0628\u0639\u062f_\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u0634\u0647\u0631_\u062f\u0631_backend", "to": "prompt_blog_city_scoping_activate_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f\u06cc_\u06a9\u0647_\u0622\u0645\u0627\u062f\u0647_\u0641\u0639\u0627\u0644_\u0634\u062f\u0646_\u0627\u0633\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_city_scoping_activate_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0628\u0644\u0627\u06af_\u0634\u0647\u0631_\u0645\u062d\u0648\u0631_\u0628\u0639\u062f_\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u0634\u0647\u0631_\u062f\u0631_backend", "to": "prompt_blog_city_scoping_activate_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_city_scoping_activate_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0628\u0644\u0627\u06af_\u0634\u0647\u0631_\u0645\u062d\u0648\u0631_\u0628\u0639\u062f_\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u0634\u0647\u0631_\u062f\u0631_backend", "to": "prompt_blog_city_scoping_activate_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_city_scoping_activate_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_blog_city_scoping_activate_\u06f1_\u062a\u0623\u06cc\u06cc\u062f_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0634\u06a9\u0644_\u067e\u0627\u0633\u062e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_city_scoping_activate_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_blog_city_scoping_activate_\u06f2_\u0644\u06cc\u0633\u062a_\u0628\u0644\u0627\u06af_per_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_city_scoping_activate_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_blog_city_scoping_activate_\u06f3_\u0639\u0646\u0648\u0627\u0646_\u0648_\u0645\u062a\u0627\u062f\u06cc\u062a\u0627\u06cc_\u0634\u0647\u0631\u0645\u062d\u0648\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_city_scoping_activate_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_blog_city_scoping_activate_\u06f4_\u062a\u0633\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover", "to": "prompt_blog_frontend_sync_and_default_cover_\u0633\u06cc\u0646\u06a9_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0628\u0644\u0627\u06af_\u0628\u0627_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0628\u0631\u0646\u062f_\u0628\u0627\u0637\u0644_\u0633\u0627\u0632\u06cc_\u06a9\u0634", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0633\u06cc\u0646\u06a9_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0628\u0644\u0627\u06af_\u0628\u0627_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0628\u0631\u0646\u062f_\u0628\u0627\u0637\u0644_\u0633\u0627\u0632\u06cc_\u06a9\u0634", "to": "prompt_blog_frontend_sync_and_default_cover_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0633\u06cc\u0646\u06a9_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0628\u0644\u0627\u06af_\u0628\u0627_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0628\u0631\u0646\u062f_\u0628\u0627\u0637\u0644_\u0633\u0627\u0632\u06cc_\u06a9\u0634", "to": "prompt_blog_frontend_sync_and_default_cover_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0633\u06cc\u0646\u06a9_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0628\u0644\u0627\u06af_\u0628\u0627_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0628\u0631\u0646\u062f_\u0628\u0627\u0637\u0644_\u0633\u0627\u0632\u06cc_\u06a9\u0634", "to": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0633\u06cc\u0646\u06a9_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0628\u0644\u0627\u06af_\u0628\u0627_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0628\u0631\u0646\u062f_\u0628\u0627\u0637\u0644_\u0633\u0627\u0632\u06cc_\u06a9\u0634", "to": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0639\u06cc\u0627\u0631_\u067e\u0630\u06cc\u0631\u0634", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0633\u06cc\u0646\u06a9_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0628\u0644\u0627\u06af_\u0628\u0627_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0628\u0631\u0646\u062f_\u0628\u0627\u0637\u0644_\u0633\u0627\u0632\u06cc_\u06a9\u0634", "to": "prompt_blog_frontend_sync_and_default_cover_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0633\u06cc\u0646\u06a9_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0628\u0644\u0627\u06af_\u0628\u0627_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0628\u0631\u0646\u062f_\u0628\u0627\u0637\u0644_\u0633\u0627\u0632\u06cc_\u06a9\u0634", "to": "prompt_blog_frontend_sync_and_default_cover_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0633\u06cc\u0646\u06a9_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0628\u0644\u0627\u06af_\u0628\u0627_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0628\u0631\u0646\u062f_\u0628\u0627\u0637\u0644_\u0633\u0627\u0632\u06cc_\u06a9\u0634", "to": "prompt_blog_frontend_sync_and_default_cover_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0633\u06cc\u0646\u06a9_\u06a9\u0627\u0645\u0644_\u0635\u0641\u062d\u0647_\u0628\u0644\u0627\u06af_\u0628\u0627_\u0628\u06a9_\u0627\u0646\u062f_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0628\u0631\u0646\u062f_\u0628\u0627\u0637\u0644_\u0633\u0627\u0632\u06cc_\u06a9\u0634", "to": "prompt_blog_frontend_sync_and_default_cover_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "to": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u06f1_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc\u06cc_\u06a9\u0647_\u0631\u0646\u062f\u0631_\u0646\u0645\u06cc_\u0634\u0648\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "to": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u06f2_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "to": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u06f3_\u062a\u0623\u062e\u06cc\u0631_\u062a\u0627_\u06cc\u06a9_\u0633\u0627\u0639\u062a_\u062f\u0631_\u0646\u0645\u0627\u06cc\u0634_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_\u0627\u062f\u0645\u06cc\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "to": "prompt_blog_frontend_sync_and_default_cover_\u0645\u0634\u06a9\u0644_\u06f4_\u0627\u0633\u062a\u0627\u06cc\u0644_\u0645\u062d\u062a\u0648\u0627\u06cc_ckeditor_\u062d\u0630\u0641_\u0645\u06cc_\u0634\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_blog_frontend_sync_and_default_cover_\u06f1_\u0633\u0627\u062e\u062a_\u062a\u0635\u0648\u06cc\u0631_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u0628\u0631\u0646\u062f\u062f\u0627\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_blog_frontend_sync_and_default_cover_\u06f2_\u06cc\u06a9_\u0645\u0646\u0628\u0639_\u0648\u0627\u062d\u062f_\u0628\u0631\u0627\u06cc_fallback_\u062a\u0635\u0648\u06cc\u0631_\u0628\u0644\u0627\u06af", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_blog_frontend_sync_and_default_cover_\u06f3_\u0631\u0646\u062f\u0631_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u06af\u0645_\u0634\u062f\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_blog_frontend_sync_and_default_cover_\u06f4_\u0627\u0633\u062a\u0627\u06cc\u0644_\u0645\u062d\u062a\u0648\u0627\u06cc_\u0645\u0642\u0627\u0644\u0647_sanitizer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_blog_frontend_sync_and_default_cover_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_blog_frontend_sync_and_default_cover_\u06f5_webhook_\u0628\u0627\u0637\u0644_\u0633\u0627\u0632\u06cc_\u06a9\u0634_\u0645\u0635\u0631\u0641_\u06a9\u0646\u0646\u062f\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06a9_\u0627\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware", "to": "prompt_booking_locations_day_aware_\u0646\u0645\u0627\u06cc\u0634_\u0645\u062d\u0644_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0645\u0627\u0646_\u0631\u0648\u0632", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0646\u0645\u0627\u06cc\u0634_\u0645\u062d\u0644_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0645\u0627\u0646_\u0631\u0648\u0632", "to": "prompt_booking_locations_day_aware_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0646\u0645\u0627\u06cc\u0634_\u0645\u062d\u0644_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0645\u0627\u0646_\u0631\u0648\u0632", "to": "prompt_booking_locations_day_aware_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0646\u0645\u0627\u06cc\u0634_\u0645\u062d\u0644_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0645\u0627\u0646_\u0631\u0648\u0632", "to": "prompt_booking_locations_day_aware_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_api_\u0628\u0639\u062f_\u0627\u0632_\u062a\u063a\u06cc\u06cc\u0631_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0646\u0645\u0627\u06cc\u0634_\u0645\u062d\u0644_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0645\u0627\u0646_\u0631\u0648\u0632", "to": "prompt_booking_locations_day_aware_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0646\u0645\u0627\u06cc\u0634_\u0645\u062d\u0644_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0645\u0627\u0646_\u0631\u0648\u0632", "to": "prompt_booking_locations_day_aware_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0646\u0645\u0627\u06cc\u0634_\u0645\u062d\u0644_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0645\u0627\u0646_\u0631\u0648\u0632", "to": "prompt_booking_locations_day_aware_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0646\u0645\u0627\u06cc\u0634_\u0645\u062d\u0644_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0645\u0627\u0646_\u0631\u0648\u0632", "to": "prompt_booking_locations_day_aware_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0646\u0645\u0627\u06cc\u0634_\u0645\u062d\u0644_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0645\u0627\u0646_\u0631\u0648\u0632", "to": "prompt_booking_locations_day_aware_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_booking_locations_day_aware_\u0641\u0647\u0631\u0633\u062a_\u0645\u062d\u0644_\u0647\u0627_\u0648\u0627\u0628\u0633\u062a\u0647_\u0628\u0647_\u0631\u0648\u0632_\u0646\u06cc\u0633\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_booking_locations_day_aware_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0647\u0645\u0647_\u0622\u062f\u0631\u0633_\u0647\u0627_\u0631\u0627_\u0646\u0634\u0627\u0646_\u0645\u06cc_\u062f\u0647\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_day_aware_\u06f1_date_\u062f\u0631_\u0644\u0627\u06cc\u0647_\u0633\u0631\u0648\u06cc\u0633", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_day_aware_\u06f2_\u0648\u0627\u06a9\u0634\u06cc_\u062f\u0648\u0628\u0627\u0631\u0647_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631_\u0631\u0648\u0632", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_day_aware_\u06f3_ui_\u06a9\u0627\u0631\u062a_\u0647\u0627\u06cc_\u0645\u062d\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_day_aware_\u06f4_\u062a\u0642\u0648\u06cc\u0645_\u0645\u0627\u0647_\u0647\u0645_per_location_\u0627\u0633\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_day_aware_\u06f5_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0641\u0642\u0637_\u0645\u062d\u0644_\u0647\u0627\u06cc_\u0642\u0627\u0628\u0644_\u0631\u0632\u0631\u0648", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_day_aware_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_day_aware_\u06f6_\u0644\u06cc\u0646\u06a9_cta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context", "to": "prompt_booking_locations_multi_context_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_\u062c\u0631\u06cc\u0627\u0646_\u0631\u0632\u0631\u0648", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_\u062c\u0631\u06cc\u0627\u0646_\u0631\u0632\u0631\u0648", "to": "prompt_booking_locations_multi_context_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_\u062c\u0631\u06cc\u0627\u0646_\u0631\u0632\u0631\u0648", "to": "prompt_booking_locations_multi_context_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_\u062c\u0631\u06cc\u0627\u0646_\u0631\u0632\u0631\u0648", "to": "prompt_booking_locations_multi_context_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_api_\u0622\u0645\u0627\u062f\u0647_\u0645\u0635\u0631\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_\u062c\u0631\u06cc\u0627\u0646_\u0631\u0632\u0631\u0648", "to": "prompt_booking_locations_multi_context_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_\u062c\u0631\u06cc\u0627\u0646_\u0631\u0632\u0631\u0648", "to": "prompt_booking_locations_multi_context_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_\u062c\u0631\u06cc\u0627\u0646_\u0631\u0632\u0631\u0648", "to": "prompt_booking_locations_multi_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_\u062c\u0631\u06cc\u0627\u0646_\u0631\u0632\u0631\u0648", "to": "prompt_booking_locations_multi_context_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0645\u0637\u0628_\u0634\u062e\u0635\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062f\u0631_\u062c\u0631\u06cc\u0627\u0646_\u0631\u0632\u0631\u0648", "to": "prompt_booking_locations_multi_context_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_api_\u0622\u0645\u0627\u062f\u0647_\u0645\u0635\u0631\u0641", "to": "prompt_booking_locations_multi_context_endpoint_\u062c\u062f\u06cc\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_api_\u0622\u0645\u0627\u062f\u0647_\u0645\u0635\u0631\u0641", "to": "prompt_booking_locations_multi_context_\u067e\u0627\u0631\u0627\u0645\u062a\u0631_\u062c\u062f\u06cc\u062f_\u0631\u0648\u06cc_endpoint\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_booking_locations_multi_context_\u06f1_\u0647\u06cc\u0686_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u0627\u06cc_\u0645\u062d\u0644_\u0631\u0627_\u0646\u0645\u06cc_\u0641\u0631\u0633\u062a\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_booking_locations_multi_context_\u06f2_\u0622\u062f\u0631\u0633_\u0641\u0642\u0637_\u0646\u0645\u0627\u06cc\u0634\u06cc_\u0627\u0633\u062a_\u0648_\u0627\u0632_doctor_address_\u0645\u06cc_\u0622\u06cc\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_booking_locations_multi_context_\u06f3_payload_\u0646\u0647\u0627\u06cc\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_booking_locations_multi_context_\u06f4_state_\u0645\u0631\u062f\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_booking_locations_multi_context_\u06f5_json_ld_\u0628\u062f\u0648\u0646_\u0633\u0627\u0639\u0627\u062a_\u06a9\u0627\u0631\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_multi_context_\u06f1_\u0644\u0627\u06cc\u0647_\u0633\u0631\u0648\u06cc\u0633_services_response_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_multi_context_\u06f2_state_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644_components_appointment_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_multi_context_\u06f3_\u062a\u0639\u0648\u06cc\u0636_\u0645\u062d\u0644_\u0628\u0627\u06cc\u062f_state_\u0648\u0627\u0628\u0633\u062a\u0647_\u0631\u0627_\u067e\u0627\u06a9_\u06a9\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_multi_context_\u06f4_ui_\u0627\u0646\u062a\u062e\u0627\u0628_\u0645\u062d\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_multi_context_\u06f5_\u062d\u0645\u0644_\u0645\u062d\u0644_\u062a\u0627_\u0644\u062d\u0638\u0647_\u062b\u0628\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_multi_context_\u06f6_\u0644\u06cc\u0646\u06a9_\u067e\u0630\u06cc\u0631\u06cc_\u0648_seo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_locations_multi_context_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_locations_multi_context_\u06f7_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0648_\u062d\u0627\u0644\u062a_\u0647\u0627\u06cc_\u0645\u0631\u0632\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow", "to": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "to": "prompt_booking_lock_patient_flow_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "to": "prompt_booking_lock_patient_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "to": "prompt_booking_lock_patient_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_backend_\u0628\u0639\u062f_\u0627\u0632_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0645\u062a\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "to": "prompt_booking_lock_patient_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "to": "prompt_booking_lock_patient_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "to": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "to": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "to": "prompt_booking_lock_patient_flow_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_booking_lock_patient_flow_detail_index_js_\u062f\u06a9\u0645\u0647_\u06cc_mock_\u0628\u0631\u0627\u06cc_\u0641\u0631\u062f_\u062f\u06cc\u06af\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_booking_lock_patient_flow_paying_index_js_\u062a\u0627\u06cc\u0645\u0631_\u0645\u062d\u0644\u06cc_\u06f6\u06f0\u06f0_\u062b\u0627\u0646\u06cc\u0647_\u0642\u0644\u0627\u0628\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_booking_lock_patient_flow_submitdata_js_\u0628\u062f\u0646\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0628\u062f\u0648\u0646_\u0628\u06cc\u0645\u0627\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_lock_patient_flow_\u06f1_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_detail_index_js_form_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_lock_patient_flow_\u06f2_\u0627\u0631\u0633\u0627\u0644_patient_\u0648_for_self_\u062f\u0631_submitdata_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_lock_patient_flow_\u06f3_\u062a\u0627\u06cc\u0645\u0631_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0631_\u0645\u0628\u0646\u0627\u06cc_expires_at_paying_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_lock_patient_flow_\u06f4_ux_\u0646\u0647\u0627\u06cc\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_send_representation", "to": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "to": "prompt_booking_send_representation_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "to": "prompt_booking_send_representation_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "to": "prompt_booking_send_representation_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "to": "prompt_booking_send_representation_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "to": "prompt_booking_send_representation_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "to": "prompt_booking_send_representation_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "to": "prompt_booking_send_representation_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_send_representation_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_send_representation_\u06f1_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0642\u0631\u0627\u0631_\u062f\u0627\u062f\u0646_city_id_\u062f\u0631_\u06a9\u0644\u0627\u06cc\u0646\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_booking_send_representation_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_booking_send_representation_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_city_id_\u0628\u0647_payload_\u0631\u0632\u0631\u0648", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_json_seo_fields", "to": "prompt_city_json_seo_fields_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_city_json_\u0627\u0641\u0632\u0648\u062f\u0646_title_\u0628\u0631\u0646\u062f_\u062f\u0627\u0631_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u0648_keywords", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_json_seo_fields_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_city_json_\u0627\u0641\u0632\u0648\u062f\u0646_title_\u0628\u0631\u0646\u062f_\u062f\u0627\u0631_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u0648_keywords", "to": "prompt_city_json_seo_fields_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_json_seo_fields_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_city_json_\u0627\u0641\u0632\u0648\u062f\u0646_title_\u0628\u0631\u0646\u062f_\u062f\u0627\u0631_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u0648_keywords", "to": "prompt_city_json_seo_fields_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_json_seo_fields_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_city_json_\u0627\u0641\u0632\u0648\u062f\u0646_title_\u0628\u0631\u0646\u062f_\u062f\u0627\u0631_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u0648_keywords", "to": "prompt_city_json_seo_fields_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_json_seo_fields_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_city_json_\u0627\u0641\u0632\u0648\u062f\u0646_title_\u0628\u0631\u0646\u062f_\u062f\u0627\u0631_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u0648_keywords", "to": "prompt_city_json_seo_fields_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_json_seo_fields_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_city_json_\u0627\u0641\u0632\u0648\u062f\u0646_title_\u0628\u0631\u0646\u062f_\u062f\u0627\u0631_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u0648_keywords", "to": "prompt_city_json_seo_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_json_seo_fields_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_city_json_\u0627\u0641\u0632\u0648\u062f\u0646_title_\u0628\u0631\u0646\u062f_\u062f\u0627\u0631_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u0648_keywords", "to": "prompt_city_json_seo_fields_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_json_seo_fields_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_city_json_\u0627\u0641\u0632\u0648\u062f\u0646_title_\u0628\u0631\u0646\u062f_\u062f\u0627\u0631_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u0648_keywords", "to": "prompt_city_json_seo_fields_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_json_seo_fields_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_city_json_seo_fields_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_title_\u0628\u0647_\u0647\u0631_\u06f3\u06f4_\u0631\u06a9\u0648\u0631\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_json_seo_fields_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_city_json_seo_fields_\u06f2_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u0647\u0631_\u06f3\u06f4_\u0631\u06a9\u0648\u0631\u062f_\u0627\u0633\u062a\u0627\u0631\u062a_\u0622\u067e\u06cc_seo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_json_seo_fields_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_city_json_seo_fields_\u06f3_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_keywords_\u0647\u0631_\u06f3\u06f4_\u0631\u06a9\u0648\u0631\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_json_seo_fields_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_city_json_seo_fields_\u06f4_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization", "to": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "to": "prompt_city_seo_optimization_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "to": "prompt_city_seo_optimization_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "to": "prompt_city_seo_optimization_\u0641\u0647\u0631\u0633\u062a_\u06f3\u06f4_\u0631\u06a9\u0648\u0631\u062f_\u0647\u0645\u0647_\u0628\u0627\u06cc\u062f_\u067e\u0631\u062f\u0627\u0632\u0634_\u0634\u0648\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "to": "prompt_city_seo_optimization_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "to": "prompt_city_seo_optimization_\u0646\u0642\u0634", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "to": "prompt_city_seo_optimization_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "to": "prompt_city_seo_optimization_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "to": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "to": "prompt_city_seo_optimization_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_city_seo_optimization_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_title_\u06cc\u06a9\u062a\u0627_\u0628\u0647_\u0647\u0631_\u0631\u06a9\u0648\u0631\u062f_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_city_seo_optimization_\u06f2_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_description_\u0645\u062a\u0627_\u062f\u06cc\u0633\u06a9\u0631\u06cc\u067e\u0634\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_city_seo_optimization_\u06f3_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_keywords", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_city_seo_optimization_\u06f4_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u06cc\u06a9\u062a\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_city_seo_optimization_\u06f5_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_footer_description_\u06cc\u06a9\u062a\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_city_seo_optimization_\u06f6_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0627\u06af\u0631_\u06a9\u0627\u0631\u0628\u0631_\u062e\u0648\u0627\u0633\u062a_\u0628\u0647\u0628\u0648\u062f_\u0641\u0646\u06cc_\u062f\u0631_layout_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_city_seo_optimization_\u06f7_\u0631\u06a9\u0648\u0631\u062f_\u0628\u0631\u0646\u062f_\u0627\u0635\u0644\u06cc_id_600", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_contact_info_fix", "to": "prompt_clinic_contact_info_fix_\u0627\u0635\u0644\u0627\u062d_\u0628\u062e\u0634_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062a\u0645\u0627\u0633_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_contact_info_fix_\u0627\u0635\u0644\u0627\u062d_\u0628\u062e\u0634_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062a\u0645\u0627\u0633_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_contact_info_fix_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_contact_info_fix_\u0627\u0635\u0644\u0627\u062d_\u0628\u062e\u0634_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062a\u0645\u0627\u0633_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_contact_info_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_contact_info_fix_\u0627\u0635\u0644\u0627\u062d_\u0628\u062e\u0634_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062a\u0645\u0627\u0633_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_contact_info_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_contact_info_fix_\u0627\u0635\u0644\u0627\u062d_\u0628\u062e\u0634_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062a\u0645\u0627\u0633_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_contact_info_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_contact_info_fix_\u0627\u0635\u0644\u0627\u062d_\u0628\u062e\u0634_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062a\u0645\u0627\u0633_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_contact_info_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_contact_info_fix_\u0627\u0635\u0644\u0627\u062d_\u0628\u062e\u0634_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062a\u0645\u0627\u0633_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_contact_info_fix_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_contact_info_fix_\u0627\u0635\u0644\u0627\u062d_\u0628\u062e\u0634_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062a\u0645\u0627\u0633_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_contact_info_fix_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_contact_info_fix_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_clinic_contact_info_fix_\u06f1_\u0633\u0627\u062e\u062a_helper_\u0645\u0634\u062a\u0631\u06a9_\u0628\u0631\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062a\u0645\u0627\u0633_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_contact_info_fix_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_clinic_contact_info_fix_\u06f2_\u0627\u0635\u0644\u0627\u062d_detail_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_contact_info_fix_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_clinic_contact_info_fix_\u06f3_\u062c\u0644\u0648\u06af\u06cc\u0631\u06cc_\u0627\u0632_\u06a9\u0627\u0631\u062a_\u062e\u0627\u0644\u06cc_\u062f\u0631_contact_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_contact_info_fix_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_clinic_contact_info_fix_\u06f4_\u062a\u06a9\u0645\u06cc\u0644_json_ld_\u062f\u0631_app_clinic_slug_page_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_seo_schema_knowledge_panel", "to": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_seo_schema_knowledge_panel_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_seo_schema_knowledge_panel_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_seo_schema_knowledge_panel_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_seo_schema_knowledge_panel_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_api_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "to": "prompt_clinic_seo_schema_knowledge_panel_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_clinic_seo_schema_knowledge_panel_\u06f1_\u0628\u0647\u0628\u0648\u062f_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_clinic_seo_schema_knowledge_panel_\u06f2_\u062a\u0627\u0628\u0639_\u06a9\u0645\u06a9\u06cc_computeclinicrating", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_clinic_seo_schema_knowledge_panel_\u06f3_\u0633\u0627\u062e\u062a_json_ld_\u06a9\u0627\u0645\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_clinic_seo_schema_knowledge_panel_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_breadcrumb", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api", "to": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "to": "prompt_connect_panel_dashboard_to_api_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "to": "prompt_connect_panel_dashboard_to_api_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "to": "prompt_connect_panel_dashboard_to_api_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "to": "prompt_connect_panel_dashboard_to_api_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "to": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "to": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "to": "prompt_connect_panel_dashboard_to_api_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_connect_panel_dashboard_to_api_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0627\u0645\u0644\u0627_mock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_connect_panel_dashboard_to_api_\u0644\u0627\u06cc\u0647_\u06cc_api_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_services_response_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_connect_panel_dashboard_to_api_\u067e\u0646\u0644_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0627\u0633\u062a_\u0648\u0644\u06cc_\u0646\u0627\u062f\u06cc\u062f\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_connect_panel_dashboard_to_api_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062a\u0648\u0627\u0628\u0639_representation_dashboard_\u0628\u0647_services_response_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_connect_panel_dashboard_to_api_\u06f2_\u0648\u0635\u0644_\u06a9\u0631\u062f\u0646_header_\u0648_userdetail_\u067e\u0646\u0644_\u0628\u0647_representationinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_connect_panel_dashboard_to_api_\u06f3_\u0635\u0641\u062d\u0647_\u06cc_dashboard_\u067e\u0646\u0644_\u0628\u0627_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_connect_panel_dashboard_to_api_\u06f4_\u0635\u0641\u062d\u0627\u062a_turns_\u0648_user_account_\u0648_add_doctor_\u067e\u0646\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_connect_panel_dashboard_to_api_\u06f5_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0627_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front", "to": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "to": "prompt_currency_toman_display_front_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "to": "prompt_currency_toman_display_front_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "to": "prompt_currency_toman_display_front_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "to": "prompt_currency_toman_display_front_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "to": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "to": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "to": "prompt_currency_toman_display_front_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_currency_toman_display_front_app_dashboard_page_js_\u062a\u0628\u062f\u06cc\u0644_\u062f\u0633\u062a\u06cc_\u0646\u0627\u0647\u0645\u0627\u0647\u0646\u06af", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_currency_toman_display_front_app_payment_uuid_page_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_currency_toman_display_front_components_appointment_paying_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_currency_toman_display_front_\u06f1_helper_\u0645\u0631\u06a9\u0632\u06cc_lib_money_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_currency_toman_display_front_\u06f2_paying_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_currency_toman_display_front_\u06f3_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_currency_toman_display_front_\u06f4_\u0635\u0641\u062d\u0647_\u0646\u062a\u06cc\u062c\u0647_\u067e\u0631\u062f\u0627\u062e\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_currency_toman_display_front_\u06f5_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0631\u06cc\u0627\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data", "to": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "to": "prompt_dashboard_tabs_real_data_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "to": "prompt_dashboard_tabs_real_data_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "to": "prompt_dashboard_tabs_real_data_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "to": "prompt_dashboard_tabs_real_data_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "to": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "to": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "to": "prompt_dashboard_tabs_real_data_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_dashboard_tabs_real_data_\u0630\u062e\u06cc\u0631\u0647_\u062f\u0631_detailuser_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_dashboard_tabs_real_data_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_backend_\u0627\u0632_user_profile_md_\u0648_entity_toarray", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_dashboard_tabs_real_data_\u0645\u067e\u06cc\u0646\u06af_\u063a\u0644\u0637_\u0628\u06cc\u0645\u0647_\u062f\u0631_information_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_dashboard_tabs_real_data_\u06f1_\u0645\u067e\u06cc\u0646\u06af_\u062f\u0631\u0633\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0647\u0646\u06af\u0627\u0645_\u0644\u0648\u062f_information_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_dashboard_tabs_real_data_\u06f2_\u062a\u0623\u06cc\u06cc\u062f_\u0630\u062e\u06cc\u0631\u0647_\u0633\u0648\u0627\u0628\u0642_\u067e\u0632\u0634\u06a9\u06cc_other", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_dashboard_tabs_real_data_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u062a\u0628_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627_\u0648_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_dashboard_tabs_real_data_\u06f4_\u062a\u0628_\u0647\u0627\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0648_\u067e\u06cc\u0627\u0645_\u0647\u0627_\u0628\u062f\u0648\u0646_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_map_claim_modal", "to": "prompt_doctor_map_claim_modal_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647\u0628\u0648\u062f_\u0645\u0648\u062f\u0627\u0644_claim_\u06a9\u067e\u0686\u0627_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_map_claim_modal_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647\u0628\u0648\u062f_\u0645\u0648\u062f\u0627\u0644_claim_\u06a9\u067e\u0686\u0627_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "to": "prompt_doctor_map_claim_modal_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_map_claim_modal_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647\u0628\u0648\u062f_\u0645\u0648\u062f\u0627\u0644_claim_\u06a9\u067e\u0686\u0627_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "to": "prompt_doctor_map_claim_modal_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_map_claim_modal_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647\u0628\u0648\u062f_\u0645\u0648\u062f\u0627\u0644_claim_\u06a9\u067e\u0686\u0627_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "to": "prompt_doctor_map_claim_modal_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_map_claim_modal_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647\u0628\u0648\u062f_\u0645\u0648\u062f\u0627\u0644_claim_\u06a9\u067e\u0686\u0627_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "to": "prompt_doctor_map_claim_modal_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_map_claim_modal_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647\u0628\u0648\u062f_\u0645\u0648\u062f\u0627\u0644_claim_\u06a9\u067e\u0686\u0627_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "to": "prompt_doctor_map_claim_modal_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0628\u0647\u0628\u0648\u062f_\u0645\u0648\u062f\u0627\u0644_claim_\u0645\u062a\u0646_\u0645\u0648\u0628\u0627\u06cc\u0644_\u06a9\u067e\u0686\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_map_claim_modal_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647\u0628\u0648\u062f_\u0645\u0648\u062f\u0627\u0644_claim_\u06a9\u067e\u0686\u0627_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "to": "prompt_doctor_map_claim_modal_\u0648\u0638\u06cc\u0641\u0647_\u06f3_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_map_claim_modal_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647\u0628\u0648\u062f_\u0645\u0648\u062f\u0627\u0644_claim_\u06a9\u067e\u0686\u0627_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "to": "prompt_doctor_map_claim_modal_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_map_claim_modal_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", "to": "prompt_doctor_map_claim_modal_\u0631\u0627\u0647_\u062d\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_map_claim_modal_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0642\u0634\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", "to": "prompt_doctor_map_claim_modal_\u0631\u06cc\u0634\u0647_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign", "to": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "to": "prompt_doctor_poster_redesign_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "to": "prompt_doctor_poster_redesign_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "to": "prompt_doctor_poster_redesign_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "to": "prompt_doctor_poster_redesign_\u0646\u0642\u0634", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "to": "prompt_doctor_poster_redesign_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "to": "prompt_doctor_poster_redesign_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "to": "prompt_doctor_poster_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "to": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "to": "prompt_doctor_poster_redesign_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_poster_redesign_\u06f1_\u06a9\u0627\u0646\u0648\u0627\u0633_\u062b\u0627\u0628\u062a_\u0648_\u0628\u0627\u06a9\u06cc\u0641\u06cc\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_poster_redesign_\u06f2_\u0633\u06cc\u0633\u062a\u0645_\u0628\u0635\u0631\u06cc_\u0628\u0647_\u0639\u0646\u0648\u0627\u0646_ui_ux", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_poster_redesign_\u06f3_\u0647\u062f\u0631_\u0628\u0631\u0646\u062f_\u0644\u0648\u06af\u0648_\u0627\u0644\u0632\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_poster_redesign_\u06f4_\u0628\u062f\u0646\u0647_\u0628\u062e\u0634_\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc_\u0628\u0627_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0633\u0631\u0631\u06cc\u0632", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_poster_redesign_\u06f5_\u0641\u0648\u062a\u0631_qr_cta_\u0648\u0627\u062a\u0631\u0645\u0627\u0631\u06a9_\u0644\u0648\u06af\u0648", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_poster_redesign_\u06f6_\u062d\u0641\u0638_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u067e\u0627\u06cc\u067e_\u0644\u0627\u06cc\u0646_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations", "to": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0639\u0627\u0644_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u0632_booking_locations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0639\u0627\u0644_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u0632_booking_locations", "to": "prompt_doctor_profile_booking_state_from_locations_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0639\u0627\u0644_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u0632_booking_locations", "to": "prompt_doctor_profile_booking_state_from_locations_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0639\u0627\u0644_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u0632_booking_locations", "to": "prompt_doctor_profile_booking_state_from_locations_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0639\u0627\u0644_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u0632_booking_locations", "to": "prompt_doctor_profile_booking_state_from_locations_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0639\u0627\u0644_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u0632_booking_locations", "to": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0639\u0627\u0644_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u0632_booking_locations", "to": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0641\u0639\u0627\u0644_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u0632_booking_locations", "to": "prompt_doctor_profile_booking_state_from_locations_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_doctor_profile_booking_state_from_locations_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_components_doctor_appointmentlist_index_js_20_24", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_doctor_profile_booking_state_from_locations_\u06a9\u0627\u0631\u062a_\u062f\u0633\u06a9\u062a\u0627\u067e_components_doctor_appointmentlist_itemappointment_js_10", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_profile_booking_state_from_locations_\u06f1_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_bookinglocations_\u0628\u0647_appointmentlist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_profile_booking_state_from_locations_\u06f2_\u0642\u0627\u0639\u062f\u0647_\u0648\u0627\u062d\u062f_\u0641\u0639\u0627\u0644_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_profile_booking_state_from_locations_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_profile_booking_state_from_locations_\u06f3_\u06a9\u0627\u0631\u062a_\u0644\u06cc\u0633\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0628\u062f\u0648\u0646_\u062a\u063a\u06cc\u06cc\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel", "to": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "to": "prompt_doctor_seo_schema_knowledge_panel_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "to": "prompt_doctor_seo_schema_knowledge_panel_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "to": "prompt_doctor_seo_schema_knowledge_panel_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "to": "prompt_doctor_seo_schema_knowledge_panel_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "to": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "to": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "to": "prompt_doctor_seo_schema_knowledge_panel_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_doctor_seo_schema_knowledge_panel_app_doctor_slug_page_js_schema_\u0641\u0639\u0644\u06cc_\u0646\u0627\u0642\u0635", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_doctor_seo_schema_knowledge_panel_app_sitemap_js_\u0641\u0639\u0644\u0627_\u06cc\u06a9_\u0641\u0627\u06cc\u0644_\u0648\u0627\u062d\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_seo_schema_knowledge_panel_\u06f1_schema_org_\u06a9\u0627\u0645\u0644_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_seo_schema_knowledge_panel_\u06f2_sitemap_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u062f\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_seo_schema_knowledge_panel_\u06f3_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_robots_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_doctor_seo_schema_knowledge_panel_\u06f4_\u06a9\u0627\u0631\u062a_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u062f\u0631_ui_\u0645\u0634\u0631\u0648\u0637_\u0628\u0647_\u0648\u062c\u0648\u062f_\u0641\u06cc\u0644\u062f_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow", "to": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_appointment_booking_flow_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_appointment_booking_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_appointment_booking_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_appointment_booking_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_appointment_booking_flow_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "to": "prompt_fix_appointment_booking_flow_\u06f1_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627_get_api_v1_appointment_slots_doctor_uuid_uuid_date_y_m_d_public", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "to": "prompt_fix_appointment_booking_flow_\u06f2_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a_post_api_v1_appointment_auth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "to": "prompt_fix_appointment_booking_flow_\u06f3_\u067e\u0631\u062f\u0627\u062e\u062a_post_api_v1_payment_appointment_auth_\u0628\u0627\u06cc\u062f_\u0645\u0627\u0644\u06a9_\u0646\u0648\u0628\u062a_\u0628\u0627\u0634\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "to": "prompt_fix_appointment_booking_flow_\u06f4_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_get_api_v1_user_profile_uuid_auth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "to": "prompt_fix_appointment_booking_flow_\u06f5_interceptor_\u0645\u0647\u0645_services_api_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "to": "prompt_fix_appointment_booking_flow_app_appointment_doctorid_page_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "to": "prompt_fix_appointment_booking_flow_app_component_date_datetime_hours_list_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "to": "prompt_fix_appointment_booking_flow_app_component_date_datetime_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "to": "prompt_fix_appointment_booking_flow_components_appointment_detail_submitdata_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "to": "prompt_fix_appointment_booking_flow_components_appointment_index_js_\u062e\u0648\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "to": "prompt_fix_appointment_booking_flow_components_appointment_paying_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "to": "prompt_fix_appointment_booking_flow_services_response_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_appointment_booking_flow_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u0644\u0627\u06cc\u0647_\u06cc_request_\u062f\u0631_services_response_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_appointment_booking_flow_\u06f2_\u0627\u0635\u0644\u0627\u062d_app_appointment_doctorid_page_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_appointment_booking_flow_\u06f3_\u0645\u067e_\u06a9\u0631\u062f\u0646_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0633\u0644\u0627\u062a_\u0628\u0647_ui_datetime_index_js_hours_list_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_appointment_booking_flow_\u06f4_\u0627\u0635\u0644\u0627\u062d_\u0633\u0627\u062e\u062a_\u0646\u0648\u0628\u062a_components_appointment_detail_submitdata_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_appointment_booking_flow_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u067e\u0631\u062f\u0627\u062e\u062a_components_appointment_paying_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_appointment_booking_flow_\u06f6_\u0627\u0635\u0644\u0627\u062d_\u062e\u0648\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_components_appointment_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow", "to": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "to": "prompt_fix_appointment_payment_flow_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "to": "prompt_fix_appointment_payment_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "to": "prompt_fix_appointment_payment_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "to": "prompt_fix_appointment_payment_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "to": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "to": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "to": "prompt_fix_appointment_payment_flow_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f1_submitdata_\u062e\u0648\u0627\u0646\u062f\u0646_\u0646\u062a\u06cc\u062c\u0647_\u06cc_\u0646\u0648\u0628\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f2_paying_frontend_address_\u0648_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f3_payment_uuid_page_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_appointment_payment_flow_\u06f1_\u0631\u0641\u0639_double_nest_\u062f\u0631_submitdata_\u0634\u0645\u0627\u0631\u0646\u062f\u0647_appointmentid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_appointment_payment_flow_\u06f2_\u0627\u0635\u0644\u0627\u062d_frontend_address_\u0648_redirect_url_\u062f\u0631_paying", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_appointment_payment_flow_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_getpaymentconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_appointment_payment_flow_\u06f4_\u0627\u0635\u0644\u0627\u062d_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u062a\u06cc\u062c\u0647_app_payment_uuid_page_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_appointment_payment_flow_\u06f5_\u0635\u0641\u062d\u0647_\u06cc_\u0648\u0627\u0633\u0637_\u0646\u062a\u06cc\u062c\u0647_\u0627\u06af\u0631_\u06af\u0632\u06cc\u0646\u0647_\u0627\u0644\u0641_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_appointment_payment_flow_\u06f6_\u062a\u062b\u0628\u06cc\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0627\u0646\u062c\u0627\u0645_\u0634\u062f\u0647_\u062a\u0623\u06cc\u06cc\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists", "to": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "to": "prompt_fix_dashboard_uuid_and_lists_\u0631\u06cc\u0634\u0647_\u06cc_\u0627\u0635\u0644\u06cc_\u06a9\u0648\u06a9\u06cc_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "to": "prompt_fix_dashboard_uuid_and_lists_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "to": "prompt_fix_dashboard_uuid_and_lists_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "to": "prompt_fix_dashboard_uuid_and_lists_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "to": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "to": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "to": "prompt_fix_dashboard_uuid_and_lists_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_dashboard_uuid_and_lists_app_dashboard_page_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_dashboard_uuid_and_lists_head_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_dashboard_uuid_and_lists_services_response_js_url\u0647\u0627\u06cc_\u0646\u0627\u0645\u0648\u062c\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_dashboard_uuid_and_lists_\u06f1_\u06a9\u0648\u06a9\u06cc_uuid_uuid_\u06a9\u0627\u0631\u0628\u0631_sendreq_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_dashboard_uuid_and_lists_\u06f2_\u06af\u0627\u0631\u062f_null_\u062f\u0631_head_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_dashboard_uuid_and_lists_\u06f3_\u0627\u0635\u0644\u0627\u062d_url\u0647\u0627_\u062f\u0631_services_response_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_dashboard_uuid_and_lists_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_caller\u0647\u0627_turns_transactions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_dashboard_uuid_and_lists_\u06f5_\u062f\u0631_\u0635\u0648\u0631\u062a_\u0644\u0632\u0648\u0645_app_dashboard_page_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled", "to": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "to": "prompt_fix_doctor_free_turn_disabled_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "to": "prompt_fix_doctor_free_turn_disabled_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "to": "prompt_fix_doctor_free_turn_disabled_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "to": "prompt_fix_doctor_free_turn_disabled_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "to": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "to": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "to": "prompt_fix_doctor_free_turn_disabled_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_fix_doctor_free_turn_disabled_app_component_itemdoctor_js_\u062d\u0648\u0627\u0644\u06cc_\u062e\u0637_\u06f8\u06f4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_fix_doctor_free_turn_disabled_components_doctor_appointmentlist_index_js_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062e\u0637_\u06f1\u06f6_\u06f3\u06f4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_fix_doctor_free_turn_disabled_components_doctor_appointmentlist_itemappointment_js_\u062e\u0637_\u06f3\u06f6_\u06f5\u06f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_doctor_free_turn_disabled_\u06f1_\u06a9\u0627\u0631\u062a_\u0644\u06cc\u0633\u062a_app_component_itemdoctor_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_doctor_free_turn_disabled_\u06f2_\u0628\u0627\u06a9\u0633_\u062f\u0633\u06a9\u062a\u0627\u067e_components_doctor_appointmentlist_itemappointment_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_doctor_free_turn_disabled_\u06f3_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_components_doctor_appointmentlist_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image", "to": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "to": "prompt_fix_doctor_poster_download_image_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "to": "prompt_fix_doctor_poster_download_image_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "to": "prompt_fix_doctor_poster_download_image_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "to": "prompt_fix_doctor_poster_download_image_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "to": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "to": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "to": "prompt_fix_doctor_poster_download_image_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_fix_doctor_poster_download_image_components_doctor_detaildoctor_list_js_\u0628\u062e\u0634_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_fix_doctor_poster_download_image_components_doctor_poster_imageprofile_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_fix_doctor_poster_download_image_components_doctor_poster_qrimg_js_\u062e\u0644\u0627\u0635\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_doctor_poster_download_image_\u06f1_\u0645\u0646\u062a\u0638\u0631_\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc_\u06a9\u0627\u0645\u0644_\u0647\u0645\u0647_\u06cc_img_\u0647\u0627_\u0628\u0645\u0627\u0646_\u0642\u0628\u0644_\u0627\u0632_html2canvas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_doctor_poster_download_image_\u06f2_\u0627\u0637\u0645\u06cc\u0646\u0627\u0646_\u0627\u0632_\u0622\u0645\u0627\u062f\u0647_\u0628\u0648\u062f\u0646_qr_\u0642\u0628\u0644_\u0627\u0632_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_doctor_poster_download_image_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u0627_html2canvas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_doctor_poster_download_image_\u06f4_ux_\u062f\u06a9\u0645\u0647_\u06cc_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance", "to": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "to": "prompt_fix_doctors_filter_performance_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "to": "prompt_fix_doctors_filter_performance_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "to": "prompt_fix_doctors_filter_performance_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "to": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "to": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "to": "prompt_fix_doctors_filter_performance_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f1_\u0645\u0648\u062f\u0627\u0644_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u062f\u06cc\u0631_\u0628\u0633\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f2_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u06a9\u0627\u0631_\u0646\u0645\u06cc_\u06a9\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f3_\u06a9\u0646\u062f\u06cc_\u06a9\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_doctors_filter_performance_\u06f1_\u0641\u06cc\u06a9\u0633_\u0628\u0633\u062a\u0646_\u0633\u0631\u06cc\u0639_\u0645\u0648\u062f\u0627\u0644_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_doctors_filter_performance_\u06f2_\u0641\u06cc\u06a9\u0633_\u0628\u0633\u062a\u0646_\u0633\u0631\u06cc\u0639_\u0645\u0648\u062f\u0627\u0644_\u0641\u06cc\u0644\u062a\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_doctors_filter_performance_\u06f3_\u0641\u06cc\u06a9\u0633_crash_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0646\u06af\u0627\u0645_clear", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_doctors_filter_performance_\u06f4_\u0641\u06cc\u06a9\u0633_type_mismatch_\u062f\u0631_filterlist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_doctors_filter_performance_\u06f5_\u0628\u0631\u0631\u0633\u06cc_\u06a9\u0646\u062f\u06cc_\u06a9\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state", "to": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "to": "prompt_fix_header_logged_state_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "to": "prompt_fix_header_logged_state_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "to": "prompt_fix_header_logged_state_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "to": "prompt_fix_header_logged_state_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "to": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "to": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "to": "prompt_fix_header_logged_state_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_header_logged_state_header_content_js_\u062a\u0635\u0645\u06cc\u0645_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_prop_\u0633\u0631\u0648\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_header_logged_state_stlayout_js_\u0645\u0642\u062f\u0627\u0631_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u0648\u06a9\u06cc_\u0633\u0631\u0648\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_header_logged_state_\u06a9\u0648\u06a9\u06cc_\u0647\u0627_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0633\u062a_\u0645\u06cc_\u0634\u0648\u0646\u062f_sendreq_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_header_logged_state_\u06f1_\u062a\u0634\u062e\u06cc\u0635_\u0632\u0646\u062f\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u062f\u0631_header_content_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_header_logged_state_\u06f2_\u0648\u0627\u06a9\u0646\u0634_\u0628\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u0633\u06cc\u0631_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0648\u0644\u06cc_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_header_logged_state_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_logout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs", "to": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "to": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "to": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "to": "prompt_fix_login_bugs_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "to": "prompt_fix_login_bugs_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "to": "prompt_fix_login_bugs_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", "to": "prompt_fix_login_bugs_\u0639\u0644\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", "to": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", "to": "prompt_fix_login_bugs_\u0645\u0634\u06a9\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "to": "prompt_fix_login_bugs_\u0639\u0644\u062a_\u0627\u062d\u062a\u0645\u0627\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "to": "prompt_fix_login_bugs_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "to": "prompt_fix_login_bugs_\u0645\u0634\u06a9\u0644_39", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "to": "prompt_fix_login_bugs_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "to": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", "to": "prompt_fix_login_bugs_\u06f1_\u0641\u06cc\u06a9\u0633_\u0628\u0627\u06af_\u06f1_\u0642\u0637\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", "to": "prompt_fix_login_bugs_\u06f2_\u0628\u0631\u0631\u0633\u06cc_userinfo_cookie", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", "to": "prompt_fix_login_bugs_\u06f3_\u0628\u0631\u0631\u0633\u06cc_endpoint_oauth_token_refresh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", "to": "prompt_fix_login_bugs_\u06f4_redirect_\u0628\u0639\u062f_\u0627\u0632_login", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo", "to": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_login_session_userinfo_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_login_session_userinfo_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_login_session_userinfo_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_login_session_userinfo_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_login_session_userinfo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_login_session_userinfo_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_login_session_userinfo_sendreq_js_getinfo_\u0628\u0627\u06af_\u062f\u0627\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_fix_login_session_userinfo_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_get_oauth_userinfo_\u0627\u0632_clinicpro_docs_api_auth_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_login_session_userinfo_\u06f1_\u062e\u0648\u0627\u0646\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631_\u0627\u0632_res_data_\u0648_\u0633\u062a_\u06a9\u0631\u062f\u0646_\u06a9\u0648\u06a9\u06cc_\u0628\u0627_\u0634\u06cc\u0621_\u06a9\u0627\u0631\u0628\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_login_session_userinfo_\u06f2_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0645\u0635\u0631\u0641_\u06a9\u0646\u0646\u062f\u0647_\u0647\u0627\u06cc_username", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_login_session_userinfo_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u0639\u062f\u0645_\u0645\u0627\u0646\u062f\u0646_\u0628\u06cc_\u0635\u062f\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_my_appointments_status_filter", "to": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_my_appointments_status_filter_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_my_appointments_status_filter_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_my_appointments_status_filter_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_my_appointments_status_filter_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_my_appointments_status_filter_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_my_appointments_status_filter_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "to": "prompt_fix_my_appointments_status_filter_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_my_appointments_status_filter_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_my_appointments_status_filter_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0634\u062a_\u062a\u0628_\u0647\u0627_\u062f\u0631_head_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_my_appointments_status_filter_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_my_appointments_status_filter_\u06f2_\u062a\u0623\u06cc\u06cc\u062f_\u062c\u0631\u06cc\u0627\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_payment_gateway_flow", "to": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "to": "prompt_fix_payment_gateway_flow_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "to": "prompt_fix_payment_gateway_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "to": "prompt_fix_payment_gateway_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "to": "prompt_fix_payment_gateway_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "to": "prompt_fix_payment_gateway_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "to": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "to": "prompt_fix_payment_gateway_flow_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_payment_gateway_flow_\u06f1_\u062e\u0648\u0627\u0646\u062f\u0646_gateways_\u0627\u0632_config_\u0648_\u0646\u06af\u0647_\u062f\u0627\u0631\u06cc_\u062f\u0631_state", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_payment_gateway_flow_\u06f2_\u067e\u0631_\u06a9\u0631\u062f\u0646_select_\u0627\u0632_gateways_\u0641\u0639\u0627\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_payment_gateway_flow_\u06f3_\u0627\u0631\u0633\u0627\u0644_\u062f\u0631\u06af\u0627\u0647_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f\u0647_\u0648_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u062f\u06a9\u0645\u0647_\u062f\u0631_\u0646\u0628\u0648\u062f_\u062f\u0631\u06af\u0627\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_sitemap_build_fetch_failed", "to": "prompt_fix_sitemap_build_fetch_failed_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_typeerror_fetch_failed_\u062f\u0631_sitemap_\u0647\u0646\u06af\u0627\u0645_\u062f\u06cc\u067e\u0644\u0648\u06cc_docker_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_sitemap_build_fetch_failed_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_typeerror_fetch_failed_\u062f\u0631_sitemap_\u0647\u0646\u06af\u0627\u0645_\u062f\u06cc\u067e\u0644\u0648\u06cc_docker_build", "to": "prompt_fix_sitemap_build_fetch_failed_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_sitemap_build_fetch_failed_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_typeerror_fetch_failed_\u062f\u0631_sitemap_\u0647\u0646\u06af\u0627\u0645_\u062f\u06cc\u067e\u0644\u0648\u06cc_docker_build", "to": "prompt_fix_sitemap_build_fetch_failed_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_sitemap_build_fetch_failed_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_typeerror_fetch_failed_\u062f\u0631_sitemap_\u0647\u0646\u06af\u0627\u0645_\u062f\u06cc\u067e\u0644\u0648\u06cc_docker_build", "to": "prompt_fix_sitemap_build_fetch_failed_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_sitemap_build_fetch_failed_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_typeerror_fetch_failed_\u062f\u0631_sitemap_\u0647\u0646\u06af\u0627\u0645_\u062f\u06cc\u067e\u0644\u0648\u06cc_docker_build", "to": "prompt_fix_sitemap_build_fetch_failed_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_sitemap_build_fetch_failed_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_typeerror_fetch_failed_\u062f\u0631_sitemap_\u0647\u0646\u06af\u0627\u0645_\u062f\u06cc\u067e\u0644\u0648\u06cc_docker_build", "to": "prompt_fix_sitemap_build_fetch_failed_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_sitemap_build_fetch_failed_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_typeerror_fetch_failed_\u062f\u0631_sitemap_\u0647\u0646\u06af\u0627\u0645_\u062f\u06cc\u067e\u0644\u0648\u06cc_docker_build", "to": "prompt_fix_sitemap_build_fetch_failed_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_sitemap_build_fetch_failed_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_typeerror_fetch_failed_\u062f\u0631_sitemap_\u0647\u0646\u06af\u0627\u0645_\u062f\u06cc\u067e\u0644\u0648\u06cc_docker_build", "to": "prompt_fix_sitemap_build_fetch_failed_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_sitemap_build_fetch_failed_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_sitemap_build_fetch_failed_\u06f1_\u0627\u062c\u0628\u0627\u0631_sitemap_\u0628\u0647_\u0631\u0646\u062f\u0631_\u062f\u0631_\u0632\u0645\u0627\u0646_\u0627\u062c\u0631\u0627_\u0646\u0647_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_sitemap_build_fetch_failed_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_sitemap_build_fetch_failed_\u06f2_\u0645\u0642\u0627\u0648\u0645_\u0633\u0627\u0632\u06cc_fetch_\u0628\u0627_timeout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_sitemap_build_fetch_failed_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_sitemap_build_fetch_failed_\u06f3_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0644\u0627\u06af_\u062a\u0645\u06cc\u0632\u062a\u0631_\u0628\u0631\u0627\u06cc_\u0634\u0628\u06a9\u0647_\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0646\u0628\u0648\u062f\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_token_storage_xss_headers", "to": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "to": "prompt_fix_token_storage_xss_headers_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "to": "prompt_fix_token_storage_xss_headers_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "to": "prompt_fix_token_storage_xss_headers_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "to": "prompt_fix_token_storage_xss_headers_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "to": "prompt_fix_token_storage_xss_headers_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "to": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "to": "prompt_fix_token_storage_xss_headers_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_token_storage_xss_headers_\u06f1_oauth_\u0633\u062a_\u06a9\u0648\u06a9\u06cc_\u062f\u0631_\u06cc\u06a9_route_handler_\u0633\u0631\u0648\u0631_\u0633\u0627\u06cc\u062f_c_2_h_3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_token_storage_xss_headers_\u06f2_\u0645\u062f\u06cc\u0631\u06cc\u062a_access_token_\u062f\u0631_memory_\u0628\u0647_\u062c\u0627\u06cc_\u06a9\u0648\u06a9\u06cc_js_c_2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_token_storage_xss_headers_\u06f3_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_sanitizer_\u0628\u0627_dompurify_c_3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_fix_token_storage_xss_headers_\u06f4_security_headers_\u062f\u0631_next_config_js_h_2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_global_rep_domain_site", "to": "prompt_global_rep_domain_site_\u0633\u0627\u06cc\u062a_\u062f\u0627\u0645\u0646\u0647_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062a\u0634\u062e\u06cc\u0635_\u062f\u0627\u0645\u0646\u0647_\u0641\u06cc\u0644\u062a\u0631_\u067e\u0632\u0634\u06a9\u0627\u0646_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_global_rep_domain_site_\u0633\u0627\u06cc\u062a_\u062f\u0627\u0645\u0646\u0647_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062a\u0634\u062e\u06cc\u0635_\u062f\u0627\u0645\u0646\u0647_\u0641\u06cc\u0644\u062a\u0631_\u067e\u0632\u0634\u06a9\u0627\u0646_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627", "to": "prompt_global_rep_domain_site_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_global_rep_domain_site_\u0633\u0627\u06cc\u062a_\u062f\u0627\u0645\u0646\u0647_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062a\u0634\u062e\u06cc\u0635_\u062f\u0627\u0645\u0646\u0647_\u0641\u06cc\u0644\u062a\u0631_\u067e\u0632\u0634\u06a9\u0627\u0646_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627", "to": "prompt_global_rep_domain_site_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_global_rep_domain_site_\u0633\u0627\u06cc\u062a_\u062f\u0627\u0645\u0646\u0647_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062a\u0634\u062e\u06cc\u0635_\u062f\u0627\u0645\u0646\u0647_\u0641\u06cc\u0644\u062a\u0631_\u067e\u0632\u0634\u06a9\u0627\u0646_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627", "to": "prompt_global_rep_domain_site_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_global_rep_domain_site_\u0633\u0627\u06cc\u062a_\u062f\u0627\u0645\u0646\u0647_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062a\u0634\u062e\u06cc\u0635_\u062f\u0627\u0645\u0646\u0647_\u0641\u06cc\u0644\u062a\u0631_\u067e\u0632\u0634\u06a9\u0627\u0646_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627", "to": "prompt_global_rep_domain_site_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_global_rep_domain_site_\u0633\u0627\u06cc\u062a_\u062f\u0627\u0645\u0646\u0647_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062a\u0634\u062e\u06cc\u0635_\u062f\u0627\u0645\u0646\u0647_\u0641\u06cc\u0644\u062a\u0631_\u067e\u0632\u0634\u06a9\u0627\u0646_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627", "to": "prompt_global_rep_domain_site_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_global_rep_domain_site_\u0633\u0627\u06cc\u062a_\u062f\u0627\u0645\u0646\u0647_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062a\u0634\u062e\u06cc\u0635_\u062f\u0627\u0645\u0646\u0647_\u0641\u06cc\u0644\u062a\u0631_\u067e\u0632\u0634\u06a9\u0627\u0646_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627", "to": "prompt_global_rep_domain_site_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_global_rep_domain_site_\u0633\u0627\u06cc\u062a_\u062f\u0627\u0645\u0646\u0647_\u0627\u062e\u062a\u0635\u0627\u0635\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062a\u0634\u062e\u06cc\u0635_\u062f\u0627\u0645\u0646\u0647_\u0641\u06cc\u0644\u062a\u0631_\u067e\u0632\u0634\u06a9\u0627\u0646_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u0647\u0627", "to": "prompt_global_rep_domain_site_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_global_rep_domain_site_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_global_rep_domain_site_\u06f1_\u062a\u0648\u0633\u0639\u0647_getstateinfo_repcontext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_global_rep_domain_site_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_global_rep_domain_site_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_domain_\u062f\u0631_\u0644\u06cc\u0633\u062a_\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_global_rep_domain_site_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_global_rep_domain_site_\u06f3_\u0645\u062a\u0627\u062f\u06cc\u062a\u0627_\u0648_\u0628\u0631\u0646\u062f\u06cc\u0646\u06af_\u062f\u0627\u0645\u0646\u0647_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy", "to": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "to": "prompt_liara_deploy_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "to": "prompt_liara_deploy_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "to": "prompt_liara_deploy_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "to": "prompt_liara_deploy_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "to": "prompt_liara_deploy_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "to": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "to": "prompt_liara_deploy_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_liara_deploy_\u06f1_\u062d\u0630\u0641_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_\u062a\u06a9\u0631\u0627\u0631\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_liara_deploy_\u06f2_\u062a\u0639\u06cc\u06cc\u0646_\u0646\u0633\u062e\u0647_node_\u062f\u0631_package_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_liara_deploy_\u06f3_\u0633\u0627\u062e\u062a_liara_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_liara_deploy_\u06f4_\u0633\u0627\u062e\u062a_liaraignore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_liara_deploy_\u06f5_\u0633\u062a_\u06a9\u0631\u062f\u0646_env_\u0631\u0648\u06cc_liara_\u0642\u0628\u0644_\u0627\u0632_\u0627\u0648\u0644\u06cc\u0646_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_liara_deploy_\u06f6_\u0627\u062a\u0635\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627\u06cc_\u0686\u0646\u062f_\u0634\u0647\u0631\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_liara_deploy_\u06f7_\u062f\u0631_\u0635\u0648\u0631\u062a_\u0646\u06cc\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u062f\u0627\u0645\u0646\u0647_backend_\u0628\u0647_images_remotepatterns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_liara_deploy_\u06f8_\u062f\u06cc\u067e\u0644\u0648\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_login_redirect_back", "to": "prompt_login_redirect_back_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u0635\u0641\u062d\u0647_\u0645\u0628\u062f\u0623_\u0628\u0639\u062f_\u0627\u0632_\u0644\u0627\u06af\u06cc\u0646_redirect_back", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_login_redirect_back_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u0635\u0641\u062d\u0647_\u0645\u0628\u062f\u0623_\u0628\u0639\u062f_\u0627\u0632_\u0644\u0627\u06af\u06cc\u0646_redirect_back", "to": "prompt_login_redirect_back_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_login_redirect_back_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u0635\u0641\u062d\u0647_\u0645\u0628\u062f\u0623_\u0628\u0639\u062f_\u0627\u0632_\u0644\u0627\u06af\u06cc\u0646_redirect_back", "to": "prompt_login_redirect_back_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_login_redirect_back_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u0635\u0641\u062d\u0647_\u0645\u0628\u062f\u0623_\u0628\u0639\u062f_\u0627\u0632_\u0644\u0627\u06af\u06cc\u0646_redirect_back", "to": "prompt_login_redirect_back_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_login_redirect_back_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u0635\u0641\u062d\u0647_\u0645\u0628\u062f\u0623_\u0628\u0639\u062f_\u0627\u0632_\u0644\u0627\u06af\u06cc\u0646_redirect_back", "to": "prompt_login_redirect_back_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_login_redirect_back_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u0635\u0641\u062d\u0647_\u0645\u0628\u062f\u0623_\u0628\u0639\u062f_\u0627\u0632_\u0644\u0627\u06af\u06cc\u0646_redirect_back", "to": "prompt_login_redirect_back_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_login_redirect_back_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u0635\u0641\u062d\u0647_\u0645\u0628\u062f\u0623_\u0628\u0639\u062f_\u0627\u0632_\u0644\u0627\u06af\u06cc\u0646_redirect_back", "to": "prompt_login_redirect_back_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_login_redirect_back_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u0635\u0641\u062d\u0647_\u0645\u0628\u062f\u0623_\u0628\u0639\u062f_\u0627\u0632_\u0644\u0627\u06af\u06cc\u0646_redirect_back", "to": "prompt_login_redirect_back_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_login_redirect_back_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_login_redirect_back_\u06f1_\u0644\u06cc\u0646\u06a9_\u0644\u0627\u06af\u06cc\u0646_\u0647\u062f\u0631_\u0627\u0635\u0644\u06cc_\u062a\u0631\u06cc\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_login_redirect_back_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_login_redirect_back_\u06f2_\u0646\u0627\u0648\u0628\u0631\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0635\u0641\u062d\u0647_\u067e\u0631\u062f\u0627\u062e\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_login_redirect_back_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_login_redirect_back_\u06f3_redirect_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_maintenance_mode_client", "to": "prompt_maintenance_mode_client_\u0646\u0645\u0627\u06cc\u0634_\u062d\u0627\u0644\u062a_\u062a\u0639\u0645\u06cc\u0631\u0627\u062a_maintenance_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_maintenance_mode_client_\u0646\u0645\u0627\u06cc\u0634_\u062d\u0627\u0644\u062a_\u062a\u0639\u0645\u06cc\u0631\u0627\u062a_maintenance_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_maintenance_mode_client_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_maintenance_mode_client_\u0646\u0645\u0627\u06cc\u0634_\u062d\u0627\u0644\u062a_\u062a\u0639\u0645\u06cc\u0631\u0627\u062a_maintenance_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_maintenance_mode_client_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_maintenance_mode_client_\u0646\u0645\u0627\u06cc\u0634_\u062d\u0627\u0644\u062a_\u062a\u0639\u0645\u06cc\u0631\u0627\u062a_maintenance_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_maintenance_mode_client_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_maintenance_mode_client_\u0646\u0645\u0627\u06cc\u0634_\u062d\u0627\u0644\u062a_\u062a\u0639\u0645\u06cc\u0631\u0627\u062a_maintenance_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_maintenance_mode_client_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_maintenance_mode_client_\u0646\u0645\u0627\u06cc\u0634_\u062d\u0627\u0644\u062a_\u062a\u0639\u0645\u06cc\u0631\u0627\u062a_maintenance_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_maintenance_mode_client_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_maintenance_mode_client_\u0646\u0645\u0627\u06cc\u0634_\u062d\u0627\u0644\u062a_\u062a\u0639\u0645\u06cc\u0631\u0627\u062a_maintenance_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_maintenance_mode_client_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_maintenance_mode_client_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_maintenance_mode_client_\u06f1_helper_\u0645\u0634\u062a\u0631\u06a9_\u062a\u0634\u062e\u06cc\u0635", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_maintenance_mode_client_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_maintenance_mode_client_\u06f2_\u062a\u0634\u062e\u06cc\u0635_client_side_\u062f\u0631_interceptor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_maintenance_mode_client_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_maintenance_mode_client_\u06f3_\u062a\u0634\u062e\u06cc\u0635_server_side_\u062f\u0631_fetchreq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_maintenance_mode_client_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_maintenance_mode_client_\u06f4_\u0635\u0641\u062d\u0647_maintenance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_maintenance_mode_client_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_maintenance_mode_client_\u06f5_\u062c\u0644\u0648\u06af\u06cc\u0631\u06cc_\u0627\u0632_\u062d\u0644\u0642\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city", "to": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "to": "prompt_nobat724_root_domain_not_city_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "to": "prompt_nobat724_root_domain_not_city_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "to": "prompt_nobat724_root_domain_not_city_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "to": "prompt_nobat724_root_domain_not_city_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "to": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "to": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "to": "prompt_nobat724_root_domain_not_city_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_nobat724_root_domain_not_city_app_doctors_page_js_\u0628\u0627\u06af_\u0646\u0648\u0639", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_nobat724_root_domain_not_city_app_specialties_page_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_nobat724_root_domain_not_city_components_doctors_index_js_\u0628\u0627\u06af_\u0646\u0648\u0639_\u062f\u0631_defaultfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_nobat724_root_domain_not_city_context_provinceprovider_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_nobat724_root_domain_not_city_lib_getstateinfo_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_nobat724_root_domain_not_city_services_response_js_\u0628\u062f\u0648\u0646_\u062a\u063a\u06cc\u06cc\u0631_\u0641\u0642\u0637_\u0628\u0631\u0627\u06cc_\u0645\u0631\u062c\u0639", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_root_domain_not_city_\u06f1_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0631\u06a9\u0632\u06cc_\u0631\u06cc\u0634\u0647_isroot_\u062f\u0631_getstateinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_root_domain_not_city_\u06f2_app_doctors_page_js_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647_city_\u062a\u0632\u0631\u06cc\u0642_\u0646\u0634\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_root_domain_not_city_\u06f3_components_doctors_index_js_defaultfilter_\u0628\u062f\u0648\u0646_\u0634\u0647\u0631_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_root_domain_not_city_\u06f4_context_provinceprovider_js_cityid_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647_null", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_root_domain_not_city_\u06f5_app_specialties_page_js_\u0648_\u0647\u0631_getspecialtydoctorcounts_\u0634\u0645\u0627\u0631\u0634_\u0645\u0628\u062a\u0646\u06cc_\u0628\u0631_\u0634\u0647\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_root_domain_not_city_\u06f6_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0627\u0644\u06af\u0648\u06cc_\u0628\u0627\u06af", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo", "to": "prompt_nobat724_search_fix_and_seo_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_nobat724_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_\u062c\u0633\u062a\u062c\u0648\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a_\u0648_\u062a\u062e\u0635\u0635", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_nobat724_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_\u062c\u0633\u062a\u062c\u0648\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a_\u0648_\u062a\u062e\u0635\u0635", "to": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f1_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_getoptionlabel_\u062f\u0631_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0646\u0627\u0645_\u067e\u0632\u0634\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_nobat724_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_\u062c\u0633\u062a\u062c\u0648\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a_\u0648_\u062a\u062e\u0635\u0635", "to": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f2_noindex_follow_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a_\u062c\u0633\u062a\u062c\u0648\u06cc_doctors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_nobat724_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_\u062c\u0633\u062a\u062c\u0648\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a_\u0648_\u062a\u062e\u0635\u0635", "to": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f3_\u0642\u0627\u0628\u0644_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0628\u0648\u062f\u0646_specialties_\u0648_\u0635\u0641\u062d\u0627\u062a_\u062a\u062e\u0635\u0635", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_nobat724_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_\u062c\u0633\u062a\u062c\u0648\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a_\u0648_\u062a\u062e\u0635\u0635", "to": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f4_\u0641\u0642\u0637_\u062a\u062e\u0635\u0635_\u0647\u0627\u06cc_\u0641\u0631\u0632\u0646\u062f_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0634\u0648\u0646\u062f_\u0648\u0627\u0644\u062f\u0647\u0627_noindex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_nobat724_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_\u062c\u0633\u062a\u062c\u0648\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a_\u0648_\u062a\u062e\u0635\u0635", "to": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0631\u0634\u06cc_\u0645\u062a\u0646_seo_\u0633\u0648\u0627\u0644\u0627\u062a_\u0645\u062a\u062f\u0627\u0648\u0644_\u062a\u062e\u0635\u0635_\u0628\u0631\u0646\u062f_\u0631\u0648\u06cc_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_nobat724_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_\u062c\u0633\u062a\u062c\u0648\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a_\u0648_\u062a\u062e\u0635\u0635", "to": "prompt_nobat724_search_fix_and_seo_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_nobat724_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_\u062c\u0633\u062a\u062c\u0648\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a_\u0648_\u062a\u062e\u0635\u0635", "to": "prompt_nobat724_search_fix_and_seo_\u0646\u06a9\u0627\u062a_\u06a9\u0644\u06cc_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u0627\u0635\u0644\u0627\u062d\u0627\u062a_nobat724_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_\u062c\u0633\u062a\u062c\u0648\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a_\u0648_\u062a\u062e\u0635\u0635", "to": "prompt_nobat724_search_fix_and_seo_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f1_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_getoptionlabel_\u062f\u0631_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0646\u0627\u0645_\u067e\u0632\u0634\u06a9", "to": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f1_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_getoptionlabel_\u062f\u0631_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0646\u0627\u0645_\u067e\u0632\u0634\u06a9", "to": "prompt_nobat724_search_fix_and_seo_\u0631\u0627\u0647_\u062d\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f1_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_getoptionlabel_\u062f\u0631_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0646\u0627\u0645_\u067e\u0632\u0634\u06a9", "to": "prompt_nobat724_search_fix_and_seo_\u0641\u0627\u06cc\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f1_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_getoptionlabel_\u062f\u0631_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0646\u0627\u0645_\u067e\u0632\u0634\u06a9", "to": "prompt_nobat724_search_fix_and_seo_\u0645\u0634\u06a9\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f1_\u0631\u0641\u0639_\u062e\u0637\u0627\u06cc_getoptionlabel_\u062f\u0631_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0646\u0627\u0645_\u067e\u0632\u0634\u06a9", "to": "prompt_nobat724_search_fix_and_seo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f2_noindex_follow_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a_\u062c\u0633\u062a\u062c\u0648\u06cc_doctors", "to": "prompt_nobat724_search_fix_and_seo_\u0631\u0627\u0647_\u062d\u0644_96", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f2_noindex_follow_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a_\u062c\u0633\u062a\u062c\u0648\u06cc_doctors", "to": "prompt_nobat724_search_fix_and_seo_\u0641\u0627\u06cc\u0644_75", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f2_noindex_follow_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a_\u062c\u0633\u062a\u062c\u0648\u06cc_doctors", "to": "prompt_nobat724_search_fix_and_seo_\u0646\u06a9\u062a\u0647_\u062d\u06cc\u0627\u062a\u06cc_\u0645\u0631\u0632_url_vs_\u0641\u06cc\u0644\u062a\u0631_\u0633\u0631\u0648\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f2_noindex_follow_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a_\u062c\u0633\u062a\u062c\u0648\u06cc_doctors", "to": "prompt_nobat724_search_fix_and_seo_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f2_noindex_follow_\u0628\u0631\u0627\u06cc_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a_\u062c\u0633\u062a\u062c\u0648\u06cc_doctors", "to": "prompt_nobat724_search_fix_and_seo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_79", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f3_\u0642\u0627\u0628\u0644_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0628\u0648\u062f\u0646_specialties_\u0648_\u0635\u0641\u062d\u0627\u062a_\u062a\u062e\u0635\u0635", "to": "prompt_nobat724_search_fix_and_seo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u0627\u06a9\u062b\u0631\u0627_\u062f\u0631\u0633\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f4_\u0641\u0642\u0637_\u062a\u062e\u0635\u0635_\u0647\u0627\u06cc_\u0641\u0631\u0632\u0646\u062f_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0634\u0648\u0646\u062f_\u0648\u0627\u0644\u062f\u0647\u0627_noindex", "to": "prompt_nobat724_search_fix_and_seo_\u0631\u0627\u0647_\u062d\u0644_160", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f4_\u0641\u0642\u0637_\u062a\u062e\u0635\u0635_\u0647\u0627\u06cc_\u0641\u0631\u0632\u0646\u062f_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0634\u0648\u0646\u062f_\u0648\u0627\u0644\u062f\u0647\u0627_noindex", "to": "prompt_nobat724_search_fix_and_seo_\u0641\u0627\u06cc\u0644_140", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f4_\u0641\u0642\u0637_\u062a\u062e\u0635\u0635_\u0647\u0627\u06cc_\u0641\u0631\u0632\u0646\u062f_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0634\u0648\u0646\u062f_\u0648\u0627\u0644\u062f\u0647\u0627_noindex", "to": "prompt_nobat724_search_fix_and_seo_\u0646\u06a9\u062a\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f4_\u0641\u0642\u0637_\u062a\u062e\u0635\u0635_\u0647\u0627\u06cc_\u0641\u0631\u0632\u0646\u062f_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0634\u0648\u0646\u062f_\u0648\u0627\u0644\u062f\u0647\u0627_noindex", "to": "prompt_nobat724_search_fix_and_seo_\u0647\u062f\u0641_133", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f4_\u0641\u0642\u0637_\u062a\u062e\u0635\u0635_\u0647\u0627\u06cc_\u0641\u0631\u0632\u0646\u062f_\u0627\u06cc\u0646\u062f\u06a9\u0633_\u0634\u0648\u0646\u062f_\u0648\u0627\u0644\u062f\u0647\u0627_noindex", "to": "prompt_nobat724_search_fix_and_seo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_144", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0631\u0634\u06cc_\u0645\u062a\u0646_seo_\u0633\u0648\u0627\u0644\u0627\u062a_\u0645\u062a\u062f\u0627\u0648\u0644_\u062a\u062e\u0635\u0635_\u0628\u0631\u0646\u062f_\u0631\u0648\u06cc_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647", "to": "prompt_nobat724_search_fix_and_seo_\u062e\u0648\u0627\u0633\u062a\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0631\u0634\u06cc_\u0645\u062a\u0646_seo_\u0633\u0648\u0627\u0644\u0627\u062a_\u0645\u062a\u062f\u0627\u0648\u0644_\u062a\u062e\u0635\u0635_\u0628\u0631\u0646\u062f_\u0631\u0648\u06cc_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647", "to": "prompt_nobat724_search_fix_and_seo_\u0631\u0627\u0647_\u062d\u0644_206", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0631\u0634\u06cc_\u0645\u062a\u0646_seo_\u0633\u0648\u0627\u0644\u0627\u062a_\u0645\u062a\u062f\u0627\u0648\u0644_\u062a\u062e\u0635\u0635_\u0628\u0631\u0646\u062f_\u0631\u0648\u06cc_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647", "to": "prompt_nobat724_search_fix_and_seo_\u0641\u0627\u06cc\u0644_185", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0631\u0634\u06cc_\u0645\u062a\u0646_seo_\u0633\u0648\u0627\u0644\u0627\u062a_\u0645\u062a\u062f\u0627\u0648\u0644_\u062a\u062e\u0635\u0635_\u0628\u0631\u0646\u062f_\u0631\u0648\u06cc_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647", "to": "prompt_nobat724_search_fix_and_seo_\u0646\u06a9\u0627\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_search_fix_and_seo_\u062a\u0633\u06a9_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0631\u0634\u06cc_\u0645\u062a\u0646_seo_\u0633\u0648\u0627\u0644\u0627\u062a_\u0645\u062a\u062f\u0627\u0648\u0644_\u062a\u062e\u0635\u0635_\u0628\u0631\u0646\u062f_\u0631\u0648\u06cc_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647", "to": "prompt_nobat724_search_fix_and_seo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_189", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite", "to": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "to": "prompt_nobat724_test_suite_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "to": "prompt_nobat724_test_suite_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "to": "prompt_nobat724_test_suite_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "to": "prompt_nobat724_test_suite_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "to": "prompt_nobat724_test_suite_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "to": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "to": "prompt_nobat724_test_suite_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_test_suite_\u06f1_\u0646\u0635\u0628_\u0627\u0628\u0632\u0627\u0631_\u0648_\u06a9\u0627\u0646\u0641\u06cc\u06af_runner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_test_suite_\u06f2_\u062a\u0633\u062a_\u062a\u0648\u0627\u0628\u0639_\u062e\u0627\u0644\u0635_utils_index_js_\u0627\u0648\u0644_\u0648_\u0633\u0646\u06af\u06cc\u0646_\u062a\u0631\u06cc\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_test_suite_\u06f3_\u062a\u0633\u062a_\u062e\u0627\u0644\u0635_lib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_test_suite_\u06f4_\u062a\u0634\u062e\u06cc\u0635_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc_mock_host_window_next_headers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_test_suite_\u06f5_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_test_suite_\u06f6_casl_context_\u0648_\u06cc\u06a9_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_nobat724_test_suite_\u06f7_\u0627\u062c\u0631\u0627_\u0648_\u0633\u0628\u0632\u06a9\u0631\u062f\u0646_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_otp_sms_site_name", "to": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "to": "prompt_otp_sms_site_name_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "to": "prompt_otp_sms_site_name_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "to": "prompt_otp_sms_site_name_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "to": "prompt_otp_sms_site_name_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "to": "prompt_otp_sms_site_name_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "to": "prompt_otp_sms_site_name_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "to": "prompt_otp_sms_site_name_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_otp_sms_site_name_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_otp_sms_site_name_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_domain_\u0628\u0647_wrapper_sendcode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_otp_sms_site_name_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_otp_sms_site_name_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0641\u0639\u0644\u06cc_\u0627\u0632_\u0635\u0641\u062d\u0647_\u0647\u0627\u06cc_\u0641\u0631\u0627\u062e\u0648\u0627\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_flow_frontend", "to": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "to": "prompt_payment_flow_frontend_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "to": "prompt_payment_flow_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "to": "prompt_payment_flow_frontend_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "to": "prompt_payment_flow_frontend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "to": "prompt_payment_flow_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "to": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "to": "prompt_payment_flow_frontend_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_payment_flow_frontend_\u06f1_\u062a\u062b\u0628\u06cc\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u062f\u0648\u0646_\u062a\u0645\u0627\u0633_\u0645\u0633\u062a\u0642\u06cc\u0645_\u0628\u0627_\u0628\u0627\u0646\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_payment_flow_frontend_\u06f2_\u0635\u0641\u062d\u0647_\u0646\u062a\u06cc\u062c\u0647_\u0628\u0631_\u0627\u0633\u0627\u0633_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_payment_flow_frontend_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u0634\u06a9\u0644_\u067e\u0627\u0633\u062e_getpayment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_payment_flow_frontend_\u06f4_ux_\u0627\u0646\u0635\u0631\u0627\u0641_\u0634\u06a9\u0633\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_single_flow_frontend", "to": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_payment_single_flow_frontend_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_payment_single_flow_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_payment_single_flow_frontend_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_payment_single_flow_frontend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_payment_single_flow_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "to": "prompt_payment_single_flow_frontend_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_payment_single_flow_frontend_\u06f1_\u062a\u0628\u062f\u06cc\u0644_\u062f\u06a9\u0645\u0647_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u062d\u0630\u0641_xhr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_payment_single_flow_frontend_\u06f2_\u062d\u0641\u0638_\u0627\u0646\u062a\u062e\u0627\u0628_\u062f\u0631\u06af\u0627\u0647_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u0646\u06cc\u0627\u0632", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_payment_single_flow_frontend_\u06f3_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_profile_birthday_send_direction_fix", "to": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "to": "prompt_profile_birthday_send_direction_fix_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "to": "prompt_profile_birthday_send_direction_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "to": "prompt_profile_birthday_send_direction_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "to": "prompt_profile_birthday_send_direction_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "to": "prompt_profile_birthday_send_direction_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "to": "prompt_profile_birthday_send_direction_fix_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "to": "prompt_profile_birthday_send_direction_fix_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_profile_birthday_send_direction_fix_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_profile_birthday_send_direction_fix_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u062c\u0647\u062a_\u062f\u0631_postdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring", "to": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "to": "prompt_rating_rich_ui_wiring_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "to": "prompt_rating_rich_ui_wiring_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637_ui_\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0648\u0635\u0644_\u0634\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "to": "prompt_rating_rich_ui_wiring_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06a9_\u0627\u0646\u062f_\u0645\u0631\u062c\u0639_\u0627\u0632_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0645\u062a\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "to": "prompt_rating_rich_ui_wiring_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "to": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "to": "prompt_rating_rich_ui_wiring_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_rating_rich_ui_wiring_\u06f1_fetch_\u062a\u062c\u0645\u06cc\u0639_\u0627\u0645\u062a\u06cc\u0627\u0632_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0648_\u0639\u0628\u0648\u0631_prop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_rating_rich_ui_wiring_\u06f2_\u0627\u062a\u0635\u0627\u0644_\u0686\u0627\u0631\u062a_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_chart_index_js_progressall_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_rating_rich_ui_wiring_\u06f3_\u0641\u0631\u0645_\u062b\u0628\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_form_js_modalanswer_js_content_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_rating_rich_ui_wiring_\u06f4_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u0648\u0627\u0642\u0639\u06cc_itemuser_js_services_response_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_rating_rich_ui_wiring_\u06f5_\u062b\u0628\u062a_\u067e\u0627\u0633\u062e_sendanswer_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_rating_rich_ui_wiring_\u06f6_wrapper\u0647\u0627_services_response_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit", "to": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_p10_\u0628\u0644\u0627\u06af_\u0634\u0647\u0631_\u0645\u062d\u0648\u0631_c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_p11_faqpage_schema_\u0648_\u0645\u062a\u0646_\u0645\u0642\u062f\u0645\u0647_\u06cc\u06a9\u062a\u0627_m1_m2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_p1_\u0628\u0631\u0631\u0633\u06cc_robots_txt_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_p2_\u0647\u0644\u067e\u0631\u0647\u0627\u06cc_\u0645\u0634\u062a\u0631\u06a9_\u0632\u06cc\u0631\u0633\u0627\u062e\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_p3_\u0631\u0641\u0639_noindex_\u0633\u06cc\u0633\u062a\u0645\u06cc\u06a9_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a_c5_\u0628\u062f\u062a\u0631\u06cc\u0646_\u0628\u0627\u06af", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_p4_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_canonical_\u0633\u0647_\u062f\u0633\u062a\u0647_\u062a\u0635\u0645\u06cc\u0645_pagination_c1_a_b_c_m3_b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_p5_\u0628\u0627\u0632\u0633\u0627\u0632\u06cc_sitemap_c2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_p6_\u0635\u0641\u062d\u0627\u062a_\u0645\u0648\u062c\u0648\u062f\u06cc\u062a_soft_404_\u0648_noindex_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u062e\u0627\u0644\u06cc_h4_h7", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_p7_\u0627\u0635\u0644\u0627\u062d_h1\u0647\u0627_\u062f\u0631_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a_h2_h3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_p8_\u06cc\u06a9\u067e\u0627\u0631\u0686\u0647_\u0633\u0627\u0632\u06cc_breadcrumb_h6", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_p9_\u0635\u0641\u062d\u0627\u062a_\u0641\u0631\u0648\u062f_\u062a\u062e\u0635\u0635_\u0648_\u062a\u062e\u0635\u0635_\u0634\u0647\u0631_c3_\u0628\u0632\u0631\u06af_\u062a\u0631\u06cc\u0646_\u0641\u0631\u0635\u062a_\u0631\u0634\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_\u0628\u0644\u0648\u06a9_\u0632\u0645\u06cc\u0646\u0647_\u0645\u0634\u062a\u0631\u06a9_\u0627\u0628\u062a\u062f\u0627\u06cc_\u0647\u0631_\u067e\u0631\u0627\u0645\u067e\u062a_\u06a9\u067e\u06cc_\u0634\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_\u062a\u0635\u0645\u06cc\u0645_\u0647\u0627\u06cc_\u0622\u06af\u0627\u0647\u0627\u0646\u0647_side_effect_\u0646\u06cc\u0633\u062a\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_\u0645\u0631\u062c\u0639_\u0641\u0647\u0631\u0633\u062a_\u06a9\u0627\u0645\u0644_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0632\u0646\u062f\u0647_\u0645\u0645\u06cc\u0632\u06cc_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_html_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u06a9\u0644\u06cc_\u0627\u0646\u062c\u0627\u0645_\u0634\u062f\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_\u06a9\u0627\u0631\u0647\u0627\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_critical_fixes_live_audit_\u062a\u0642\u0633\u06cc\u0645_\u0645\u0645\u06cc\u0632\u06cc_seo_\u0628\u0647_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0627\u06cc_\u06a9\u0648\u0686\u06a9_\u0627\u062c\u0631\u0627\u06cc\u06cc_nobat724", "to": "prompt_seo_critical_fixes_live_audit_\u06cc\u0627\u062f\u062f\u0627\u0634\u062a_\u0647\u0627\u06cc_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062f\u0631_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0647\u0631_\u0641\u0627\u0632_\u062a\u06a9\u0631\u0627\u0631_\u0634\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit", "to": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "to": "prompt_seo_performance_rendering_audit_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "to": "prompt_seo_performance_rendering_audit_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "to": "prompt_seo_performance_rendering_audit_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "to": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "to": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "to": "prompt_seo_performance_rendering_audit_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_seo_performance_rendering_audit_app_doctor_slug_page_js_\u062f\u0648_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u062a\u06a9\u0631\u0627\u0631\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_seo_performance_rendering_audit_app_doctors_page_js_\u0628\u062f\u0648\u0646_og_images_\u0628\u062f\u0648\u0646_cache", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_seo_performance_rendering_audit_lib_req_js_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_caching", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "to": "prompt_seo_performance_rendering_audit_middleware_js_\u0627\u062c\u0631\u0627_\u0631\u0648\u06cc_\u0647\u0645\u0647_\u0645\u0633\u06cc\u0631\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_performance_rendering_audit_\u06f1_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_fetch_\u0644\u0627\u06cc\u0647_\u06cc_axios_\u0628\u0627_fetch_\u0628\u0648\u0645\u06cc_next_js_\u06cc\u0627_wrapper_\u0631\u0648\u06cc_\u0622\u0646_\u0628\u0631\u0627\u06cc_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u0647\u0627\u06cc_server_component", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_performance_rendering_audit_\u06f2_\u062d\u0630\u0641_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u062a\u06a9\u0631\u0627\u0631\u06cc_\u062f\u0631_doctor_slug_page_js_\u0648_\u0627\u0644\u06af\u0648\u06cc_\u0645\u0634\u0627\u0628\u0647_\u062f\u0631_clinic_slug_blog_slug", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_performance_rendering_audit_\u06f3_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_middleware_js_\u0645\u062d\u062f\u0648\u062f_\u06a9\u0631\u062f\u0646_matcher_\u06cc\u0627_\u062d\u0630\u0641_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u063a\u06cc\u0631\u0636\u0631\u0648\u0631\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_performance_rendering_audit_\u06f4_\u0627\u0641\u0632\u0648\u062f\u0646_json_ld_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062f\u0631_app_layout_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_performance_rendering_audit_\u06f5_\u062a\u06a9\u0645\u06cc\u0644_og_image_twitter_image_\u062f\u0631_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_performance_rendering_audit_\u06f6_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_loading_js_\u0628\u0631\u0627\u06cc_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u062f\u0627\u062f\u0647_\u0645\u062d\u0648\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_performance_rendering_audit_\u06f7_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_error_js_\u062f\u0631_\u0633\u0637\u062d_root_\u0648_\u0628\u0631\u0627\u06cc_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u067e\u0631\u062a\u0642\u0627\u0636\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_performance_rendering_audit_\u06f8_\u0628\u0631\u0631\u0633\u06cc_app_sitemap_js_\u0648_app_robots_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_performance_rendering_audit_\u06f9_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0628\u0647_\u0635\u0648\u0631\u062a_\u062c\u062f\u0648\u0644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_post_deploy_verification", "to": "prompt_seo_post_deploy_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0632\u0646\u062f\u0647_\u0641\u06cc\u06a9\u0633_\u0647\u0627\u06cc_seo_\u0628\u0639\u062f_\u0627\u0632_deploy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_post_deploy_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0632\u0646\u062f\u0647_\u0641\u06cc\u06a9\u0633_\u0647\u0627\u06cc_seo_\u0628\u0639\u062f_\u0627\u0632_deploy", "to": "prompt_seo_post_deploy_verification_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_post_deploy_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0632\u0646\u062f\u0647_\u0641\u06cc\u06a9\u0633_\u0647\u0627\u06cc_seo_\u0628\u0639\u062f_\u0627\u0632_deploy", "to": "prompt_seo_post_deploy_verification_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_post_deploy_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0632\u0646\u062f\u0647_\u0641\u06cc\u06a9\u0633_\u0647\u0627\u06cc_seo_\u0628\u0639\u062f_\u0627\u0632_deploy", "to": "prompt_seo_post_deploy_verification_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_post_deploy_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0632\u0646\u062f\u0647_\u0641\u06cc\u06a9\u0633_\u0647\u0627\u06cc_seo_\u0628\u0639\u062f_\u0627\u0632_deploy", "to": "prompt_seo_post_deploy_verification_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_post_deploy_verification_\u062a\u0623\u06cc\u06cc\u062f_\u0632\u0646\u062f\u0647_\u0641\u06cc\u06a9\u0633_\u0647\u0627\u06cc_seo_\u0628\u0639\u062f_\u0627\u0632_deploy", "to": "prompt_seo_post_deploy_verification_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_post_deploy_verification_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_post_deploy_verification_\u06f1_\u067e\u06cc\u0634_\u0627\u0632_deploy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_post_deploy_verification_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_post_deploy_verification_\u06f2_\u0627\u062c\u0631\u0627\u06cc_\u0645\u0639\u06cc\u0627\u0631\u0647\u0627\u06cc_\u067e\u0630\u06cc\u0631\u0634_\u0631\u0648\u06cc_production", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_post_deploy_verification_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_post_deploy_verification_\u06f3_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0627\u062e\u062a\u0627\u0631\u06cc\u0627\u0641\u062a\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_post_deploy_verification_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_post_deploy_verification_\u06f4_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u0628\u0635\u0631\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_seo_post_deploy_verification_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_seo_post_deploy_verification_\u06f5_search_console", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking", "to": "prompt_service_based_online_booking_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0633\u0631\u0648\u06cc\u0633_service_first_booking", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0633\u0631\u0648\u06cc\u0633_service_first_booking", "to": "prompt_service_based_online_booking_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0633\u0631\u0648\u06cc\u0633_service_first_booking", "to": "prompt_service_based_online_booking_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0633\u0631\u0648\u06cc\u0633_service_first_booking", "to": "prompt_service_based_online_booking_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0633\u0631\u0648\u06cc\u0633_service_first_booking", "to": "prompt_service_based_online_booking_\u0647\u062f\u0641_spec_\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0633\u0631\u0648\u06cc\u0633_service_first_booking", "to": "prompt_service_based_online_booking_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0633\u0631\u0648\u06cc\u0633_service_first_booking", "to": "prompt_service_based_online_booking_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0633\u0631\u0648\u06cc\u0633_service_first_booking", "to": "prompt_service_based_online_booking_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_service_based_online_booking_fetch_\u0627\u0633\u0644\u0627\u062a_\u062b\u0627\u0628\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_service_based_online_booking_payload_\u0631\u0632\u0631\u0648_\u0628\u062f\u0648\u0646_\u0633\u0631\u0648\u06cc\u0633", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_service_based_online_booking_step_router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_service_based_online_booking_\u06f1_\u0633\u0631\u0648\u06cc\u0633_\u062f\u0631_response_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_service_based_online_booking_\u06f2_\u062a\u0634\u062e\u06cc\u0635_\u062d\u0627\u0644\u062a_\u067e\u0632\u0634\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_service_based_online_booking_\u06f3_\u0645\u0631\u062d\u0644\u0647_\u0627\u0646\u062a\u062e\u0627\u0628_\u0633\u0631\u0648\u06cc\u0633_\u0641\u0642\u0637_\u062d\u0627\u0644\u062a_\u0633\u0631\u0648\u06cc\u0633", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_service_based_online_booking_\u06f4_\u0646\u0645\u0627\u06cc\u0634_\u0641\u0642\u0637_\u0632\u0645\u0627\u0646_\u0647\u0627\u06cc_\u06a9\u0627\u0641\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_service_based_online_booking_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_service_based_online_booking_\u06f5_\u0642\u0641\u0644_\u0632\u0645\u0627\u0646_\u0647\u0646\u06af\u0627\u0645_\u062b\u0628\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_sitemap_simplify_with_city", "to": "prompt_sitemap_simplify_with_city_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_sitemap_\u0628\u0627_\u0634\u0647\u0631_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_\u067e\u0627\u0633\u062e_\u0622\u0633\u062a\u0627\u0646\u0647_sitemap_index", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_sitemap_simplify_with_city_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_sitemap_\u0628\u0627_\u0634\u0647\u0631_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_\u067e\u0627\u0633\u062e_\u0622\u0633\u062a\u0627\u0646\u0647_sitemap_index", "to": "prompt_sitemap_simplify_with_city_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_sitemap_simplify_with_city_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_sitemap_\u0628\u0627_\u0634\u0647\u0631_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_\u067e\u0627\u0633\u062e_\u0622\u0633\u062a\u0627\u0646\u0647_sitemap_index", "to": "prompt_sitemap_simplify_with_city_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_sitemap_simplify_with_city_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_sitemap_\u0628\u0627_\u0634\u0647\u0631_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_\u067e\u0627\u0633\u062e_\u0622\u0633\u062a\u0627\u0646\u0647_sitemap_index", "to": "prompt_sitemap_simplify_with_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_sitemap_simplify_with_city_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_sitemap_\u0628\u0627_\u0634\u0647\u0631_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_\u067e\u0627\u0633\u062e_\u0622\u0633\u062a\u0627\u0646\u0647_sitemap_index", "to": "prompt_sitemap_simplify_with_city_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_sitemap_simplify_with_city_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_sitemap_\u0628\u0627_\u0634\u0647\u0631_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_\u067e\u0627\u0633\u062e_\u0622\u0633\u062a\u0627\u0646\u0647_sitemap_index", "to": "prompt_sitemap_simplify_with_city_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_sitemap_simplify_with_city_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_sitemap_simplify_with_city_\u06f1_\u062d\u0630\u0641_\u06f3\u06f5_sweep_\u0648_\u06cc\u06a9\u0633\u0627\u0646_\u0633\u0627\u0632\u06cc_\u0628\u0627_\u0627\u0644\u06af\u0648\u06cc_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_sitemap_simplify_with_city_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_sitemap_simplify_with_city_\u06f2_\u0622\u0633\u062a\u0627\u0646\u0647_sitemap_index_\u0645\u0633\u062a\u0642\u0644_\u0627\u0632_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_sitemap_simplify_with_city_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_sitemap_simplify_with_city_\u06f3_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u0633\u0642\u0641_limit_\u0628\u0639\u062f_\u0627\u0632_\u062a\u063a\u06cc\u06cc\u0631_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_specialties_doctor_count_wire", "to": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "to": "prompt_specialties_doctor_count_wire_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "to": "prompt_specialties_doctor_count_wire_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "to": "prompt_specialties_doctor_count_wire_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "to": "prompt_specialties_doctor_count_wire_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "to": "prompt_specialties_doctor_count_wire_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "to": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "to": "prompt_specialties_doctor_count_wire_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_specialties_doctor_count_wire_\u06f1_wrapper_\u062f\u0631_services_response_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_specialties_doctor_count_wire_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_city_id_\u0627\u0632_\u0635\u0641\u062d\u0647_\u06cc_server_\u0628\u0647_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_specialties_doctor_count_wire_\u06f3_fetch_\u062f\u0631_components_specialties_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_specialties_doctor_count_wire_\u06f4_itemspecialties_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain", "to": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u0646\u0642\u0634", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u06f1_canonical_\u0647\u0645\u0647_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627\u06cc_\u0634\u0647\u0631\u06cc_\u0631\u0627_\u0646\u0627\u0628\u0648\u062f_\u0645\u06cc_\u06a9\u0646\u062f_critical", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u06f2_sitemap_high", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u06f3_robots_high", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u06f4_metadata_\u0633\u0637\u062d_\u0631\u06cc\u0634\u0647_high", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u06f5_\u0635\u0641\u062d\u0627\u062a_dynamic_soft_404_\u0648_metadata_\u0646\u0627\u0642\u0635_high", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u06f6_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a\u06cc_\u0648_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc_medium", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_technical_seo_audit_multidomain_\u06f7_security_headers_\u0648\u0636\u0639\u06cc\u062a_\u062e\u0648\u0628", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_technical_seo_audit_multidomain_\u06f0_\u062a\u0635\u0645\u06cc\u0645_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632_\u0647\u0645\u0647_\u0686\u06cc\u0632", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_technical_seo_audit_multidomain_\u06f1_metadatabase_\u0648_canonical_per_page", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_technical_seo_audit_multidomain_\u06f2_\u0627\u0635\u0644\u0627\u062d_sitemap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_technical_seo_audit_multidomain_\u06f3_\u0627\u0635\u0644\u0627\u062d_robots", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_technical_seo_audit_multidomain_\u06f4_json_ld_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_technical_seo_audit_multidomain_\u06f5_soft_404_\u0648_status_codes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_technical_seo_audit_multidomain_\u06f6_\u0645\u0645\u06cc\u0632\u06cc_rendering_\u0648_performance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_technical_seo_audit_multidomain_\u06f7_pagination_\u0648_\u0635\u0641\u062d\u0627\u062a_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_technical_seo_audit_multidomain_\u06f8_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0645\u0645\u06cc\u0632\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page", "to": "prompt_unclaimed_doctor_public_page_\u0635\u0641\u062d\u0647_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0632\u0634\u06a9_\u0631\u0641\u062a\u0627\u0631_\u0627\u0644\u0632\u0627\u0645\u06cc_\u0628\u0631\u0627\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u062f\u0648\u0646_\u0635\u0627\u062d\u0628_unclaimed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0635\u0641\u062d\u0647_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0632\u0634\u06a9_\u0631\u0641\u062a\u0627\u0631_\u0627\u0644\u0632\u0627\u0645\u06cc_\u0628\u0631\u0627\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u062f\u0648\u0646_\u0635\u0627\u062d\u0628_unclaimed", "to": "prompt_unclaimed_doctor_public_page_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0635\u0641\u062d\u0647_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0632\u0634\u06a9_\u0631\u0641\u062a\u0627\u0631_\u0627\u0644\u0632\u0627\u0645\u06cc_\u0628\u0631\u0627\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u062f\u0648\u0646_\u0635\u0627\u062d\u0628_unclaimed", "to": "prompt_unclaimed_doctor_public_page_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0635\u0641\u062d\u0647_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0632\u0634\u06a9_\u0631\u0641\u062a\u0627\u0631_\u0627\u0644\u0632\u0627\u0645\u06cc_\u0628\u0631\u0627\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u062f\u0648\u0646_\u0635\u0627\u062d\u0628_unclaimed", "to": "prompt_unclaimed_doctor_public_page_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0635\u0641\u062d\u0647_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0632\u0634\u06a9_\u0631\u0641\u062a\u0627\u0631_\u0627\u0644\u0632\u0627\u0645\u06cc_\u0628\u0631\u0627\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u062f\u0648\u0646_\u0635\u0627\u062d\u0628_unclaimed", "to": "prompt_unclaimed_doctor_public_page_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0635\u0641\u062d\u0647_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0632\u0634\u06a9_\u0631\u0641\u062a\u0627\u0631_\u0627\u0644\u0632\u0627\u0645\u06cc_\u0628\u0631\u0627\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u062f\u0648\u0646_\u0635\u0627\u062d\u0628_unclaimed", "to": "prompt_unclaimed_doctor_public_page_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0635\u0641\u062d\u0647_\u0639\u0645\u0648\u0645\u06cc_\u067e\u0632\u0634\u06a9_\u0631\u0641\u062a\u0627\u0631_\u0627\u0644\u0632\u0627\u0645\u06cc_\u0628\u0631\u0627\u06cc_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u062f\u0648\u0646_\u0635\u0627\u062d\u0628_unclaimed", "to": "prompt_unclaimed_doctor_public_page_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_unclaimed_doctor_public_page_\u06f1_\u0645\u062e\u0641\u06cc_\u06a9\u0631\u062f\u0646_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0631\u0636\u0627\u06cc\u062a_\u0628\u0631\u0627\u06cc_unclaimed_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_unclaimed_doctor_public_page_\u06f2_\u062d\u0630\u0641_json_ld_aggregaterating_\u0628\u0631\u0627\u06cc_unclaimed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_unclaimed_doctor_public_page_\u06f3_\u062a\u06cc\u06a9_\u062a\u0623\u06cc\u06cc\u062f_\u0641\u0642\u0637_\u0628\u0631\u0627\u06cc_claimed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_unclaimed_doctor_public_page_\u06f4_noindex_\u0631\u0648\u06cc_\u0635\u0641\u062d\u0647_\u06cc_unclaimed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_unclaimed_doctor_public_page_\u06f5_\u062e\u0627\u0631\u062c_\u06a9\u0631\u062f\u0646_unclaimed_\u0627\u0632_sitemap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_unclaimed_doctor_public_page_\u06f6_\u0628\u0631\u0686\u0633\u0628_\u062a\u0623\u06cc\u06cc\u062f\u0646\u0634\u062f\u0647_cta_\u062a\u0635\u0627\u062d\u0628", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_unclaimed_doctor_public_page_\u06f7_\u0645\u062e\u0641\u06cc_\u06a9\u0631\u062f\u0646_\u0628\u0644\u0648\u06a9_\u0647\u0627\u06cc_\u062e\u0627\u0644\u06cc_\u062f\u0631_\u062d\u0627\u0644\u062a_unclaimed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_unclaimed_doctor_public_page_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_unclaimed_doctor_public_page_\u06f8_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0627\u0648\u0644\u0648\u06cc\u062a_\u067e\u0627\u06cc\u06cc\u0646_\u0627\u0633\u0644\u0627\u06af_\u06a9\u0644\u06cc\u062f\u0648\u0627\u0698\u0647_\u062f\u0627\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16", "to": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "to": "prompt_upgrade_next_16_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "to": "prompt_upgrade_next_16_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "to": "prompt_upgrade_next_16_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "to": "prompt_upgrade_next_16_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "to": "prompt_upgrade_next_16_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "to": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "to": "prompt_upgrade_next_16_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_upgrade_next_16_\u06f1_\u0633\u0627\u062e\u062a_\u0628\u0631\u0646\u0686", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_upgrade_next_16_\u06f2_\u0627\u0631\u062a\u0642\u0627\u06cc_\u067e\u06a9\u06cc\u062c_\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_upgrade_next_16_\u06f3_\u062a\u0628\u062f\u06cc\u0644_middleware_js_\u0628\u0647_proxy_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_upgrade_next_16_\u06f4_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_next_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_upgrade_next_16_\u06f5_turbopack_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u062c\u062f\u06cc\u062f_dev_\u0648_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_upgrade_next_16_\u06f6_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_react_compiler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_upgrade_next_16_\u06f7_cache_components_\u0627\u0631\u0632\u06cc\u0627\u0628\u06cc_\u0645\u062d\u062a\u0627\u0637\u0627\u0646\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0645\u0634\u0631\u0648\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_upgrade_next_16_\u06f8_\u062a\u0645\u06cc\u0632\u06a9\u0627\u0631\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0646\u0641\u06cc\u06af_\u0646\u0633\u062e\u0647_16", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_upgrade_next_16_\u06f9_\u062a\u0633\u062a_\u0646\u0647\u0627\u06cc\u06cc_\u0648_commit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404", "to": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "to": "prompt_user_profile_no_404_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "to": "prompt_user_profile_no_404_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "to": "prompt_user_profile_no_404_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "to": "prompt_user_profile_no_404_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "to": "prompt_user_profile_no_404_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "to": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "to": "prompt_user_profile_no_404_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_user_profile_no_404_components_appointment_index_js_\u0647\u0646\u062f\u0644_\u0648\u06cc\u0698\u0647_\u06cc_404", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_user_profile_no_404_submitdata_js_\u0627\u0646\u062a\u062e\u0627\u0628_post_\u06cc\u0627_patch_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0648\u062c\u0648\u062f_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_user_profile_no_404_\u06f1_\u062a\u0623\u06cc\u06cc\u062f_\u062c\u0631\u06cc\u0627\u0646_\u0644\u0648\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_appointment_dashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_user_profile_no_404_\u06f2_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0647\u0646\u062f\u0644_404_\u0645\u0646\u0633\u0648\u062e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_user_profile_no_404_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_post_patch_\u062f\u0631_submitdata_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled", "to": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "to": "prompt_verify_past_slots_disabled_\u0632\u0645\u06cc\u0646\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "to": "prompt_verify_past_slots_disabled_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "to": "prompt_verify_past_slots_disabled_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "to": "prompt_verify_past_slots_disabled_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "to": "prompt_verify_past_slots_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "to": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "to": "prompt_verify_past_slots_disabled_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_verify_past_slots_disabled_hours_list_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "to": "prompt_verify_past_slots_disabled_\u0622\u0628\u062c\u06a9\u062a_\u0627\u0633\u0644\u0627\u062a_\u0627\u0632_adaptslots_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_verify_past_slots_disabled_\u06f1_\u06af\u0627\u0631\u062f_\u0632\u0645\u0627\u0646_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u06af\u0631\u06cc\u062f_\u0633\u0627\u0639\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_verify_past_slots_disabled_\u06f2_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0639\u062f\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0627\u0633\u0644\u0627\u062a_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_sendappo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", "to": "prompt_verify_past_slots_disabled_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u0631\u0641\u062a\u0627\u0631_end_to_end", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude", "to": "claude_claude_md", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_claude_md", "to": "claude_architecture_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_claude_md", "to": "claude_commands", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_claude_md", "to": "claude_environment_variables", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_architecture_overview", "to": "claude_authentication_authorization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_architecture_overview", "to": "claude_data_fetching", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_architecture_overview", "to": "claude_doctor_clinic_slugs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_architecture_overview", "to": "claude_json_ld_structured_data", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_architecture_overview", "to": "claude_key_data_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_architecture_overview", "to": "claude_multi_domain_system_core_concept", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_architecture_overview", "to": "claude_page_metadata_pattern", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_architecture_overview", "to": "claude_routing_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_architecture_overview", "to": "claude_styling", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_deployment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_troubleshooting", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u062a\u06cc\u0645_\u062a\u0648\u0633\u0639\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u0645\u0639\u0631\u0641\u06cc_\u067e\u0631\u0648\u0698\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u0645\u0646\u0627\u0628\u0639_\u0645\u0641\u06cc\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "to": "readme_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0645\u0639\u0631\u0641\u06cc_\u067e\u0631\u0648\u0698\u0647", "to": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "to": "readme_authentication_authorization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "to": "readme_development_tools", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "to": "readme_frontend_framework", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "to": "readme_state_management_data_fetching", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "to": "readme_ui_ux", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "to": "readme_\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647_\u0647\u0627\u06cc_\u062a\u062e\u0635\u0635\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", "to": "readme_1_multi_domain_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", "to": "readme_2_\u0633\u06cc\u0633\u062a\u0645_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", "to": "readme_3_\u0633\u06cc\u0633\u062a\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", "to": "readme_4_\u067e\u0646\u0644_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", "to": "readme_\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", "to": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_docker", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", "to": "readme_\u0646\u0635\u0628_\u0648_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", "to": "readme_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", "to": "readme_metadata_\u062f\u0627\u06cc\u0646\u0627\u0645\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", "to": "readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", "to": "readme_\u0641\u0631\u0622\u06cc\u0646\u062f_\u062a\u0634\u062e\u06cc\u0635_\u0634\u0647\u0631", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", "to": "readme_cookies_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0634\u062f\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", "to": "readme_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0648\u0631\u0648\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", "to": "readme_\u0645\u062d\u0627\u0641\u0638\u062a_\u0627\u0632_\u0645\u0633\u06cc\u0631\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", "to": "readme_\u0635\u0641\u062d\u0627\u062a_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", "to": "readme_\u0635\u0641\u062d\u0627\u062a_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", "to": "readme_\u0635\u0641\u062d\u0627\u062a_\u0639\u0645\u0648\u0645\u06cc_public", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", "to": "readme_\u067e\u0646\u0644_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc_protected", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", "to": "readme_feature_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", "to": "readme_layout_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "to": "readme_api_endpoints_services_response_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "to": "readme_helper_functions_helper_index_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "to": "readme_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_axios_services_api_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", "to": "readme_dark_mode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", "to": "readme_material_ui_theme", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", "to": "readme_tailwind_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_deployment", "to": "readme_build_production", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_deployment", "to": "readme_docker_compose", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_deployment", "to": "readme_docker_deployment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_deployment", "to": "readme_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc_\u0645\u062d\u06cc\u0637\u06cc_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "to": "readme_1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0635\u0641\u062d\u0647_\u062c\u062f\u06cc\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "to": "readme_2_\u0627\u0641\u0632\u0648\u062f\u0646_api_endpoint_\u062c\u062f\u06cc\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "to": "readme_3_\u0627\u0641\u0632\u0648\u062f\u0646_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u062c\u062f\u06cc\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "to": "readme_4_\u06a9\u0627\u0631_\u0628\u0627_\u062a\u0627\u0631\u06cc\u062e_\u0634\u0645\u0633\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "to": "readme_5_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_troubleshooting", "to": "readme_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0631\u0627\u06cc\u062c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Community 0", "count": 57}, {"cid": 1, "color": "#F28E2B", "label": "Community 1", "count": 13}, {"cid": 2, "color": "#E15759", "label": "Community 2", "count": 48}, {"cid": 3, "color": "#76B7B2", "label": "Community 3", "count": 19}, {"cid": 4, "color": "#59A14F", "label": "Community 4", "count": 45}, {"cid": 5, "color": "#EDC948", "label": "Community 5", "count": 48}, {"cid": 6, "color": "#B07AA1", "label": "Community 6", "count": 9}, {"cid": 7, "color": "#FF9DA7", "label": "Community 7", "count": 29}, {"cid": 8, "color": "#9C755F", "label": "Community 8", "count": 29}, {"cid": 9, "color": "#BAB0AC", "label": "Community 9", "count": 28}, {"cid": 10, "color": "#4E79A7", "label": "Community 10", "count": 26}, {"cid": 11, "color": "#F28E2B", "label": "Community 11", "count": 28}, {"cid": 12, "color": "#E15759", "label": "Community 12", "count": 21}, {"cid": 13, "color": "#76B7B2", "label": "Community 13", "count": 21}, {"cid": 14, "color": "#59A14F", "label": "Community 14", "count": 20}, {"cid": 15, "color": "#EDC948", "label": "Community 15", "count": 20}, {"cid": 16, "color": "#B07AA1", "label": "Community 16", "count": 11}, {"cid": 17, "color": "#FF9DA7", "label": "Community 17", "count": 19}, {"cid": 18, "color": "#9C755F", "label": "Community 18", "count": 18}, {"cid": 19, "color": "#BAB0AC", "label": "Community 19", "count": 18}, {"cid": 20, "color": "#4E79A7", "label": "Community 20", "count": 18}, {"cid": 21, "color": "#F28E2B", "label": "Community 21", "count": 13}, {"cid": 22, "color": "#E15759", "label": "Community 22", "count": 17}, {"cid": 23, "color": "#76B7B2", "label": "Community 23", "count": 17}, {"cid": 24, "color": "#59A14F", "label": "Community 24", "count": 17}, {"cid": 25, "color": "#EDC948", "label": "Community 25", "count": 17}, {"cid": 26, "color": "#B07AA1", "label": "Community 26", "count": 17}, {"cid": 27, "color": "#FF9DA7", "label": "Community 27", "count": 17}, {"cid": 28, "color": "#9C755F", "label": "Community 28", "count": 17}, {"cid": 29, "color": "#BAB0AC", "label": "Community 29", "count": 32}, {"cid": 30, "color": "#4E79A7", "label": "Community 30", "count": 16}, {"cid": 31, "color": "#F28E2B", "label": "Community 31", "count": 16}, {"cid": 32, "color": "#E15759", "label": "Community 32", "count": 16}, {"cid": 33, "color": "#76B7B2", "label": "Community 33", "count": 16}, {"cid": 34, "color": "#59A14F", "label": "Community 34", "count": 13}, {"cid": 35, "color": "#EDC948", "label": "Community 35", "count": 15}, {"cid": 36, "color": "#B07AA1", "label": "Community 36", "count": 15}, {"cid": 37, "color": "#FF9DA7", "label": "Community 37", "count": 15}, {"cid": 38, "color": "#9C755F", "label": "Community 38", "count": 15}, {"cid": 39, "color": "#BAB0AC", "label": "Community 39", "count": 14}, {"cid": 40, "color": "#4E79A7", "label": "Community 40", "count": 14}, {"cid": 41, "color": "#F28E2B", "label": "Community 41", "count": 14}, {"cid": 42, "color": "#E15759", "label": "Community 42", "count": 14}, {"cid": 43, "color": "#76B7B2", "label": "Community 43", "count": 14}, {"cid": 44, "color": "#59A14F", "label": "Community 44", "count": 14}, {"cid": 45, "color": "#EDC948", "label": "Community 45", "count": 11}, {"cid": 46, "color": "#B07AA1", "label": "Community 46", "count": 13}, {"cid": 47, "color": "#FF9DA7", "label": "Community 47", "count": 13}, {"cid": 48, "color": "#9C755F", "label": "Community 48", "count": 13}, {"cid": 49, "color": "#BAB0AC", "label": "Community 49", "count": 13}, {"cid": 50, "color": "#4E79A7", "label": "Community 50", "count": 13}, {"cid": 51, "color": "#F28E2B", "label": "Community 51", "count": 10}, {"cid": 52, "color": "#E15759", "label": "Community 52", "count": 12}, {"cid": 53, "color": "#76B7B2", "label": "Community 53", "count": 12}, {"cid": 54, "color": "#59A14F", "label": "Community 54", "count": 12}, {"cid": 55, "color": "#EDC948", "label": "Community 55", "count": 11}, {"cid": 56, "color": "#B07AA1", "label": "Community 56", "count": 11}, {"cid": 57, "color": "#FF9DA7", "label": "Community 57", "count": 11}, {"cid": 58, "color": "#9C755F", "label": "Community 58", "count": 11}, {"cid": 59, "color": "#BAB0AC", "label": "Community 59", "count": 11}, {"cid": 60, "color": "#4E79A7", "label": "Community 60", "count": 11}, {"cid": 61, "color": "#F28E2B", "label": "Community 61", "count": 11}, {"cid": 62, "color": "#E15759", "label": "Community 62", "count": 11}, {"cid": 63, "color": "#76B7B2", "label": "Community 63", "count": 11}, {"cid": 64, "color": "#59A14F", "label": "Community 64", "count": 11}, {"cid": 65, "color": "#EDC948", "label": "Community 65", "count": 10}, {"cid": 66, "color": "#B07AA1", "label": "Community 66", "count": 10}, {"cid": 67, "color": "#FF9DA7", "label": "Community 67", "count": 31}, {"cid": 68, "color": "#9C755F", "label": "Community 68", "count": 10}, {"cid": 69, "color": "#BAB0AC", "label": "Community 69", "count": 10}, {"cid": 70, "color": "#4E79A7", "label": "Community 70", "count": 23}, {"cid": 71, "color": "#F28E2B", "label": "Community 71", "count": 9}, {"cid": 72, "color": "#E15759", "label": "Community 72", "count": 16}, {"cid": 73, "color": "#76B7B2", "label": "Community 73", "count": 8}, {"cid": 74, "color": "#59A14F", "label": "Community 74", "count": 7}, {"cid": 75, "color": "#EDC948", "label": "Community 75", "count": 7}, {"cid": 76, "color": "#B07AA1", "label": "Community 76", "count": 15}, {"cid": 77, "color": "#FF9DA7", "label": "Community 77", "count": 6}, {"cid": 78, "color": "#9C755F", "label": "Community 78", "count": 6}, {"cid": 79, "color": "#BAB0AC", "label": "Community 79", "count": 12}, {"cid": 80, "color": "#4E79A7", "label": "Community 80", "count": 6}, {"cid": 81, "color": "#F28E2B", "label": "Community 81", "count": 16}, {"cid": 82, "color": "#E15759", "label": "Community 82", "count": 12}, {"cid": 83, "color": "#76B7B2", "label": "Community 83", "count": 12}, {"cid": 84, "color": "#59A14F", "label": "Community 84", "count": 6}, {"cid": 85, "color": "#EDC948", "label": "Community 85", "count": 2}, {"cid": 86, "color": "#B07AA1", "label": "Community 86", "count": 19}, {"cid": 87, "color": "#FF9DA7", "label": "Community 87", "count": 6}, {"cid": 88, "color": "#9C755F", "label": "Community 88", "count": 6}, {"cid": 89, "color": "#BAB0AC", "label": "Community 89", "count": 7}, {"cid": 90, "color": "#4E79A7", "label": "Community 90", "count": 5}, {"cid": 91, "color": "#F28E2B", "label": "Community 91", "count": 5}, {"cid": 92, "color": "#E15759", "label": "Community 92", "count": 5}, {"cid": 93, "color": "#76B7B2", "label": "Community 93", "count": 5}, {"cid": 94, "color": "#59A14F", "label": "Community 94", "count": 5}, {"cid": 95, "color": "#EDC948", "label": "Community 95", "count": 5}, {"cid": 96, "color": "#B07AA1", "label": "Community 96", "count": 5}, {"cid": 97, "color": "#FF9DA7", "label": "Community 97", "count": 5}, {"cid": 98, "color": "#9C755F", "label": "Community 98", "count": 4}, {"cid": 99, "color": "#BAB0AC", "label": "Community 99", "count": 18}, {"cid": 100, "color": "#4E79A7", "label": "Community 100", "count": 5}, {"cid": 101, "color": "#F28E2B", "label": "Community 101", "count": 4}, {"cid": 102, "color": "#E15759", "label": "Community 102", "count": 4}, {"cid": 103, "color": "#76B7B2", "label": "Community 103", "count": 4}, {"cid": 104, "color": "#59A14F", "label": "Community 104", "count": 4}, {"cid": 105, "color": "#EDC948", "label": "Community 105", "count": 4}, {"cid": 106, "color": "#B07AA1", "label": "Community 106", "count": 4}, {"cid": 107, "color": "#FF9DA7", "label": "Community 107", "count": 4}, {"cid": 108, "color": "#9C755F", "label": "Community 108", "count": 3}, {"cid": 109, "color": "#BAB0AC", "label": "Community 109", "count": 3}, {"cid": 110, "color": "#4E79A7", "label": "Community 110", "count": 3}, {"cid": 111, "color": "#F28E2B", "label": "Community 111", "count": 3}, {"cid": 112, "color": "#E15759", "label": "Community 112", "count": 3}, {"cid": 113, "color": "#76B7B2", "label": "Community 113", "count": 3}, {"cid": 114, "color": "#59A14F", "label": "Community 114", "count": 3}, {"cid": 115, "color": "#EDC948", "label": "Community 115", "count": 3}, {"cid": 116, "color": "#B07AA1", "label": "Community 116", "count": 3}, {"cid": 117, "color": "#FF9DA7", "label": "Community 117", "count": 4}, {"cid": 118, "color": "#9C755F", "label": "Community 118", "count": 3}, {"cid": 119, "color": "#BAB0AC", "label": "Community 119", "count": 3}, {"cid": 120, "color": "#4E79A7", "label": "Community 120", "count": 3}, {"cid": 121, "color": "#F28E2B", "label": "Community 121", "count": 3}, {"cid": 122, "color": "#E15759", "label": "Community 122", "count": 3}, {"cid": 123, "color": "#76B7B2", "label": "Community 123", "count": 3}, {"cid": 124, "color": "#59A14F", "label": "Community 124", "count": 3}, {"cid": 125, "color": "#EDC948", "label": "Community 125", "count": 14}, {"cid": 126, "color": "#B07AA1", "label": "Community 126", "count": 11}, {"cid": 127, "color": "#FF9DA7", "label": "Community 127", "count": 2}, {"cid": 128, "color": "#9C755F", "label": "Community 128", "count": 13}, {"cid": 129, "color": "#BAB0AC", "label": "Community 129", "count": 2}, {"cid": 130, "color": "#4E79A7", "label": "Community 130", "count": 2}, {"cid": 131, "color": "#F28E2B", "label": "Community 131", "count": 2}, {"cid": 132, "color": "#E15759", "label": "Community 132", "count": 2}, {"cid": 133, "color": "#76B7B2", "label": "Community 133", "count": 2}, {"cid": 134, "color": "#59A14F", "label": "Community 134", "count": 2}, {"cid": 135, "color": "#EDC948", "label": "Community 135", "count": 2}, {"cid": 136, "color": "#B07AA1", "label": "Community 136", "count": 2}, {"cid": 137, "color": "#FF9DA7", "label": "Community 137", "count": 2}, {"cid": 138, "color": "#9C755F", "label": "Community 138", "count": 2}, {"cid": 139, "color": "#BAB0AC", "label": "Community 139", "count": 2}, {"cid": 140, "color": "#4E79A7", "label": "Community 140", "count": 6}, {"cid": 141, "color": "#F28E2B", "label": "Community 141", "count": 2}, {"cid": 142, "color": "#E15759", "label": "Community 142", "count": 2}, {"cid": 143, "color": "#76B7B2", "label": "Community 143", "count": 2}, {"cid": 144, "color": "#59A14F", "label": "Community 144", "count": 2}, {"cid": 145, "color": "#EDC948", "label": "Community 145", "count": 2}, {"cid": 146, "color": "#B07AA1", "label": "Community 146", "count": 2}, {"cid": 147, "color": "#FF9DA7", "label": "Community 147", "count": 2}, {"cid": 148, "color": "#9C755F", "label": "Community 148", "count": 2}, {"cid": 149, "color": "#BAB0AC", "label": "Community 149", "count": 2}, {"cid": 150, "color": "#4E79A7", "label": "Community 150", "count": 2}, {"cid": 151, "color": "#F28E2B", "label": "Community 151", "count": 2}, {"cid": 152, "color": "#E15759", "label": "Community 152", "count": 2}, {"cid": 153, "color": "#76B7B2", "label": "Community 153", "count": 2}, {"cid": 154, "color": "#59A14F", "label": "Community 154", "count": 2}, {"cid": 155, "color": "#EDC948", "label": "Community 155", "count": 2}, {"cid": 156, "color": "#B07AA1", "label": "Community 156", "count": 2}, {"cid": 157, "color": "#FF9DA7", "label": "Community 157", "count": 2}, {"cid": 158, "color": "#9C755F", "label": "Community 158", "count": 2}, {"cid": 159, "color": "#BAB0AC", "label": "Community 159", "count": 2}, {"cid": 160, "color": "#4E79A7", "label": "Community 160", "count": 2}, {"cid": 161, "color": "#F28E2B", "label": "Community 161", "count": 2}, {"cid": 162, "color": "#E15759", "label": "Community 162", "count": 2}, {"cid": 163, "color": "#76B7B2", "label": "Community 163", "count": 2}, {"cid": 164, "color": "#59A14F", "label": "Community 164", "count": 2}, {"cid": 165, "color": "#EDC948", "label": "Community 165", "count": 2}, {"cid": 166, "color": "#B07AA1", "label": "Community 166", "count": 2}, {"cid": 167, "color": "#FF9DA7", "label": "Community 167", "count": 2}, {"cid": 168, "color": "#9C755F", "label": "Community 168", "count": 2}, {"cid": 169, "color": "#BAB0AC", "label": "Community 169", "count": 2}, {"cid": 170, "color": "#4E79A7", "label": "Community 170", "count": 2}, {"cid": 171, "color": "#F28E2B", "label": "Community 171", "count": 2}, {"cid": 172, "color": "#E15759", "label": "Community 172", "count": 2}, {"cid": 173, "color": "#76B7B2", "label": "Community 173", "count": 2}, {"cid": 174, "color": "#59A14F", "label": "Community 174", "count": 2}, {"cid": 175, "color": "#EDC948", "label": "Community 175", "count": 2}, {"cid": 176, "color": "#B07AA1", "label": "Community 176", "count": 2}, {"cid": 177, "color": "#FF9DA7", "label": "Community 177", "count": 2}, {"cid": 178, "color": "#9C755F", "label": "Community 178", "count": 2}, {"cid": 179, "color": "#BAB0AC", "label": "Community 179", "count": 2}, {"cid": 180, "color": "#4E79A7", "label": "Community 180", "count": 2}, {"cid": 181, "color": "#F28E2B", "label": "Community 181", "count": 2}, {"cid": 182, "color": "#E15759", "label": "Community 182", "count": 2}, {"cid": 183, "color": "#76B7B2", "label": "Community 183", "count": 2}, {"cid": 184, "color": "#59A14F", "label": "Community 184", "count": 2}, {"cid": 185, "color": "#EDC948", "label": "Community 185", "count": 2}, {"cid": 186, "color": "#B07AA1", "label": "Community 186", "count": 2}, {"cid": 187, "color": "#FF9DA7", "label": "Community 187", "count": 2}, {"cid": 188, "color": "#9C755F", "label": "Community 188", "count": 2}, {"cid": 189, "color": "#BAB0AC", "label": "Community 189", "count": 2}, {"cid": 190, "color": "#4E79A7", "label": "Community 190", "count": 2}, {"cid": 191, "color": "#F28E2B", "label": "Community 191", "count": 2}, {"cid": 192, "color": "#E15759", "label": "Community 192", "count": 2}, {"cid": 193, "color": "#76B7B2", "label": "Community 193", "count": 2}, {"cid": 194, "color": "#59A14F", "label": "Community 194", "count": 2}, {"cid": 195, "color": "#EDC948", "label": "Community 195", "count": 2}, {"cid": 196, "color": "#B07AA1", "label": "Community 196", "count": 2}, {"cid": 197, "color": "#FF9DA7", "label": "Community 197", "count": 2}, {"cid": 198, "color": "#9C755F", "label": "Community 198", "count": 2}, {"cid": 199, "color": "#BAB0AC", "label": "Community 199", "count": 2}, {"cid": 200, "color": "#4E79A7", "label": "Community 200", "count": 2}, {"cid": 201, "color": "#F28E2B", "label": "Community 201", "count": 2}, {"cid": 202, "color": "#E15759", "label": "Community 202", "count": 2}, {"cid": 203, "color": "#76B7B2", "label": "Community 203", "count": 2}, {"cid": 204, "color": "#59A14F", "label": "Community 204", "count": 2}, {"cid": 205, "color": "#EDC948", "label": "Community 205", "count": 2}, {"cid": 206, "color": "#B07AA1", "label": "Community 206", "count": 2}, {"cid": 207, "color": "#FF9DA7", "label": "Community 207", "count": 2}, {"cid": 208, "color": "#9C755F", "label": "Community 208", "count": 2}, {"cid": 209, "color": "#BAB0AC", "label": "Community 209", "count": 2}, {"cid": 210, "color": "#4E79A7", "label": "Community 210", "count": 2}, {"cid": 211, "color": "#F28E2B", "label": "Community 211", "count": 2}, {"cid": 212, "color": "#E15759", "label": "Community 212", "count": 2}, {"cid": 213, "color": "#76B7B2", "label": "Community 213", "count": 2}, {"cid": 214, "color": "#59A14F", "label": "Community 214", "count": 2}, {"cid": 215, "color": "#EDC948", "label": "Community 215", "count": 2}, {"cid": 216, "color": "#B07AA1", "label": "Community 216", "count": 2}, {"cid": 217, "color": "#FF9DA7", "label": "Community 217", "count": 2}, {"cid": 218, "color": "#9C755F", "label": "Community 218", "count": 2}, {"cid": 219, "color": "#BAB0AC", "label": "Community 219", "count": 2}, {"cid": 220, "color": "#4E79A7", "label": "Community 220", "count": 2}, {"cid": 221, "color": "#F28E2B", "label": "Community 221", "count": 2}, {"cid": 222, "color": "#E15759", "label": "Community 222", "count": 2}, {"cid": 223, "color": "#76B7B2", "label": "Community 223", "count": 2}, {"cid": 224, "color": "#59A14F", "label": "Community 224", "count": 2}, {"cid": 225, "color": "#EDC948", "label": "Community 225", "count": 2}, {"cid": 226, "color": "#B07AA1", "label": "Community 226", "count": 2}, {"cid": 227, "color": "#FF9DA7", "label": "Community 227", "count": 2}, {"cid": 228, "color": "#9C755F", "label": "Community 228", "count": 2}, {"cid": 229, "color": "#BAB0AC", "label": "Community 229", "count": 2}, {"cid": 230, "color": "#4E79A7", "label": "Community 230", "count": 2}, {"cid": 231, "color": "#F28E2B", "label": "Community 231", "count": 2}, {"cid": 232, "color": "#E15759", "label": "Community 232", "count": 2}, {"cid": 233, "color": "#76B7B2", "label": "Community 233", "count": 2}, {"cid": 234, "color": "#59A14F", "label": "Community 234", "count": 2}, {"cid": 235, "color": "#EDC948", "label": "Community 235", "count": 2}, {"cid": 236, "color": "#B07AA1", "label": "Community 236", "count": 2}, {"cid": 237, "color": "#FF9DA7", "label": "Community 237", "count": 2}, {"cid": 238, "color": "#9C755F", "label": "Community 238", "count": 2}, {"cid": 239, "color": "#BAB0AC", "label": "Community 239", "count": 2}, {"cid": 240, "color": "#4E79A7", "label": "Community 240", "count": 2}, {"cid": 241, "color": "#F28E2B", "label": "Community 241", "count": 2}, {"cid": 242, "color": "#E15759", "label": "Community 242", "count": 2}, {"cid": 243, "color": "#76B7B2", "label": "Community 243", "count": 2}, {"cid": 244, "color": "#59A14F", "label": "Community 244", "count": 2}, {"cid": 245, "color": "#EDC948", "label": "Community 245", "count": 2}, {"cid": 246, "color": "#B07AA1", "label": "Community 246", "count": 2}, {"cid": 247, "color": "#FF9DA7", "label": "Community 247", "count": 2}, {"cid": 248, "color": "#9C755F", "label": "Community 248", "count": 2}, {"cid": 249, "color": "#BAB0AC", "label": "Community 249", "count": 2}, {"cid": 250, "color": "#4E79A7", "label": "Community 250", "count": 2}, {"cid": 251, "color": "#F28E2B", "label": "Community 251", "count": 2}, {"cid": 252, "color": "#E15759", "label": "Community 252", "count": 2}, {"cid": 253, "color": "#76B7B2", "label": "Community 253", "count": 2}, {"cid": 254, "color": "#59A14F", "label": "Community 254", "count": 2}, {"cid": 255, "color": "#EDC948", "label": "Community 255", "count": 2}, {"cid": 256, "color": "#B07AA1", "label": "Community 256", "count": 2}, {"cid": 257, "color": "#FF9DA7", "label": "Community 257", "count": 2}, {"cid": 258, "color": "#9C755F", "label": "Community 258", "count": 2}, {"cid": 259, "color": "#BAB0AC", "label": "Community 259", "count": 2}, {"cid": 260, "color": "#4E79A7", "label": "Community 260", "count": 2}, {"cid": 261, "color": "#F28E2B", "label": "Community 261", "count": 2}, {"cid": 262, "color": "#E15759", "label": "Community 262", "count": 2}, {"cid": 263, "color": "#76B7B2", "label": "Community 263", "count": 2}, {"cid": 264, "color": "#59A14F", "label": "Community 264", "count": 2}, {"cid": 265, "color": "#EDC948", "label": "Community 265", "count": 2}, {"cid": 266, "color": "#B07AA1", "label": "Community 266", "count": 2}, {"cid": 267, "color": "#FF9DA7", "label": "Community 267", "count": 2}, {"cid": 268, "color": "#9C755F", "label": "Community 268", "count": 2}, {"cid": 269, "color": "#BAB0AC", "label": "Community 269", "count": 2}, {"cid": 270, "color": "#4E79A7", "label": "Community 270", "count": 2}, {"cid": 271, "color": "#F28E2B", "label": "Community 271", "count": 2}, {"cid": 272, "color": "#E15759", "label": "Community 272", "count": 2}, {"cid": 273, "color": "#76B7B2", "label": "Community 273", "count": 2}, {"cid": 274, "color": "#59A14F", "label": "Community 274", "count": 2}, {"cid": 275, "color": "#EDC948", "label": "Community 275", "count": 2}, {"cid": 276, "color": "#B07AA1", "label": "Community 276", "count": 2}, {"cid": 277, "color": "#FF9DA7", "label": "Community 277", "count": 2}, {"cid": 278, "color": "#9C755F", "label": "Community 278", "count": 2}, {"cid": 279, "color": "#BAB0AC", "label": "Community 279", "count": 2}, {"cid": 280, "color": "#4E79A7", "label": "Community 280", "count": 2}, {"cid": 281, "color": "#F28E2B", "label": "Community 281", "count": 2}, {"cid": 282, "color": "#E15759", "label": "Community 282", "count": 2}, {"cid": 283, "color": "#76B7B2", "label": "Community 283", "count": 2}, {"cid": 284, "color": "#59A14F", "label": "Community 284", "count": 2}, {"cid": 285, "color": "#EDC948", "label": "Community 285", "count": 2}, {"cid": 286, "color": "#B07AA1", "label": "Community 286", "count": 2}, {"cid": 287, "color": "#FF9DA7", "label": "Community 287", "count": 2}, {"cid": 288, "color": "#9C755F", "label": "Community 288", "count": 2}, {"cid": 289, "color": "#BAB0AC", "label": "Community 289", "count": 2}, {"cid": 290, "color": "#4E79A7", "label": "Community 290", "count": 2}, {"cid": 291, "color": "#F28E2B", "label": "Community 291", "count": 2}, {"cid": 292, "color": "#E15759", "label": "Community 292", "count": 2}, {"cid": 293, "color": "#76B7B2", "label": "Community 293", "count": 2}, {"cid": 294, "color": "#59A14F", "label": "Community 294", "count": 2}, {"cid": 295, "color": "#EDC948", "label": "Community 295", "count": 2}, {"cid": 296, "color": "#B07AA1", "label": "Community 296", "count": 2}, {"cid": 297, "color": "#FF9DA7", "label": "Community 297", "count": 2}, {"cid": 298, "color": "#9C755F", "label": "Community 298", "count": 2}, {"cid": 299, "color": "#BAB0AC", "label": "Community 299", "count": 2}, {"cid": 300, "color": "#4E79A7", "label": "Community 300", "count": 2}, {"cid": 301, "color": "#F28E2B", "label": "Community 301", "count": 2}, {"cid": 302, "color": "#E15759", "label": "Community 302", "count": 2}, {"cid": 303, "color": "#76B7B2", "label": "Community 303", "count": 2}, {"cid": 304, "color": "#59A14F", "label": "Community 304", "count": 2}, {"cid": 305, "color": "#EDC948", "label": "Community 305", "count": 2}, {"cid": 306, "color": "#B07AA1", "label": "Community 306", "count": 2}, {"cid": 307, "color": "#FF9DA7", "label": "Community 307", "count": 2}, {"cid": 308, "color": "#9C755F", "label": "Community 308", "count": 2}, {"cid": 309, "color": "#BAB0AC", "label": "Community 309", "count": 2}, {"cid": 310, "color": "#4E79A7", "label": "Community 310", "count": 2}, {"cid": 311, "color": "#F28E2B", "label": "Community 311", "count": 2}, {"cid": 312, "color": "#E15759", "label": "Community 312", "count": 2}, {"cid": 313, "color": "#76B7B2", "label": "Community 313", "count": 2}, {"cid": 314, "color": "#59A14F", "label": "Community 314", "count": 2}, {"cid": 315, "color": "#EDC948", "label": "Community 315", "count": 2}, {"cid": 316, "color": "#B07AA1", "label": "Community 316", "count": 2}, {"cid": 317, "color": "#FF9DA7", "label": "Community 317", "count": 2}, {"cid": 318, "color": "#9C755F", "label": "Community 318", "count": 2}, {"cid": 319, "color": "#BAB0AC", "label": "Community 319", "count": 2}, {"cid": 320, "color": "#4E79A7", "label": "Community 320", "count": 2}, {"cid": 321, "color": "#F28E2B", "label": "Community 321", "count": 2}, {"cid": 322, "color": "#E15759", "label": "Community 322", "count": 2}, {"cid": 323, "color": "#76B7B2", "label": "Community 323", "count": 2}, {"cid": 324, "color": "#59A14F", "label": "Community 324", "count": 2}, {"cid": 325, "color": "#EDC948", "label": "Community 325", "count": 2}, {"cid": 326, "color": "#B07AA1", "label": "Community 326", "count": 2}, {"cid": 327, "color": "#FF9DA7", "label": "Community 327", "count": 2}, {"cid": 328, "color": "#9C755F", "label": "Community 328", "count": 2}, {"cid": 329, "color": "#BAB0AC", "label": "Community 329", "count": 2}, {"cid": 330, "color": "#4E79A7", "label": "Community 330", "count": 2}, {"cid": 331, "color": "#F28E2B", "label": "Community 331", "count": 2}, {"cid": 332, "color": "#E15759", "label": "Community 332", "count": 2}, {"cid": 333, "color": "#76B7B2", "label": "Community 333", "count": 2}, {"cid": 334, "color": "#59A14F", "label": "Community 334", "count": 2}, {"cid": 335, "color": "#EDC948", "label": "Community 335", "count": 2}, {"cid": 336, "color": "#B07AA1", "label": "Community 336", "count": 2}, {"cid": 337, "color": "#FF9DA7", "label": "Community 337", "count": 2}, {"cid": 338, "color": "#9C755F", "label": "Community 338", "count": 2}, {"cid": 339, "color": "#BAB0AC", "label": "Community 339", "count": 2}, {"cid": 340, "color": "#4E79A7", "label": "Community 340", "count": 2}, {"cid": 341, "color": "#F28E2B", "label": "Community 341", "count": 2}, {"cid": 342, "color": "#E15759", "label": "Community 342", "count": 2}, {"cid": 343, "color": "#76B7B2", "label": "Community 343", "count": 2}, {"cid": 344, "color": "#59A14F", "label": "Community 344", "count": 2}, {"cid": 345, "color": "#EDC948", "label": "Community 345", "count": 2}, {"cid": 346, "color": "#B07AA1", "label": "Community 346", "count": 2}, {"cid": 347, "color": "#FF9DA7", "label": "Community 347", "count": 2}, {"cid": 348, "color": "#9C755F", "label": "Community 348", "count": 2}, {"cid": 349, "color": "#BAB0AC", "label": "Community 349", "count": 2}, {"cid": 350, "color": "#4E79A7", "label": "Community 350", "count": 2}, {"cid": 351, "color": "#F28E2B", "label": "Community 351", "count": 2}, {"cid": 352, "color": "#E15759", "label": "Community 352", "count": 2}, {"cid": 353, "color": "#76B7B2", "label": "Community 353", "count": 2}, {"cid": 354, "color": "#59A14F", "label": "Community 354", "count": 19}, {"cid": 355, "color": "#EDC948", "label": "Community 355", "count": 2}, {"cid": 356, "color": "#B07AA1", "label": "Community 356", "count": 2}, {"cid": 357, "color": "#FF9DA7", "label": "Community 357", "count": 2}, {"cid": 358, "color": "#9C755F", "label": "Community 358", "count": 2}, {"cid": 359, "color": "#BAB0AC", "label": "Community 359", "count": 1}, {"cid": 360, "color": "#4E79A7", "label": "Community 360", "count": 1}, {"cid": 361, "color": "#F28E2B", "label": "Community 361", "count": 1}, {"cid": 362, "color": "#E15759", "label": "Community 362", "count": 1}, {"cid": 363, "color": "#76B7B2", "label": "Community 363", "count": 1}, {"cid": 364, "color": "#59A14F", "label": "Community 364", "count": 1}, {"cid": 365, "color": "#EDC948", "label": "Community 365", "count": 24}, {"cid": 366, "color": "#B07AA1", "label": "Community 366", "count": 19}, {"cid": 367, "color": "#FF9DA7", "label": "Community 367", "count": 13}, {"cid": 368, "color": "#9C755F", "label": "Community 368", "count": 13}, {"cid": 369, "color": "#BAB0AC", "label": "Community 369", "count": 6}, {"cid": 370, "color": "#4E79A7", "label": "Community 370", "count": 7}, {"cid": 371, "color": "#F28E2B", "label": "Community 371", "count": 4}, {"cid": 372, "color": "#E15759", "label": "Community 372", "count": 16}, {"cid": 373, "color": "#76B7B2", "label": "Community 373", "count": 17}, {"cid": 374, "color": "#59A14F", "label": "Community 374", "count": 16}, {"cid": 375, "color": "#EDC948", "label": "Community 375", "count": 12}, {"cid": 376, "color": "#B07AA1", "label": "Community 376", "count": 11}, {"cid": 377, "color": "#FF9DA7", "label": "Community 377", "count": 8}, {"cid": 378, "color": "#9C755F", "label": "Community 378", "count": 2}, {"cid": 379, "color": "#BAB0AC", "label": "Community 379", "count": 7}, {"cid": 380, "color": "#4E79A7", "label": "Community 380", "count": 4}, {"cid": 381, "color": "#F28E2B", "label": "Community 381", "count": 4}, {"cid": 382, "color": "#E15759", "label": "Community 382", "count": 3}, {"cid": 383, "color": "#76B7B2", "label": "Community 383", "count": 1}, {"cid": 384, "color": "#59A14F", "label": "Community 384", "count": 7}, {"cid": 385, "color": "#EDC948", "label": "Community 385", "count": 12}, {"cid": 386, "color": "#B07AA1", "label": "Community 386", "count": 11}, {"cid": 387, "color": "#FF9DA7", "label": "Community 387", "count": 10}, {"cid": 388, "color": "#9C755F", "label": "Community 388", "count": 8}, {"cid": 389, "color": "#BAB0AC", "label": "Community 389", "count": 7}, {"cid": 390, "color": "#4E79A7", "label": "Community 390", "count": 6}, {"cid": 391, "color": "#F28E2B", "label": "Community 391", "count": 6}, {"cid": 392, "color": "#E15759", "label": "Community 392", "count": 6}, {"cid": 393, "color": "#76B7B2", "label": "Community 393", "count": 6}, {"cid": 394, "color": "#59A14F", "label": "Community 394", "count": 6}, {"cid": 395, "color": "#EDC948", "label": "Community 395", "count": 6}, {"cid": 396, "color": "#B07AA1", "label": "Community 396", "count": 2}, {"cid": 397, "color": "#FF9DA7", "label": "Community 397", "count": 5}, {"cid": 398, "color": "#9C755F", "label": "Community 398", "count": 3}, {"cid": 399, "color": "#BAB0AC", "label": "Community 399", "count": 3}, {"cid": 400, "color": "#4E79A7", "label": "Community 400", "count": 2}, {"cid": 401, "color": "#F28E2B", "label": "Community 401", "count": 1}, {"cid": 402, "color": "#E15759", "label": "Community 402", "count": 7}, {"cid": 403, "color": "#76B7B2", "label": "Community 403", "count": 7}, {"cid": 404, "color": "#59A14F", "label": "Community 404", "count": 2}, {"cid": 405, "color": "#EDC948", "label": "Community 405", "count": 2}, {"cid": 406, "color": "#B07AA1", "label": "Community 406", "count": 2}];
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
function esc(s) {
return String(s).replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;').replace(/"/g,'&quot;').replace(/'/g,'&#39;');
}
// Build vis datasets
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
id: n.id, label: n.label, color: n.color, size: n.size,
font: n.font, title: n.title,
_community: n.community, _community_name: n.community_name,
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
})));
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
id: i, from: e.from, to: e.to,
label: '',
title: e.title,
dashes: e.dashes,
width: e.width,
color: e.color,
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
})));
const container = document.getElementById('graph');
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
physics: {
enabled: true,
solver: 'forceAtlas2Based',
forceAtlas2Based: {
gravitationalConstant: -60,
centralGravity: 0.005,
springLength: 120,
springConstant: 0.08,
damping: 0.4,
avoidOverlap: 0.8,
},
stabilization: { iterations: 200, fit: true },
},
interaction: {
hover: true,
tooltipDelay: 100,
hideEdgesOnDrag: true,
navigationButtons: false,
keyboard: false,
},
nodes: { shape: 'dot', borderWidth: 1.5 },
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
});
network.once('stabilizationIterationsDone', () => {
network.setOptions({ physics: { enabled: false } });
});
function showInfo(nodeId) {
const n = nodesDS.get(nodeId);
if (!n) return;
const neighborIds = network.getConnectedNodes(nodeId);
const neighborItems = neighborIds.map(nid => {
const nb = nodesDS.get(nid);
const color = nb ? nb.color.background : '#555';
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" onclick="focusNode(${JSON.stringify(nid)})">${esc(nb ? nb.label : nid)}</span>`;
}).join('');
document.getElementById('info-content').innerHTML = `
<div class="field"><b>${esc(n.label)}</b></div>
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
<div class="field">Community: ${esc(n._community_name)}</div>
<div class="field">Source: ${esc(n._source_file || '-')}</div>
<div class="field">Degree: ${n._degree}</div>
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
`;
}
function focusNode(nodeId) {
network.focus(nodeId, { scale: 1.4, animation: true });
network.selectNodes([nodeId]);
showInfo(nodeId);
}
// Track hovered node — hover detection is more reliable than click params
let hoveredNodeId = null;
network.on('hoverNode', params => {
hoveredNodeId = params.node;
container.style.cursor = 'pointer';
});
network.on('blurNode', () => {
hoveredNodeId = null;
container.style.cursor = 'default';
});
container.addEventListener('click', () => {
if (hoveredNodeId !== null) {
showInfo(hoveredNodeId);
network.selectNodes([hoveredNodeId]);
}
});
network.on('click', params => {
if (params.nodes.length > 0) {
showInfo(params.nodes[0]);
} else if (hoveredNodeId === null) {
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
}
});
const searchInput = document.getElementById('search');
const searchResults = document.getElementById('search-results');
searchInput.addEventListener('input', () => {
const q = searchInput.value.toLowerCase().trim();
searchResults.innerHTML = '';
if (!q) { searchResults.style.display = 'none'; return; }
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
if (!matches.length) { searchResults.style.display = 'none'; return; }
searchResults.style.display = 'block';
matches.forEach(n => {
const el = document.createElement('div');
el.className = 'search-item';
el.textContent = n.label;
el.style.borderLeft = `3px solid ${n.color.background}`;
el.style.paddingLeft = '8px';
el.onclick = () => {
network.focus(n.id, { scale: 1.5, animation: true });
network.selectNodes([n.id]);
showInfo(n.id);
searchResults.style.display = 'none';
searchInput.value = '';
};
searchResults.appendChild(el);
});
});
document.addEventListener('click', e => {
if (!searchResults.contains(e.target) && e.target !== searchInput)
searchResults.style.display = 'none';
});
const hiddenCommunities = new Set();
const selectAllCb = document.getElementById('select-all-cb');
function updateSelectAllState() {
const total = LEGEND.length;
const hidden = hiddenCommunities.size;
selectAllCb.checked = hidden === 0;
selectAllCb.indeterminate = hidden > 0 && hidden < total;
}
function toggleAllCommunities(hide) {
document.querySelectorAll('.legend-item').forEach(item => {
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
});
document.querySelectorAll('.legend-cb').forEach(cb => {
cb.checked = !hide;
});
LEGEND.forEach(c => {
if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
});
const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
nodesDS.update(updates);
updateSelectAllState();
}
const legendEl = document.getElementById('legend');
LEGEND.forEach(c => {
const item = document.createElement('div');
item.className = 'legend-item';
const cb = document.createElement('input');
cb.type = 'checkbox';
cb.className = 'legend-cb';
cb.checked = true;
cb.addEventListener('change', (e) => {
e.stopPropagation();
if (cb.checked) {
hiddenCommunities.delete(c.cid);
item.classList.remove('dimmed');
} else {
hiddenCommunities.add(c.cid);
item.classList.add('dimmed');
}
const updates = RAW_NODES
.filter(n => n.community === c.cid)
.map(n => ({ id: n.id, hidden: !cb.checked }));
nodesDS.update(updates);
updateSelectAllState();
});
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
<span class="legend-label">${c.label}</span>
<span class="legend-count">${c.count}</span>`;
item.prepend(cb);
item.onclick = (e) => {
if (e.target === cb) return;
cb.checked = !cb.checked;
cb.dispatchEvent(new Event('change'));
};
legendEl.appendChild(item);
});
</script>
<script>
// Render hyperedges as shaded regions
const hyperedges = [];
// afterDrawing passes ctx already transformed to network coordinate space.
// Draw node positions raw — no manual pan/zoom/DPR math needed.
network.on('afterDrawing', function(ctx) {
hyperedges.forEach(h => {
const positions = h.nodes
.map(nid => network.getPositions([nid])[nid])
.filter(p => p !== undefined);
if (positions.length < 2) return;
ctx.save();
ctx.globalAlpha = 0.12;
ctx.fillStyle = '#6366f1';
ctx.strokeStyle = '#6366f1';
ctx.lineWidth = 2;
ctx.beginPath();
// Centroid and expanded hull in network coordinates
const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
const expanded = positions.map(p => ({
x: cx + (p.x - cx) * 1.15,
y: cy + (p.y - cy) * 1.15
}));
ctx.moveTo(expanded[0].x, expanded[0].y);
expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
ctx.closePath();
ctx.fill();
ctx.globalAlpha = 0.4;
ctx.stroke();
// Label
ctx.globalAlpha = 0.8;
ctx.fillStyle = '#4f46e5';
ctx.font = 'bold 11px sans-serif';
ctx.textAlign = 'center';
ctx.fillText(h.label, cx, cy - 5);
ctx.restore();
});
});
</script>
</body>
</html>