From 7f5c9e79744be91436ce3b278092615f18c8328f Mon Sep 17 00:00:00 2001 From: HuangHai <10402852@qq.com> Date: Wed, 2 Jul 2025 20:41:09 +0800 Subject: [PATCH] 'commit' --- ...sertIntoMysql.py => N1_InsertIntoMysql.py} | 0 dsRag/Neo4j/N1_KG_Zsd.py | 60 ------------------- ...{N4_KG_FromMysql.py => N2_KG_FromMysql.py} | 2 +- ...{N2_KG_Zsd_Graph.py => N3_KG_Zsd_Graph.py} | 14 +++-- dsRag/Neo4j/knowledge_graph.html | 4 +- 5 files changed, 13 insertions(+), 67 deletions(-) rename dsRag/Neo4j/{N3_InsertIntoMysql.py => N1_InsertIntoMysql.py} (100%) delete mode 100644 dsRag/Neo4j/N1_KG_Zsd.py rename dsRag/Neo4j/{N4_KG_FromMysql.py => N2_KG_FromMysql.py} (94%) rename dsRag/Neo4j/{N2_KG_Zsd_Graph.py => N3_KG_Zsd_Graph.py} (68%) diff --git a/dsRag/Neo4j/N3_InsertIntoMysql.py b/dsRag/Neo4j/N1_InsertIntoMysql.py similarity index 100% rename from dsRag/Neo4j/N3_InsertIntoMysql.py rename to dsRag/Neo4j/N1_InsertIntoMysql.py diff --git a/dsRag/Neo4j/N1_KG_Zsd.py b/dsRag/Neo4j/N1_KG_Zsd.py deleted file mode 100644 index ae28a803..00000000 --- a/dsRag/Neo4j/N1_KG_Zsd.py +++ /dev/null @@ -1,60 +0,0 @@ -import json - -from Util.Neo4jExecutor import Neo4jExecutor - - -def json_to_cypher(data): - """将知识体系JSON转换为Cypher插入脚本""" - cypher = [] - seen = set() - - def process_node(node, parent_id=None): - nonlocal seen - - node_id = node['value'] - node_name = node['title'].replace("'", "''") - - # 创建当前节点 - if node_id not in seen: - cypher.append(f"MERGE (n:KnowledgePoint {{id: '{node_id}'}}) SET n.name = '{node_name}';") - seen.add(node_id) - - # 创建父子关系 - if parent_id: - cypher.append(f""" -MATCH (parent:KnowledgePoint {{id: '{parent_id}'}}), - (child:KnowledgePoint {{id: '{node_id}'}}) -MERGE (parent)-[:HAS_SUB_POINT]->(child);""") - - # 递归处理子节点 - if 'children' in node and not node['isLeaf']: - for child in node['children']: - process_node(child, parent_id=node_id) - - # 处理根节点 - for root in data['data']['tree']: - process_node(root) - - # 处理根节点的父级关系(如果有) - if root.get('parentValue'): - cypher.append(f"MERGE (parent:KnowledgePoint {{id: '{root['parentValue']}'}});") - cypher.append(f""" -MATCH (parent:KnowledgePoint {{id: '{root['parentValue']}'}}), - (child:KnowledgePoint {{id: '{root['value']}'}}) -MERGE (parent)-[:HAS_SUB_POINT]->(child);""") - - return '\n'.join(cypher) - - -# 使用示例 -if __name__ == '__main__': - executor = Neo4jExecutor.create_default() - # 清库 - executor.graph.run("MATCH (n) DETACH DELETE n") - - # 这里替换成你的JSON数据变量 - with open('小学数学知识点体系.json', 'r',encoding='utf-8') as f: - your_json_data = json.load(f) - cypherText=json_to_cypher(your_json_data) - executor.execute_cypher_text(cypherText) - print("数据插入成功!") diff --git a/dsRag/Neo4j/N4_KG_FromMysql.py b/dsRag/Neo4j/N2_KG_FromMysql.py similarity index 94% rename from dsRag/Neo4j/N4_KG_FromMysql.py rename to dsRag/Neo4j/N2_KG_FromMysql.py index abeb1a1c..381bb727 100644 --- a/dsRag/Neo4j/N4_KG_FromMysql.py +++ b/dsRag/Neo4j/N2_KG_FromMysql.py @@ -37,7 +37,7 @@ def generate_cypher(knowledge_points): cypher.append( f"MERGE (n:KnowledgePoint {{id: '{node_id}'}}) " - f"SET n.title = '{title}', n.is_leaf = {is_leaf};" + f"SET n.name = '{title}', n.is_leaf = {is_leaf};" ) # 创建父子关系 diff --git a/dsRag/Neo4j/N2_KG_Zsd_Graph.py b/dsRag/Neo4j/N3_KG_Zsd_Graph.py similarity index 68% rename from dsRag/Neo4j/N2_KG_Zsd_Graph.py rename to dsRag/Neo4j/N3_KG_Zsd_Graph.py index 4a3e9783..3d8762d7 100644 --- a/dsRag/Neo4j/N2_KG_Zsd_Graph.py +++ b/dsRag/Neo4j/N3_KG_Zsd_Graph.py @@ -19,12 +19,18 @@ net = Network(height="750px", width="100%", notebook=True, cdn_resources='in_lin # 添加节点和边 for item in data: + node_label = item['n'].get('name', '未命名') net.add_node(item['n'].identity, - label=item['n']['name'], - title=item['n'].get('description', '')) + label=node_label, + name=node_label, + font={'size': 14, 'face': 'SimHei'}) + + node_label = item['m'].get('name', '未命名') net.add_node(item['m'].identity, - label=item['m']['name'], - title=item['m'].get('description', '')) + label=node_label, + name=node_label, + font={'size': 14, 'face': 'SimHei'}) + net.add_edge(item['n'].identity, item['m'].identity, title=type(item['r']).__name__) diff --git a/dsRag/Neo4j/knowledge_graph.html b/dsRag/Neo4j/knowledge_graph.html index 1b172c30..5f8f9924 100644 --- a/dsRag/Neo4j/knowledge_graph.html +++ b/dsRag/Neo4j/knowledge_graph.html @@ -380,8 +380,8 @@ function highlightFilter(filter) { // parsing and collecting nodes and edges from the python - nodes = new vis.DataSet([{"color": "#97c2fc", "id": 2, "label": 2, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 431, "label": 431, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 155, "label": 155, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 0, "label": 0, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 233, "label": 233, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 1, "label": 1, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 263, "label": 263, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 189, "label": 189, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 3, "label": 3, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 4, "label": 4, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 5, "label": 5, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 6, "label": 6, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 166, "label": 166, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 7, "label": 7, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 171, "label": 171, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 8, "label": 8, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 9, "label": 9, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 274, "label": 274, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 10, "label": 10, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 11, "label": 11, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 188, "label": 188, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 12, "label": 12, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 50, "label": 50, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 13, "label": 13, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 255, "label": 255, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 14, "label": 14, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 15, "label": 15, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 225, "label": 225, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 16, "label": 16, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 17, "label": 17, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 18, "label": 18, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 19, "label": 19, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 287, "label": 287, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 20, "label": 20, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 21, "label": 21, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 22, "label": 22, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 154, "label": 154, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 23, "label": 23, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 24, "label": 24, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 25, "label": 25, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 26, "label": 26, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 27, "label": 27, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 29, "label": 29, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 30, "label": 30, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 68, "label": 68, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 31, "label": 31, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 32, "label": 32, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 33, "label": 33, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 34, "label": 34, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 35, "label": 35, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 36, "label": 36, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 37, "label": 37, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 38, "label": 38, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 39, "label": 39, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 40, "label": 40, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 41, "label": 41, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 42, "label": 42, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 323, "label": 323, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 43, "label": 43, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 44, "label": 44, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 45, "label": 45, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 46, "label": 46, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 47, "label": 47, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 48, "label": 48, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 49, "label": 49, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 318, "label": 318, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 51, "label": 51, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 52, "label": 52, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 53, "label": 53, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 54, "label": 54, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 55, "label": 55, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 57, "label": 57, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 58, "label": 58, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 59, "label": 59, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 60, "label": 60, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 61, "label": 61, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 62, "label": 62, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 63, "label": 63, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 64, "label": 64, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 65, "label": 65, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 66, "label": 66, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 67, "label": 67, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 69, "label": 69, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 70, "label": 70, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 71, "label": 71, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 72, "label": 72, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 73, "label": 73, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 74, "label": 74, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 75, "label": 75, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 76, "label": 76, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 77, "label": 77, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 78, "label": 78, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 79, "label": 79, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 80, "label": 80, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 81, "label": 81, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 82, "label": 82, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 83, "label": 83, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 84, "label": 84, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 85, "label": 85, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 86, "label": 86, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 87, "label": 87, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 88, "label": 88, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 89, "label": 89, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 90, "label": 90, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 91, "label": 91, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 92, "label": 92, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 93, "label": 93, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 94, "label": 94, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 95, "label": 95, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 96, "label": 96, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 97, "label": 97, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 98, "label": 98, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 99, "label": 99, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 100, "label": 100, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 101, "label": 101, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 102, "label": 102, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 103, "label": 103, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 104, "label": 104, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 105, "label": 105, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 106, "label": 106, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 107, "label": 107, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 108, "label": 108, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 109, "label": 109, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 110, "label": 110, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 111, "label": 111, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 112, "label": 112, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 113, "label": 113, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 114, "label": 114, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 115, "label": 115, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 116, "label": 116, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 117, "label": 117, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 118, "label": 118, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 119, "label": 119, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 120, "label": 120, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 121, "label": 121, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 122, "label": 122, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 123, "label": 123, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 124, "label": 124, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 125, "label": 125, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 126, "label": 126, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 127, "label": 127, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 128, "label": 128, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 129, "label": 129, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 130, "label": 130, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 131, "label": 131, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 132, "label": 132, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 133, "label": 133, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 134, "label": 134, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 135, "label": 135, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 136, "label": 136, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 137, "label": 137, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 138, "label": 138, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 139, "label": 139, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 140, "label": 140, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 141, "label": 141, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 142, "label": 142, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 143, "label": 143, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 144, "label": 144, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 145, "label": 145, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 146, "label": 146, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 147, "label": 147, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 148, "label": 148, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 149, "label": 149, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 150, "label": 150, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 151, "label": 151, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 152, "label": 152, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 153, "label": 153, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 56, "label": 56, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 156, "label": 156, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 157, "label": 157, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 158, "label": 158, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 159, "label": 159, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 160, "label": 160, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 161, "label": 161, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 162, "label": 162, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 163, "label": 163, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 164, "label": 164, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 165, "label": 165, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 167, "label": 167, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 168, "label": 168, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 169, "label": 169, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 170, "label": 170, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 172, "label": 172, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 173, "label": 173, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 174, "label": 174, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 175, "label": 175, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 176, "label": 176, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 177, "label": 177, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 178, "label": 178, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 179, "label": 179, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 180, "label": 180, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 181, "label": 181, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 182, "label": 182, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 183, "label": 183, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 184, "label": 184, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 185, "label": 185, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 186, "label": 186, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 187, "label": 187, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 28, "label": 28, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 190, "label": 190, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 191, "label": 191, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 192, "label": 192, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 193, "label": 193, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 194, "label": 194, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 195, "label": 195, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 196, "label": 196, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 197, "label": 197, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 198, "label": 198, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 199, "label": 199, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 200, "label": 200, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 201, "label": 201, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 202, "label": 202, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 203, "label": 203, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 204, "label": 204, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 205, "label": 205, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 206, "label": 206, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 207, "label": 207, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 208, "label": 208, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 209, "label": 209, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 210, "label": 210, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 211, "label": 211, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 212, "label": 212, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 213, "label": 213, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 214, "label": 214, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 215, "label": 215, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 216, "label": 216, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 217, "label": 217, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 218, "label": 218, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 219, "label": 219, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 220, "label": 220, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 221, "label": 221, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 222, "label": 222, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 223, "label": 223, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 224, "label": 224, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 226, "label": 226, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 227, "label": 227, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 228, "label": 228, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 229, "label": 229, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 230, "label": 230, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 231, "label": 231, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 232, "label": 232, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 234, "label": 234, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 235, "label": 235, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 236, "label": 236, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 237, "label": 237, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 238, "label": 238, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 239, "label": 239, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 240, "label": 240, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 241, "label": 241, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 242, "label": 242, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 243, "label": 243, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 244, "label": 244, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 245, "label": 245, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 246, "label": 246, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 247, "label": 247, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 248, "label": 248, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 249, "label": 249, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 250, "label": 250, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 251, "label": 251, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 252, "label": 252, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 253, "label": 253, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 254, "label": 254, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 256, "label": 256, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 257, "label": 257, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 258, "label": 258, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 259, "label": 259, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 260, "label": 260, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 261, "label": 261, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 262, "label": 262, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 264, "label": 264, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 265, "label": 265, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 266, "label": 266, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 267, "label": 267, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 268, "label": 268, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 269, "label": 269, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 270, "label": 270, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 271, "label": 271, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 272, "label": 272, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 273, "label": 273, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 275, "label": 275, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 276, "label": 276, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 277, "label": 277, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 278, "label": 278, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 279, "label": 279, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 280, "label": 280, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 281, "label": 281, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 282, "label": 282, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 283, "label": 283, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 284, "label": 284, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 285, "label": 285, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 286, "label": 286, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 288, "label": 288, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 289, "label": 289, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 290, "label": 290, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 291, "label": 291, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 292, "label": 292, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 293, "label": 293, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 294, "label": 294, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 295, "label": 295, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 296, "label": 296, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 297, "label": 297, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 315, "label": 315, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 300, "label": 300, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 301, "label": 301, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 302, "label": 302, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 303, "label": 303, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 304, "label": 304, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 305, "label": 305, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 306, "label": 306, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 307, "label": 307, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 308, "label": 308, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 309, "label": 309, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 310, "label": 310, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 311, "label": 311, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 312, "label": 312, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 313, "label": 313, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 314, "label": 314, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 316, "label": 316, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 317, "label": 317, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 319, "label": 319, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 320, "label": 320, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 321, "label": 321, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 322, "label": 322, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 324, "label": 324, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 325, "label": 325, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 326, "label": 326, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 327, "label": 327, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 328, "label": 328, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 329, "label": 329, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 330, "label": 330, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 331, "label": 331, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 332, "label": 332, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 333, "label": 333, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 334, "label": 334, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 335, "label": 335, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 336, "label": 336, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 337, "label": 337, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 338, "label": 338, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 339, "label": 339, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 340, "label": 340, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 407, "label": 407, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 408, "label": 408, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 409, "label": 409, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 410, "label": 410, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 411, "label": 411, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 412, "label": 412, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 413, "label": 413, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 414, "label": 414, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 415, "label": 415, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 416, "label": 416, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 417, "label": 417, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 418, "label": 418, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 419, "label": 419, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 420, "label": 420, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 421, "label": 421, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 422, "label": 422, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 423, "label": 423, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 424, "label": 424, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 425, "label": 425, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 426, "label": 426, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 427, "label": 427, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 428, "label": 428, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 429, "label": 429, "shape": "dot", "title": ""}, {"color": "#97c2fc", "id": 430, "label": 430, "shape": "dot", "title": ""}]); - edges = new vis.DataSet([{"from": 2, "title": "HAS_SUB_POINT", "to": 431}, {"from": 155, "title": "HAS_SUB_POINT", "to": 0}, {"from": 233, "title": "HAS_SUB_POINT", "to": 1}, {"from": 263, "title": "HAS_SUB_POINT", "to": 2}, {"from": 189, "title": "HAS_SUB_POINT", "to": 3}, {"from": 2, "title": "HAS_SUB_POINT", "to": 4}, {"from": 189, "title": "HAS_SUB_POINT", "to": 5}, {"from": 233, "title": "HAS_SUB_POINT", "to": 6}, {"from": 166, "title": "HAS_SUB_POINT", "to": 7}, {"from": 171, "title": "HAS_SUB_POINT", "to": 8}, {"from": 155, "title": "HAS_SUB_POINT", "to": 9}, {"from": 274, "title": "HAS_SUB_POINT", "to": 10}, {"from": 189, "title": "HAS_SUB_POINT", "to": 11}, {"from": 188, "title": "HAS_SUB_POINT", "to": 12}, {"from": 50, "title": "HAS_SUB_POINT", "to": 13}, {"from": 255, "title": "HAS_SUB_POINT", "to": 14}, {"from": 274, "title": "HAS_SUB_POINT", "to": 15}, {"from": 225, "title": "HAS_SUB_POINT", "to": 16}, {"from": 233, "title": "HAS_SUB_POINT", "to": 17}, {"from": 225, "title": "HAS_SUB_POINT", "to": 18}, {"from": 188, "title": "HAS_SUB_POINT", "to": 19}, {"from": 287, "title": "HAS_SUB_POINT", "to": 20}, {"from": 189, "title": "HAS_SUB_POINT", "to": 21}, {"from": 225, "title": "HAS_SUB_POINT", "to": 22}, {"from": 154, "title": "HAS_SUB_POINT", "to": 23}, {"from": 188, "title": "HAS_SUB_POINT", "to": 24}, {"from": 166, "title": "HAS_SUB_POINT", "to": 25}, {"from": 155, "title": "HAS_SUB_POINT", "to": 26}, {"from": 189, "title": "HAS_SUB_POINT", "to": 27}, {"from": 225, "title": "HAS_SUB_POINT", "to": 29}, {"from": 189, "title": "HAS_SUB_POINT", "to": 30}, {"from": 68, "title": "HAS_SUB_POINT", "to": 31}, {"from": 2, "title": "HAS_SUB_POINT", "to": 32}, {"from": 233, "title": "HAS_SUB_POINT", "to": 33}, {"from": 189, "title": "HAS_SUB_POINT", "to": 34}, {"from": 255, "title": "HAS_SUB_POINT", "to": 35}, {"from": 189, "title": "HAS_SUB_POINT", "to": 36}, {"from": 233, "title": "HAS_SUB_POINT", "to": 37}, {"from": 171, "title": "HAS_SUB_POINT", "to": 38}, {"from": 233, "title": "HAS_SUB_POINT", "to": 39}, {"from": 233, "title": "HAS_SUB_POINT", "to": 40}, {"from": 2, "title": "HAS_SUB_POINT", "to": 41}, {"from": 188, "title": "HAS_SUB_POINT", "to": 42}, {"from": 323, "title": "HAS_SUB_POINT", "to": 43}, {"from": 233, "title": "HAS_SUB_POINT", "to": 44}, {"from": 154, "title": "HAS_SUB_POINT", "to": 45}, {"from": 274, "title": "HAS_SUB_POINT", "to": 46}, {"from": 155, "title": "HAS_SUB_POINT", "to": 47}, {"from": 2, "title": "HAS_SUB_POINT", "to": 48}, {"from": 50, "title": "HAS_SUB_POINT", "to": 49}, {"from": 318, "title": "HAS_SUB_POINT", "to": 50}, {"from": 189, "title": "HAS_SUB_POINT", "to": 51}, {"from": 2, "title": "HAS_SUB_POINT", "to": 52}, {"from": 188, "title": "HAS_SUB_POINT", "to": 53}, {"from": 255, "title": "HAS_SUB_POINT", "to": 54}, {"from": 274, "title": "HAS_SUB_POINT", "to": 55}, {"from": 189, "title": "HAS_SUB_POINT", "to": 57}, {"from": 2, "title": "HAS_SUB_POINT", "to": 58}, {"from": 225, "title": "HAS_SUB_POINT", "to": 59}, {"from": 225, "title": "HAS_SUB_POINT", "to": 60}, {"from": 225, "title": "HAS_SUB_POINT", "to": 61}, {"from": 155, "title": "HAS_SUB_POINT", "to": 62}, {"from": 2, "title": "HAS_SUB_POINT", "to": 63}, {"from": 155, "title": "HAS_SUB_POINT", "to": 64}, {"from": 274, "title": "HAS_SUB_POINT", "to": 65}, {"from": 233, "title": "HAS_SUB_POINT", "to": 66}, {"from": 225, "title": "HAS_SUB_POINT", "to": 67}, {"from": 263, "title": "HAS_SUB_POINT", "to": 68}, {"from": 189, "title": "HAS_SUB_POINT", "to": 69}, {"from": 154, "title": "HAS_SUB_POINT", "to": 70}, {"from": 2, "title": "HAS_SUB_POINT", "to": 71}, {"from": 188, "title": "HAS_SUB_POINT", "to": 72}, {"from": 233, "title": "HAS_SUB_POINT", "to": 73}, {"from": 225, "title": "HAS_SUB_POINT", "to": 74}, {"from": 155, "title": "HAS_SUB_POINT", "to": 75}, {"from": 274, "title": "HAS_SUB_POINT", "to": 76}, {"from": 255, "title": "HAS_SUB_POINT", "to": 77}, {"from": 155, "title": "HAS_SUB_POINT", "to": 78}, {"from": 188, "title": "HAS_SUB_POINT", "to": 79}, {"from": 233, "title": "HAS_SUB_POINT", "to": 80}, {"from": 2, "title": "HAS_SUB_POINT", "to": 81}, {"from": 189, "title": "HAS_SUB_POINT", "to": 82}, {"from": 255, "title": "HAS_SUB_POINT", "to": 83}, {"from": 50, "title": "HAS_SUB_POINT", "to": 84}, {"from": 323, "title": "HAS_SUB_POINT", "to": 85}, {"from": 189, "title": "HAS_SUB_POINT", "to": 86}, {"from": 2, "title": "HAS_SUB_POINT", "to": 87}, {"from": 189, "title": "HAS_SUB_POINT", "to": 88}, {"from": 233, "title": "HAS_SUB_POINT", "to": 89}, {"from": 171, "title": "HAS_SUB_POINT", "to": 90}, {"from": 274, "title": "HAS_SUB_POINT", "to": 91}, {"from": 233, "title": "HAS_SUB_POINT", "to": 92}, {"from": 2, "title": "HAS_SUB_POINT", "to": 93}, {"from": 274, "title": "HAS_SUB_POINT", "to": 94}, {"from": 188, "title": "HAS_SUB_POINT", "to": 95}, {"from": 155, "title": "HAS_SUB_POINT", "to": 96}, {"from": 233, "title": "HAS_SUB_POINT", "to": 97}, {"from": 189, "title": "HAS_SUB_POINT", "to": 98}, {"from": 155, "title": "HAS_SUB_POINT", "to": 99}, {"from": 233, "title": "HAS_SUB_POINT", "to": 100}, {"from": 274, "title": "HAS_SUB_POINT", "to": 101}, {"from": 155, "title": "HAS_SUB_POINT", "to": 102}, {"from": 225, "title": "HAS_SUB_POINT", "to": 103}, {"from": 50, "title": "HAS_SUB_POINT", "to": 104}, {"from": 189, "title": "HAS_SUB_POINT", "to": 105}, {"from": 233, "title": "HAS_SUB_POINT", "to": 106}, {"from": 323, "title": "HAS_SUB_POINT", "to": 107}, {"from": 171, "title": "HAS_SUB_POINT", "to": 108}, {"from": 155, "title": "HAS_SUB_POINT", "to": 109}, {"from": 154, "title": "HAS_SUB_POINT", "to": 110}, {"from": 274, "title": "HAS_SUB_POINT", "to": 111}, {"from": 155, "title": "HAS_SUB_POINT", "to": 112}, {"from": 274, "title": "HAS_SUB_POINT", "to": 113}, {"from": 155, "title": "HAS_SUB_POINT", "to": 114}, {"from": 155, "title": "HAS_SUB_POINT", "to": 115}, {"from": 233, "title": "HAS_SUB_POINT", "to": 116}, {"from": 323, "title": "HAS_SUB_POINT", "to": 117}, {"from": 189, "title": "HAS_SUB_POINT", "to": 118}, {"from": 188, "title": "HAS_SUB_POINT", "to": 119}, {"from": 225, "title": "HAS_SUB_POINT", "to": 120}, {"from": 189, "title": "HAS_SUB_POINT", "to": 121}, {"from": 188, "title": "HAS_SUB_POINT", "to": 122}, {"from": 2, "title": "HAS_SUB_POINT", "to": 123}, {"from": 274, "title": "HAS_SUB_POINT", "to": 124}, {"from": 166, "title": "HAS_SUB_POINT", "to": 125}, {"from": 255, "title": "HAS_SUB_POINT", "to": 126}, {"from": 233, "title": "HAS_SUB_POINT", "to": 127}, {"from": 323, "title": "HAS_SUB_POINT", "to": 128}, {"from": 233, "title": "HAS_SUB_POINT", "to": 129}, {"from": 255, "title": "HAS_SUB_POINT", "to": 130}, {"from": 50, "title": "HAS_SUB_POINT", "to": 131}, {"from": 255, "title": "HAS_SUB_POINT", "to": 132}, {"from": 68, "title": "HAS_SUB_POINT", "to": 133}, {"from": 2, "title": "HAS_SUB_POINT", "to": 134}, {"from": 188, "title": "HAS_SUB_POINT", "to": 135}, {"from": 225, "title": "HAS_SUB_POINT", "to": 136}, {"from": 287, "title": "HAS_SUB_POINT", "to": 137}, {"from": 274, "title": "HAS_SUB_POINT", "to": 138}, {"from": 189, "title": "HAS_SUB_POINT", "to": 139}, {"from": 233, "title": "HAS_SUB_POINT", "to": 140}, {"from": 189, "title": "HAS_SUB_POINT", "to": 141}, {"from": 68, "title": "HAS_SUB_POINT", "to": 142}, {"from": 225, "title": "HAS_SUB_POINT", "to": 143}, {"from": 68, "title": "HAS_SUB_POINT", "to": 144}, {"from": 188, "title": "HAS_SUB_POINT", "to": 145}, {"from": 188, "title": "HAS_SUB_POINT", "to": 146}, {"from": 274, "title": "HAS_SUB_POINT", "to": 147}, {"from": 154, "title": "HAS_SUB_POINT", "to": 148}, {"from": 274, "title": "HAS_SUB_POINT", "to": 149}, {"from": 323, "title": "HAS_SUB_POINT", "to": 150}, {"from": 189, "title": "HAS_SUB_POINT", "to": 151}, {"from": 287, "title": "HAS_SUB_POINT", "to": 152}, {"from": 68, "title": "HAS_SUB_POINT", "to": 153}, {"from": 318, "title": "HAS_SUB_POINT", "to": 154}, {"from": 56, "title": "HAS_SUB_POINT", "to": 155}, {"from": 155, "title": "HAS_SUB_POINT", "to": 156}, {"from": 225, "title": "HAS_SUB_POINT", "to": 157}, {"from": 274, "title": "HAS_SUB_POINT", "to": 158}, {"from": 233, "title": "HAS_SUB_POINT", "to": 159}, {"from": 166, "title": "HAS_SUB_POINT", "to": 160}, {"from": 255, "title": "HAS_SUB_POINT", "to": 161}, {"from": 2, "title": "HAS_SUB_POINT", "to": 162}, {"from": 50, "title": "HAS_SUB_POINT", "to": 163}, {"from": 287, "title": "HAS_SUB_POINT", "to": 164}, {"from": 2, "title": "HAS_SUB_POINT", "to": 165}, {"from": 263, "title": "HAS_SUB_POINT", "to": 166}, {"from": 68, "title": "HAS_SUB_POINT", "to": 167}, {"from": 233, "title": "HAS_SUB_POINT", "to": 168}, {"from": 189, "title": "HAS_SUB_POINT", "to": 169}, {"from": 225, "title": "HAS_SUB_POINT", "to": 170}, {"from": 318, "title": "HAS_SUB_POINT", "to": 171}, {"from": 274, "title": "HAS_SUB_POINT", "to": 172}, {"from": 2, "title": "HAS_SUB_POINT", "to": 173}, {"from": 287, "title": "HAS_SUB_POINT", "to": 174}, {"from": 50, "title": "HAS_SUB_POINT", "to": 175}, {"from": 189, "title": "HAS_SUB_POINT", "to": 176}, {"from": 166, "title": "HAS_SUB_POINT", "to": 177}, {"from": 233, "title": "HAS_SUB_POINT", "to": 178}, {"from": 287, "title": "HAS_SUB_POINT", "to": 179}, {"from": 189, "title": "HAS_SUB_POINT", "to": 180}, {"from": 233, "title": "HAS_SUB_POINT", "to": 181}, {"from": 2, "title": "HAS_SUB_POINT", "to": 182}, {"from": 68, "title": "HAS_SUB_POINT", "to": 183}, {"from": 233, "title": "HAS_SUB_POINT", "to": 184}, {"from": 188, "title": "HAS_SUB_POINT", "to": 185}, {"from": 255, "title": "HAS_SUB_POINT", "to": 186}, {"from": 233, "title": "HAS_SUB_POINT", "to": 187}, {"from": 28, "title": "HAS_SUB_POINT", "to": 188}, {"from": 318, "title": "HAS_SUB_POINT", "to": 189}, {"from": 2, "title": "HAS_SUB_POINT", "to": 190}, {"from": 225, "title": "HAS_SUB_POINT", "to": 191}, {"from": 274, "title": "HAS_SUB_POINT", "to": 192}, {"from": 233, "title": "HAS_SUB_POINT", "to": 193}, {"from": 155, "title": "HAS_SUB_POINT", "to": 194}, {"from": 233, "title": "HAS_SUB_POINT", "to": 195}, {"from": 155, "title": "HAS_SUB_POINT", "to": 196}, {"from": 255, "title": "HAS_SUB_POINT", "to": 197}, {"from": 225, "title": "HAS_SUB_POINT", "to": 198}, {"from": 50, "title": "HAS_SUB_POINT", "to": 199}, {"from": 189, "title": "HAS_SUB_POINT", "to": 200}, {"from": 233, "title": "HAS_SUB_POINT", "to": 201}, {"from": 274, "title": "HAS_SUB_POINT", "to": 202}, {"from": 188, "title": "HAS_SUB_POINT", "to": 203}, {"from": 155, "title": "HAS_SUB_POINT", "to": 204}, {"from": 188, "title": "HAS_SUB_POINT", "to": 205}, {"from": 233, "title": "HAS_SUB_POINT", "to": 206}, {"from": 188, "title": "HAS_SUB_POINT", "to": 207}, {"from": 189, "title": "HAS_SUB_POINT", "to": 208}, {"from": 188, "title": "HAS_SUB_POINT", "to": 209}, {"from": 154, "title": "HAS_SUB_POINT", "to": 210}, {"from": 154, "title": "HAS_SUB_POINT", "to": 211}, {"from": 225, "title": "HAS_SUB_POINT", "to": 212}, {"from": 171, "title": "HAS_SUB_POINT", "to": 213}, {"from": 225, "title": "HAS_SUB_POINT", "to": 214}, {"from": 233, "title": "HAS_SUB_POINT", "to": 215}, {"from": 166, "title": "HAS_SUB_POINT", "to": 216}, {"from": 233, "title": "HAS_SUB_POINT", "to": 217}, {"from": 274, "title": "HAS_SUB_POINT", "to": 218}, {"from": 274, "title": "HAS_SUB_POINT", "to": 219}, {"from": 233, "title": "HAS_SUB_POINT", "to": 220}, {"from": 225, "title": "HAS_SUB_POINT", "to": 221}, {"from": 2, "title": "HAS_SUB_POINT", "to": 222}, {"from": 274, "title": "HAS_SUB_POINT", "to": 223}, {"from": 188, "title": "HAS_SUB_POINT", "to": 224}, {"from": 28, "title": "HAS_SUB_POINT", "to": 225}, {"from": 171, "title": "HAS_SUB_POINT", "to": 226}, {"from": 189, "title": "HAS_SUB_POINT", "to": 227}, {"from": 287, "title": "HAS_SUB_POINT", "to": 228}, {"from": 233, "title": "HAS_SUB_POINT", "to": 229}, {"from": 274, "title": "HAS_SUB_POINT", "to": 230}, {"from": 233, "title": "HAS_SUB_POINT", "to": 231}, {"from": 225, "title": "HAS_SUB_POINT", "to": 232}, {"from": 263, "title": "HAS_SUB_POINT", "to": 233}, {"from": 189, "title": "HAS_SUB_POINT", "to": 234}, {"from": 225, "title": "HAS_SUB_POINT", "to": 235}, {"from": 189, "title": "HAS_SUB_POINT", "to": 236}, {"from": 50, "title": "HAS_SUB_POINT", "to": 237}, {"from": 2, "title": "HAS_SUB_POINT", "to": 238}, {"from": 188, "title": "HAS_SUB_POINT", "to": 239}, {"from": 233, "title": "HAS_SUB_POINT", "to": 240}, {"from": 155, "title": "HAS_SUB_POINT", "to": 241}, {"from": 171, "title": "HAS_SUB_POINT", "to": 242}, {"from": 155, "title": "HAS_SUB_POINT", "to": 243}, {"from": 166, "title": "HAS_SUB_POINT", "to": 244}, {"from": 255, "title": "HAS_SUB_POINT", "to": 245}, {"from": 274, "title": "HAS_SUB_POINT", "to": 246}, {"from": 189, "title": "HAS_SUB_POINT", "to": 247}, {"from": 233, "title": "HAS_SUB_POINT", "to": 248}, {"from": 233, "title": "HAS_SUB_POINT", "to": 249}, {"from": 225, "title": "HAS_SUB_POINT", "to": 250}, {"from": 189, "title": "HAS_SUB_POINT", "to": 251}, {"from": 2, "title": "HAS_SUB_POINT", "to": 252}, {"from": 155, "title": "HAS_SUB_POINT", "to": 253}, {"from": 171, "title": "HAS_SUB_POINT", "to": 254}, {"from": 318, "title": "HAS_SUB_POINT", "to": 255}, {"from": 274, "title": "HAS_SUB_POINT", "to": 256}, {"from": 274, "title": "HAS_SUB_POINT", "to": 257}, {"from": 225, "title": "HAS_SUB_POINT", "to": 258}, {"from": 50, "title": "HAS_SUB_POINT", "to": 259}, {"from": 166, "title": "HAS_SUB_POINT", "to": 260}, {"from": 255, "title": "HAS_SUB_POINT", "to": 261}, {"from": 233, "title": "HAS_SUB_POINT", "to": 262}, {"from": 154, "title": "HAS_SUB_POINT", "to": 264}, {"from": 155, "title": "HAS_SUB_POINT", "to": 265}, {"from": 189, "title": "HAS_SUB_POINT", "to": 266}, {"from": 274, "title": "HAS_SUB_POINT", "to": 267}, {"from": 189, "title": "HAS_SUB_POINT", "to": 268}, {"from": 50, "title": "HAS_SUB_POINT", "to": 269}, {"from": 274, "title": "HAS_SUB_POINT", "to": 270}, {"from": 50, "title": "HAS_SUB_POINT", "to": 271}, {"from": 274, "title": "HAS_SUB_POINT", "to": 272}, {"from": 255, "title": "HAS_SUB_POINT", "to": 273}, {"from": 318, "title": "HAS_SUB_POINT", "to": 274}, {"from": 233, "title": "HAS_SUB_POINT", "to": 275}, {"from": 274, "title": "HAS_SUB_POINT", "to": 276}, {"from": 2, "title": "HAS_SUB_POINT", "to": 277}, {"from": 274, "title": "HAS_SUB_POINT", "to": 278}, {"from": 323, "title": "HAS_SUB_POINT", "to": 279}, {"from": 233, "title": "HAS_SUB_POINT", "to": 280}, {"from": 189, "title": "HAS_SUB_POINT", "to": 281}, {"from": 274, "title": "HAS_SUB_POINT", "to": 282}, {"from": 225, "title": "HAS_SUB_POINT", "to": 283}, {"from": 225, "title": "HAS_SUB_POINT", "to": 284}, {"from": 225, "title": "HAS_SUB_POINT", "to": 285}, {"from": 323, "title": "HAS_SUB_POINT", "to": 286}, {"from": 56, "title": "HAS_SUB_POINT", "to": 287}, {"from": 188, "title": "HAS_SUB_POINT", "to": 288}, {"from": 2, "title": "HAS_SUB_POINT", "to": 289}, {"from": 225, "title": "HAS_SUB_POINT", "to": 290}, {"from": 189, "title": "HAS_SUB_POINT", "to": 291}, {"from": 189, "title": "HAS_SUB_POINT", "to": 292}, {"from": 255, "title": "HAS_SUB_POINT", "to": 293}, {"from": 323, "title": "HAS_SUB_POINT", "to": 294}, {"from": 189, "title": "HAS_SUB_POINT", "to": 295}, {"from": 2, "title": "HAS_SUB_POINT", "to": 296}, {"from": 155, "title": "HAS_SUB_POINT", "to": 297}, {"from": 315, "title": "PREREQUISITE", "to": 104}, {"from": 315, "title": "PREREQUISITE", "to": 163}, {"from": 13, "title": "PREREQUISITE", "to": 104}, {"from": 315, "title": "RELATED", "to": 131}, {"from": 2, "title": "HAS_SUB_POINT", "to": 300}, {"from": 189, "title": "HAS_SUB_POINT", "to": 301}, {"from": 233, "title": "HAS_SUB_POINT", "to": 302}, {"from": 154, "title": "HAS_SUB_POINT", "to": 303}, {"from": 233, "title": "HAS_SUB_POINT", "to": 304}, {"from": 189, "title": "HAS_SUB_POINT", "to": 305}, {"from": 189, "title": "HAS_SUB_POINT", "to": 306}, {"from": 255, "title": "HAS_SUB_POINT", "to": 307}, {"from": 189, "title": "HAS_SUB_POINT", "to": 308}, {"from": 274, "title": "HAS_SUB_POINT", "to": 309}, {"from": 2, "title": "HAS_SUB_POINT", "to": 310}, {"from": 225, "title": "HAS_SUB_POINT", "to": 311}, {"from": 274, "title": "HAS_SUB_POINT", "to": 312}, {"from": 2, "title": "HAS_SUB_POINT", "to": 313}, {"from": 188, "title": "HAS_SUB_POINT", "to": 314}, {"from": 50, "title": "HAS_SUB_POINT", "to": 315}, {"from": 233, "title": "HAS_SUB_POINT", "to": 316}, {"from": 171, "title": "HAS_SUB_POINT", "to": 317}, {"from": 189, "title": "HAS_SUB_POINT", "to": 319}, {"from": 2, "title": "HAS_SUB_POINT", "to": 320}, {"from": 274, "title": "HAS_SUB_POINT", "to": 321}, {"from": 189, "title": "HAS_SUB_POINT", "to": 322}, {"from": 188, "title": "HAS_SUB_POINT", "to": 323}, {"from": 274, "title": "HAS_SUB_POINT", "to": 324}, {"from": 68, "title": "HAS_SUB_POINT", "to": 325}, {"from": 188, "title": "HAS_SUB_POINT", "to": 326}, {"from": 233, "title": "HAS_SUB_POINT", "to": 327}, {"from": 274, "title": "HAS_SUB_POINT", "to": 328}, {"from": 68, "title": "HAS_SUB_POINT", "to": 329}, {"from": 189, "title": "HAS_SUB_POINT", "to": 330}, {"from": 154, "title": "HAS_SUB_POINT", "to": 331}, {"from": 233, "title": "HAS_SUB_POINT", "to": 332}, {"from": 233, "title": "HAS_SUB_POINT", "to": 333}, {"from": 189, "title": "HAS_SUB_POINT", "to": 334}, {"from": 233, "title": "HAS_SUB_POINT", "to": 335}, {"from": 287, "title": "HAS_SUB_POINT", "to": 336}, {"from": 233, "title": "HAS_SUB_POINT", "to": 337}, {"from": 189, "title": "HAS_SUB_POINT", "to": 338}, {"from": 189, "title": "HAS_SUB_POINT", "to": 339}, {"from": 274, "title": "HAS_SUB_POINT", "to": 340}, {"from": 233, "title": "HAS_SUB_POINT", "to": 407}, {"from": 233, "title": "HAS_SUB_POINT", "to": 408}, {"from": 2, "title": "HAS_SUB_POINT", "to": 409}, {"from": 188, "title": "HAS_SUB_POINT", "to": 410}, {"from": 274, "title": "HAS_SUB_POINT", "to": 411}, {"from": 233, "title": "HAS_SUB_POINT", "to": 412}, {"from": 255, "title": "HAS_SUB_POINT", "to": 413}, {"from": 233, "title": "HAS_SUB_POINT", "to": 414}, {"from": 2, "title": "HAS_SUB_POINT", "to": 415}, {"from": 189, "title": "HAS_SUB_POINT", "to": 416}, {"from": 155, "title": "HAS_SUB_POINT", "to": 417}, {"from": 166, "title": "HAS_SUB_POINT", "to": 418}, {"from": 68, "title": "HAS_SUB_POINT", "to": 419}, {"from": 274, "title": "HAS_SUB_POINT", "to": 420}, {"from": 255, "title": "HAS_SUB_POINT", "to": 421}, {"from": 2, "title": "HAS_SUB_POINT", "to": 422}, {"from": 233, "title": "HAS_SUB_POINT", "to": 423}, {"from": 274, "title": "HAS_SUB_POINT", "to": 424}, {"from": 189, "title": "HAS_SUB_POINT", "to": 425}, {"from": 233, "title": "HAS_SUB_POINT", "to": 426}, {"from": 274, "title": "HAS_SUB_POINT", "to": 427}, {"from": 155, "title": "HAS_SUB_POINT", "to": 428}, {"from": 274, "title": "HAS_SUB_POINT", "to": 429}, {"from": 225, "title": "HAS_SUB_POINT", "to": 430}]); + nodes = new vis.DataSet([{"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 432, "label": "\u56fe\u5f62\u7684\u8ba4\u8bc6", "name": "\u56fe\u5f62\u7684\u8ba4\u8bc6", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 404, "label": "\u6b63\u65b9\u5f62\u7684\u7279\u5f81\u53ca\u6027\u8d28", "name": "\u6b63\u65b9\u5f62\u7684\u7279\u5f81\u53ca\u6027\u8d28", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 44, "label": "\u7b80\u5355\u6570\u636e\u7edf\u8ba1\u8fc7\u7a0b", "name": "\u7b80\u5355\u6570\u636e\u7edf\u8ba1\u8fc7\u7a0b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 405, "label": "\u7edf\u8ba1\u56fe\u7684\u9009\u62e9", "name": "\u7edf\u8ba1\u56fe\u7684\u9009\u62e9", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 122, "label": "\u6d4b\u91cf\u4e0e\u4f5c\u56fe", "name": "\u6d4b\u91cf\u4e0e\u4f5c\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 406, "label": "\u753b\u6307\u5b9a\u5468\u957f\u7684\u957f\u65b9\u5f62\u3001\u6b63\u65b9\u5f62", "name": "\u753b\u6307\u5b9a\u5468\u957f\u7684\u957f\u65b9\u5f62\u3001\u6b63\u65b9\u5f62", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 152, "label": "\u56fe\u5f62\u4e0e\u51e0\u4f55", "name": "\u56fe\u5f62\u4e0e\u51e0\u4f55", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 78, "label": "\u6570\u7684\u8ba4\u8bc6", "name": "\u6570\u7684\u8ba4\u8bc6", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 433, "label": "\u6574\u6570\u7684\u8ba4\u8bc6", "name": "\u6574\u6570\u7684\u8ba4\u8bc6", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 434, "label": "\u5706\u7684\u8ba4\u8bc6\u4e0e\u5706\u5468\u7387", "name": "\u5706\u7684\u8ba4\u8bc6\u4e0e\u5706\u5468\u7387", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 435, "label": "\u5206\u6570\u4e0e\u9664\u6cd5\u7684\u5173\u7cfb", "name": "\u5206\u6570\u4e0e\u9664\u6cd5\u7684\u5173\u7cfb", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 436, "label": "\u957f\u65b9\u4f53\u548c\u6b63\u65b9\u4f53\u7684\u4f53\u79ef", "name": "\u957f\u65b9\u4f53\u548c\u6b63\u65b9\u4f53\u7684\u4f53\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 55, "label": "\u56fe\u5f62\u7684\u8fd0\u52a8", "name": "\u56fe\u5f62\u7684\u8fd0\u52a8", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 437, "label": "\u5e73\u79fb", "name": "\u5e73\u79fb", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 60, "label": "\u5f0f\u4e0e\u65b9\u7a0b", "name": "\u5f0f\u4e0e\u65b9\u7a0b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 438, "label": "\u542b\u5b57\u6bcd\u5f0f\u5b50\u7684\u6c42\u503c", "name": "\u542b\u5b57\u6bcd\u5f0f\u5b50\u7684\u6c42\u503c", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 439, "label": "\u7ed8\u5236\u6761\u5f62\u7edf\u8ba1\u56fe", "name": "\u7ed8\u5236\u6761\u5f62\u7edf\u8ba1\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 163, "label": "\u6570\u7684\u8fd0\u7b97", "name": "\u6570\u7684\u8fd0\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 440, "label": "\u5546\u4e0d\u53d8\u7684\u6027\u8d28", "name": "\u5546\u4e0d\u53d8\u7684\u6027\u8d28", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 441, "label": "\u516c\u500d\u6570\u548c\u6700\u5c0f\u516c\u500d\u6570", "name": "\u516c\u500d\u6570\u548c\u6700\u5c0f\u516c\u500d\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 77, "label": "\u7efc\u5408\u5b9e\u8df5\u6d3b\u52a8", "name": "\u7efc\u5408\u5b9e\u8df5\u6d3b\u52a8", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 442, "label": "\u7c89\u5237\u56f4\u5899", "name": "\u7c89\u5237\u56f4\u5899", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 480, "label": "\u6b63\u6bd4\u4f8b\u3001\u53cd\u6bd4\u4f8b", "name": "\u6b63\u6bd4\u4f8b\u3001\u53cd\u6bd4\u4f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 443, "label": "\u8fa8\u8bc6\u6210\u6b63\u6bd4\u4f8b\u7684\u91cf\u4e0e\u6210\u53cd\u6bd4\u4f8b\u7684\u91cf", "name": "\u8fa8\u8bc6\u6210\u6b63\u6bd4\u4f8b\u7684\u91cf\u4e0e\u6210\u53cd\u6bd4\u4f8b\u7684\u91cf", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 144, "label": "\u5e38\u89c1\u7684\u91cf", "name": "\u5e38\u89c1\u7684\u91cf", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 444, "label": "\u9762\u79ef\u548c\u9762\u79ef\u5355\u4f4d", "name": "\u9762\u79ef\u548c\u9762\u79ef\u5355\u4f4d", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 445, "label": "\u4e58\u4e0e\u9664\u7684\u4e92\u9006\u5173\u7cfb", "name": "\u4e58\u4e0e\u9664\u7684\u4e92\u9006\u5173\u7cfb", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 114, "label": "\u6570\u5b66\u5e7f\u89d2", "name": "\u6570\u5b66\u5e7f\u89d2", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 446, "label": "\u9006\u63a8\u95ee\u9898", "name": "\u9006\u63a8\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 447, "label": "\u7ec4\u5408\u56fe\u5f62\u7684\u8ba1\u6570", "name": "\u7ec4\u5408\u56fe\u5f62\u7684\u8ba1\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 448, "label": "\u627e\u89c4\u5f8b", "name": "\u627e\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 449, "label": "\u6570\u5b66\u4e50\u56ed", "name": "\u6570\u5b66\u4e50\u56ed", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 176, "label": "\u968f\u673a\u73b0\u8c61\u53d1\u751f\u7684\u53ef\u80fd\u6027", "name": "\u968f\u673a\u73b0\u8c61\u53d1\u751f\u7684\u53ef\u80fd\u6027", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 450, "label": "\u7b80\u5355\u4e8b\u4ef6\u53d1\u751f\u7684\u53ef\u80fd\u6027\u6c42\u89e3", "name": "\u7b80\u5355\u4e8b\u4ef6\u53d1\u751f\u7684\u53ef\u80fd\u6027\u6c42\u89e3", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 451, "label": "\u6574\u6570\u5927\u5c0f\u7684\u6bd4\u8f83", "name": "\u6574\u6570\u5927\u5c0f\u7684\u6bd4\u8f83", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 452, "label": "\u548c\u5dee\u95ee\u9898", "name": "\u548c\u5dee\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 43, "label": "\u63a2\u7d22\u89c4\u5f8b", "name": "\u63a2\u7d22\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 453, "label": "\u201c\u5f0f\u201d\u7684\u89c4\u5f8b", "name": "\u201c\u5f0f\u201d\u7684\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 454, "label": "\u8425\u517b\u5348\u9910", "name": "\u8425\u517b\u5348\u9910", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 455, "label": "\u65cb\u8f6c", "name": "\u65cb\u8f6c", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 456, "label": "\u4f17\u6570\u7684\u610f\u4e49\u53ca\u6c42\u89e3\u65b9\u6cd5", "name": "\u4f17\u6570\u7684\u610f\u4e49\u53ca\u6c42\u89e3\u65b9\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 457, "label": "\u6574\u6570\u3001\u5047\u5206\u6570\u548c\u5e26\u5206\u6570\u7684\u4e92\u5316", "name": "\u6574\u6570\u3001\u5047\u5206\u6570\u548c\u5e26\u5206\u6570\u7684\u4e92\u5316", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 459, "label": "\u6590\u6ce2\u90a3\u5951\u6570\u5217", "name": "\u6590\u6ce2\u90a3\u5951\u6570\u5217", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 460, "label": "\u5c0f\u6570\u3001\u5206\u6570\u548c\u767e\u5206\u6570\u4e4b\u95f4\u7684\u5173\u7cfb\u53ca\u5176\u8f6c\u5316", "name": "\u5c0f\u6570\u3001\u5206\u6570\u548c\u767e\u5206\u6570\u4e4b\u95f4\u7684\u5173\u7cfb\u53ca\u5176\u8f6c\u5316", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 498, "label": "\u56fe\u5f62\u4e0e\u4f4d\u7f6e", "name": "\u56fe\u5f62\u4e0e\u4f4d\u7f6e", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 461, "label": "\u5e94\u7528\u6bd4\u4f8b\u5c3a\u753b\u56fe", "name": "\u5e94\u7528\u6bd4\u4f8b\u5c3a\u753b\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 462, "label": "\u6b63\u65b9\u4f53\u7684\u7279\u5f81", "name": "\u6b63\u65b9\u4f53\u7684\u7279\u5f81", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 463, "label": "\u7ec4\u5408\u56fe\u5f62\u7684\u4f53\u79ef", "name": "\u7ec4\u5408\u56fe\u5f62\u7684\u4f53\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 464, "label": "\u5206\u6570\u7684\u57fa\u672c\u6027\u8d28", "name": "\u5206\u6570\u7684\u57fa\u672c\u6027\u8d28", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 465, "label": "\u4f53\u79ef\u3001\u5bb9\u79ef\u8fdb\u7387\u53ca\u5355\u4f4d\u6362\u7b97", "name": "\u4f53\u79ef\u3001\u5bb9\u79ef\u8fdb\u7387\u53ca\u5355\u4f4d\u6362\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 466, "label": "\u8d1f\u6570\u7684\u610f\u4e49\u53ca\u5176\u5e94\u7528", "name": "\u8d1f\u6570\u7684\u610f\u4e49\u53ca\u5176\u5e94\u7528", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 467, "label": "\u5e73\u884c\u56db\u8fb9\u5f62\u7684\u9762\u79ef", "name": "\u5e73\u884c\u56db\u8fb9\u5f62\u7684\u9762\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 468, "label": "\u7b49\u5f0f\u7684\u610f\u4e49", "name": "\u7b49\u5f0f\u7684\u610f\u4e49", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 469, "label": "\u68af\u5f62\u7684\u9762\u79ef", "name": "\u68af\u5f62\u7684\u9762\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 470, "label": "\u5e73\u884c\u4e0e\u5782\u76f4", "name": "\u5e73\u884c\u4e0e\u5782\u76f4", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 471, "label": "\u89d2\u7684\u6982\u5ff5\u53ca\u5176\u5206\u7c7b", "name": "\u89d2\u7684\u6982\u5ff5\u53ca\u5176\u5206\u7c7b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 472, "label": "\u8bbe\u8ba1\u6821\u56ed", "name": "\u8bbe\u8ba1\u6821\u56ed", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 362, "label": "\u884c\u7a0b\u95ee\u9898", "name": "\u884c\u7a0b\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 473, "label": "\u9519\u8f66\u95ee\u9898", "name": "\u9519\u8f66\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 474, "label": "\u4f5c\u5e73\u79fb\u540e\u7684\u56fe\u5f62", "name": "\u4f5c\u5e73\u79fb\u540e\u7684\u56fe\u5f62", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 475, "label": "\u6570\u4e0e\u5f62\u7ed3\u5408\u7684\u89c4\u5f8b", "name": "\u6570\u4e0e\u5f62\u7ed3\u5408\u7684\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 476, "label": "\u5206\u6570\u7684\u62c6\u9879", "name": "\u5206\u6570\u7684\u62c6\u9879", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 477, "label": "\u7edf\u8ba1\u56fe\u8868\u7684\u586b\u8865", "name": "\u7edf\u8ba1\u56fe\u8868\u7684\u586b\u8865", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 478, "label": "\u6b63\u65b9\u4f53\u7684\u5c55\u5f00\u56fe", "name": "\u6b63\u65b9\u4f53\u7684\u5c55\u5f00\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 479, "label": "\u6bd4\u7684\u5e94\u7528", "name": "\u6bd4\u7684\u5e94\u7528", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 357, "label": "\u6570\u4e0e\u4ee3\u6570", "name": "\u6570\u4e0e\u4ee3\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 481, "label": "\u7ea6\u5206\u548c\u901a\u5206", "name": "\u7ea6\u5206\u548c\u901a\u5206", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 482, "label": "\u89d2\u7684\u753b\u6cd5", "name": "\u89d2\u7684\u753b\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 483, "label": "\u81ea\u884c\u8f66\u91cc\u7684\u6570\u5b66", "name": "\u81ea\u884c\u8f66\u91cc\u7684\u6570\u5b66", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 484, "label": "\u8d28\u91cf\u7684\u5355\u4f4d\u6362\u7b97", "name": "\u8d28\u91cf\u7684\u5355\u4f4d\u6362\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 485, "label": "\u6709\u4f59\u6570\u7684\u9664\u6cd5", "name": "\u6709\u4f59\u6570\u7684\u9664\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 487, "label": "\u5c0f\u6570\u7684\u8bfb\u5199\u3001\u610f\u4e49\u53ca\u5206\u7c7b", "name": "\u5c0f\u6570\u7684\u8bfb\u5199\u3001\u610f\u4e49\u53ca\u5206\u7c7b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 488, "label": "\u5782\u76f4\u4e0e\u5e73\u884c\u7684\u7279\u5f81\u53ca\u6027\u8d28", "name": "\u5782\u76f4\u4e0e\u5e73\u884c\u7684\u7279\u5f81\u53ca\u6027\u8d28", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 489, "label": "\u5047\u8bbe\u6cd5", "name": "\u5047\u8bbe\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 490, "label": "\u903b\u8f91\u63a8\u7406", "name": "\u903b\u8f91\u63a8\u7406", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 491, "label": "\u62bd\u5c49\u539f\u7406", "name": "\u62bd\u5c49\u539f\u7406", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 492, "label": "\u7269\u4f53\u7684\u6bd4\u8f83\u3001\u6392\u5217\u548c\u5206\u7c7b", "name": "\u7269\u4f53\u7684\u6bd4\u8f83\u3001\u6392\u5217\u548c\u5206\u7c7b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 493, "label": "\u7ebf\u6bb5\u4e0e\u89d2\u7684\u7efc\u5408", "name": "\u7ebf\u6bb5\u4e0e\u89d2\u7684\u7efc\u5408", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 494, "label": "\u5e73\u5747\u6570\u7684\u542b\u4e49\u53ca\u6c42\u5e73\u5747\u6570\u7684\u65b9\u6cd5", "name": "\u5e73\u5747\u6570\u7684\u542b\u4e49\u53ca\u6c42\u5e73\u5747\u6570\u7684\u65b9\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 495, "label": "\u5206\u6570\u56db\u5219\u590d\u5408\u5e94\u7528\u9898", "name": "\u5206\u6570\u56db\u5219\u590d\u5408\u5e94\u7528\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 496, "label": "\u5706\u3001\u5706\u73af\u7684\u5468\u957f", "name": "\u5706\u3001\u5706\u73af\u7684\u5468\u957f", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 497, "label": "\u5e74\u9f84\u95ee\u9898", "name": "\u5e74\u9f84\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 499, "label": "\u767e\u5206\u6570\u7684\u5b9e\u9645\u5e94\u7528", "name": "\u767e\u5206\u6570\u7684\u5b9e\u9645\u5e94\u7528", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 500, "label": "\u6570\u5217\u4e2d\u7684\u89c4\u5f8b", "name": "\u6570\u5217\u4e2d\u7684\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 501, "label": "\u5706\u9525\u7684\u7279\u5f81", "name": "\u5706\u9525\u7684\u7279\u5f81", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 502, "label": "\u770b\u4e00\u770b,\u6446\u4e00\u6446", "name": "\u770b\u4e00\u770b,\u6446\u4e00\u6446", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 503, "label": "\u4f5c\u8f74\u5bf9\u79f0\u56fe\u5f62", "name": "\u4f5c\u8f74\u5bf9\u79f0\u56fe\u5f62", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 504, "label": "\u70d9\u997c\u95ee\u9898", "name": "\u70d9\u997c\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 505, "label": "\u7edf\u8ba1\u7ed3\u679c\u7684\u89e3\u91ca\u548c\u636e\u6b64\u4f5c\u51fa\u7684\u5224\u65ad\u548c\u9884\u6d4b", "name": "\u7edf\u8ba1\u7ed3\u679c\u7684\u89e3\u91ca\u548c\u636e\u6b64\u4f5c\u51fa\u7684\u5224\u65ad\u548c\u9884\u6d4b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 506, "label": "\u5c0f\u6570\u7684\u52a0\u6cd5\u548c\u51cf\u6cd5", "name": "\u5c0f\u6570\u7684\u52a0\u6cd5\u548c\u51cf\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 507, "label": "\u5e74\u3001\u6708\u3001\u65e5\u53ca\u5176\u5173\u7cfb\u3001\u5355\u4f4d\u6362\u7b97\u4e0e\u8ba1\u7b97", "name": "\u5e74\u3001\u6708\u3001\u65e5\u53ca\u5176\u5173\u7cfb\u3001\u5355\u4f4d\u6362\u7b97\u4e0e\u8ba1\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 508, "label": "\u4ece\u7edf\u8ba1\u56fe\u8868\u4e2d\u83b7\u53d6\u4fe1\u606f", "name": "\u4ece\u7edf\u8ba1\u56fe\u8868\u4e2d\u83b7\u53d6\u4fe1\u606f", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 509, "label": "\u94fa\u4e00\u94fa", "name": "\u94fa\u4e00\u94fa", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 510, "label": "\u9762\u79ef\u53ca\u9762\u79ef\u7684\u5927\u5c0f\u6bd4\u8f83", "name": "\u9762\u79ef\u53ca\u9762\u79ef\u7684\u5927\u5c0f\u6bd4\u8f83", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 511, "label": "\u7b49\u8170\u4e09\u89d2\u5f62\u4e0e\u7b49\u8fb9\u4e09\u89d2\u5f62", "name": "\u7b49\u8170\u4e09\u89d2\u5f62\u4e0e\u7b49\u8fb9\u4e09\u89d2\u5f62", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 512, "label": "\u627e\u4e00\u4e2a\u6570\u7684\u56e0\u6570\u7684\u65b9\u6cd5", "name": "\u627e\u4e00\u4e2a\u6570\u7684\u56e0\u6570\u7684\u65b9\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 513, "label": "\u8ba1\u6570\u5355\u4f4d", "name": "\u8ba1\u6570\u5355\u4f4d", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 514, "label": "\u6b63\u6bd4\u4f8b\u548c\u53cd\u6bd4\u4f8b\u7684\u610f\u4e49", "name": "\u6b63\u6bd4\u4f8b\u548c\u53cd\u6bd4\u4f8b\u7684\u610f\u4e49", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 515, "label": "\u6d41\u6c34\u3001\u884c\u8239\u95ee\u9898", "name": "\u6d41\u6c34\u3001\u884c\u8239\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 516, "label": "\u4f4d\u7f6e\u4e0e\u65b9\u5411", "name": "\u4f4d\u7f6e\u4e0e\u65b9\u5411", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 517, "label": "\u4ece\u4e0d\u540c\u65b9\u5411\u89c2\u5bdf\u7269\u4f53\u548c\u51e0\u4f55\u4f53", "name": "\u4ece\u4e0d\u540c\u65b9\u5411\u89c2\u5bdf\u7269\u4f53\u548c\u51e0\u4f55\u4f53", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 518, "label": "\u8fd1\u4f3c\u6570\u53ca\u5176\u6c42\u6cd5", "name": "\u8fd1\u4f3c\u6570\u53ca\u5176\u6c42\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 519, "label": "\u7acb\u4f53\u56fe\u5f62\u7684\u5bb9\u79ef", "name": "\u7acb\u4f53\u56fe\u5f62\u7684\u5bb9\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 520, "label": "\u65b9\u7a0b\u7684\u610f\u4e49", "name": "\u65b9\u7a0b\u7684\u610f\u4e49", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 521, "label": "\u7b80\u5355\u7684\u884c\u7a0b\u95ee\u9898", "name": "\u7b80\u5355\u7684\u884c\u7a0b\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 522, "label": "\u5468\u957f", "name": "\u5468\u957f", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 523, "label": "\u7b80\u5355\u56fe\u5f62\u7684\u6298\u53e0\u95ee\u9898", "name": "\u7b80\u5355\u56fe\u5f62\u7684\u6298\u53e0\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 524, "label": "\u5206\u6570\u5355\u4f4d", "name": "\u5206\u6570\u5355\u4f4d", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 525, "label": "\u5408\u7406\u5b58\u6b3e", "name": "\u5408\u7406\u5b58\u6b3e", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 526, "label": "\u7b80\u5355\u7684\u6392\u5217\u3001\u7ec4\u5408", "name": "\u7b80\u5355\u7684\u6392\u5217\u3001\u7ec4\u5408", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 527, "label": "\u7ec4\u5408\u56fe\u5f62\u7684\u9762\u79ef", "name": "\u7ec4\u5408\u56fe\u5f62\u7684\u9762\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 528, "label": "\u5206\u6570\u7684\u610f\u4e49\u3001\u8bfb\u5199\u53ca\u5206\u7c7b", "name": "\u5206\u6570\u7684\u610f\u4e49\u3001\u8bfb\u5199\u53ca\u5206\u7c7b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 529, "label": "\u8bbe\u8ba1\u7edf\u8ba1\u6d3b\u52a8", "name": "\u8bbe\u8ba1\u7edf\u8ba1\u6d3b\u52a8", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 530, "label": "\u6b63\u65b9\u5f62\u7684\u5468\u957f", "name": "\u6b63\u65b9\u5f62\u7684\u5468\u957f", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 531, "label": "\u6574\u6570\u7684\u52a0\u6cd5\u548c\u51cf\u6cd5", "name": "\u6574\u6570\u7684\u52a0\u6cd5\u548c\u51cf\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 532, "label": "\u4ee5\u4e00\u5f53\u4e94\uff08\u6216\u4ee5\u4e0a\uff09\u7684\u6761\u5f62\u7edf\u8ba1\u56fe", "name": "\u4ee5\u4e00\u5f53\u4e94\uff08\u6216\u4ee5\u4e0a\uff09\u7684\u6761\u5f62\u7edf\u8ba1\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 533, "label": "\u7530\u5fcc\u8d5b\u9a6c\u95ee\u9898", "name": "\u7530\u5fcc\u8d5b\u9a6c\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 534, "label": "\u7b80\u5355\u7684\u5f52\u4e00\u5e94\u7528\u9898", "name": "\u7b80\u5355\u7684\u5f52\u4e00\u5e94\u7528\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 535, "label": "\u771f\u5206\u6570\u548c\u5047\u5206\u6570", "name": "\u771f\u5206\u6570\u548c\u5047\u5206\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 536, "label": "\u753b\u6307\u5b9a\u957f\u3001\u5bbd\uff08\u8fb9\u957f\uff09\u7684\u957f\u65b9\u5f62\u3001\u6b63\u65b9\u5f62", "name": "\u753b\u6307\u5b9a\u957f\u3001\u5bbd\uff08\u8fb9\u957f\uff09\u7684\u957f\u65b9\u5f62\u3001\u6b63\u65b9\u5f62", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 537, "label": "\u53d1\u8f66\u95f4\u9694\u95ee\u9898", "name": "\u53d1\u8f66\u95f4\u9694\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 538, "label": "\u65b9\u7a0b\u4e0e\u7b49\u5f0f\u7684\u5173\u7cfb", "name": "\u65b9\u7a0b\u4e0e\u7b49\u5f0f\u7684\u5173\u7cfb", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 539, "label": "\u7edf\u8ba1\u56fe\u7684\u7279\u70b9", "name": "\u7edf\u8ba1\u56fe\u7684\u7279\u70b9", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 540, "label": "\u7b80\u5355\u56fe\u5f62\u8986\u76d6\u73b0\u8c61\u4e2d\u7684\u89c4\u5f8b", "name": "\u7b80\u5355\u56fe\u5f62\u8986\u76d6\u73b0\u8c61\u4e2d\u7684\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 0, "label": "\u9000\u4f4d\u51cf\u6cd5", "name": "\u9000\u4f4d\u51cf\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 1, "label": "\u7edf\u8ba1\u56fe\u8868\u7684\u7efc\u5408\u5206\u6790\u3001\u89e3\u91ca\u548c\u5e94\u7528", "name": "\u7edf\u8ba1\u56fe\u8868\u7684\u7efc\u5408\u5206\u6790\u3001\u89e3\u91ca\u548c\u5e94\u7528", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 2, "label": "\u5206\u6570\u7684\u7b80\u4fbf\u8ba1\u7b97", "name": "\u5206\u6570\u7684\u7b80\u4fbf\u8ba1\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 3, "label": "\u6247\u5f62\u7edf\u8ba1\u56fe", "name": "\u6247\u5f62\u7edf\u8ba1\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 4, "label": "\u7edf\u8ba1\u91cf\u7684\u9009\u62e9", "name": "\u7edf\u8ba1\u91cf\u7684\u9009\u62e9", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 5, "label": "\u957f\u5ea6\u3001\u5468\u957f\u7684\u4f30\u7b97", "name": "\u957f\u5ea6\u3001\u5468\u957f\u7684\u4f30\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 6, "label": "\u949f\u9762\u4e0a\u7684\u8ffd\u53ca\u95ee\u9898", "name": "\u949f\u9762\u4e0a\u7684\u8ffd\u53ca\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 7, "label": "\u5b58\u6b3e\u5229\u606f\u4e0e\u7eb3\u7a0e\u76f8\u5173\u95ee\u9898", "name": "\u5b58\u6b3e\u5229\u606f\u4e0e\u7eb3\u7a0e\u76f8\u5173\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 8, "label": "\u6211\u4eec\u7684\u6821\u56ed", "name": "\u6211\u4eec\u7684\u6821\u56ed", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 9, "label": "\u9e21\u5154\u540c\u7b3c", "name": "\u9e21\u5154\u540c\u7b3c", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 10, "label": "\u5206\u6570\u5927\u5c0f\u7684\u6bd4\u8f83", "name": "\u5206\u6570\u5927\u5c0f\u7684\u6bd4\u8f83", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 11, "label": "\u8282\u7ea6\u7528\u6c34", "name": "\u8282\u7ea6\u7528\u6c34", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 12, "label": "\u5706\u67f1\u7684\u5c55\u5f00\u56fe", "name": "\u5706\u67f1\u7684\u5c55\u5f00\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 13, "label": "\u5355\u4f4d\u201c1\u201d\u7684\u8ba4\u8bc6\u53ca\u786e\u5b9a", "name": "\u5355\u4f4d\u201c1\u201d\u7684\u8ba4\u8bc6\u53ca\u786e\u5b9a", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 14, "label": "\u8f74\u5bf9\u79f0\u56fe\u5f62\u7684\u8fa8\u8bc6", "name": "\u8f74\u5bf9\u79f0\u56fe\u5f62\u7684\u8fa8\u8bc6", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 15, "label": "\u8ba1\u91cf\u5355\u4f4d\u4e2d\u5355\u590d\u540d\u6570\u7684\u6539\u5199", "name": "\u8ba1\u91cf\u5355\u4f4d\u4e2d\u5355\u590d\u540d\u6570\u7684\u6539\u5199", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 16, "label": "\u957f\u65b9\u5f62\u7684\u5468\u957f", "name": "\u957f\u65b9\u5f62\u7684\u5468\u957f", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 17, "label": "\u73af\u5f62\u8dd1\u9053\u95ee\u9898", "name": "\u73af\u5f62\u8dd1\u9053\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 18, "label": "\u4f5c\u5e73\u884c\u56db\u8fb9\u5f62\u7684\u9ad8", "name": "\u4f5c\u5e73\u884c\u56db\u8fb9\u5f62\u7684\u9ad8", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 19, "label": "\u5e73\u5e74\u3001\u95f0\u5e74\u7684\u5224\u65ad\u65b9\u6cd5", "name": "\u5e73\u5e74\u3001\u95f0\u5e74\u7684\u5224\u65ad\u65b9\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 20, "label": "\u6bd4\u7684\u6027\u8d28", "name": "\u6bd4\u7684\u6027\u8d28", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 21, "label": "\u8fdb\u7387\u4e0e\u6362\u7b97", "name": "\u8fdb\u7387\u4e0e\u6362\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 22, "label": "\u6bd4\u4f8b\u5c3a", "name": "\u6bd4\u4f8b\u5c3a", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 23, "label": "\u4e09\u89d2\u5f62\u7684\u5185\u89d2\u548c", "name": "\u4e09\u89d2\u5f62\u7684\u5185\u89d2\u548c", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 24, "label": "\u526a\u4e00\u526a", "name": "\u526a\u4e00\u526a", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 25, "label": "\u4f18\u5316\u4e0e\u8fd0\u7b79", "name": "\u4f18\u5316\u4e0e\u8fd0\u7b79", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 26, "label": "\u9884\u6d4b\u7b80\u5355\u4e8b\u4ef6\u53d1\u751f\u7684\u53ef\u80fd\u6027\u53ca\u7406\u7531\u9610\u8ff0", "name": "\u9884\u6d4b\u7b80\u5355\u4e8b\u4ef6\u53d1\u751f\u7684\u53ef\u80fd\u6027\u53ca\u7406\u7531\u9610\u8ff0", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 27, "label": "\u5c0f\u6570\u56db\u5219\u6df7\u5408\u8fd0\u7b97", "name": "\u5c0f\u6570\u56db\u5219\u6df7\u5408\u8fd0\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 28, "label": "\u5408\u6570\u5206\u89e3\u8d28\u56e0\u6570", "name": "\u5408\u6570\u5206\u89e3\u8d28\u56e0\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 29, "label": "\u7528\u4e09\u89d2\u5c3a\u753b30\u00b0\uff0c45\u00b0\uff0c60\u00b0\uff0c90\u00b0\u89d2", "name": "\u7528\u4e09\u89d2\u5c3a\u753b30\u00b0\uff0c45\u00b0\uff0c60\u00b0\uff0c90\u00b0\u89d2", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 30, "label": "\u767e\u5206\u7387\u5e94\u7528\u9898", "name": "\u767e\u5206\u7387\u5e94\u7528\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 31, "label": "\u6839\u636e\u65b9\u5411\u548c\u8ddd\u79bb\u786e\u5b9a\u7269\u4f53\u7684\u4f4d\u7f6e", "name": "\u6839\u636e\u65b9\u5411\u548c\u8ddd\u79bb\u786e\u5b9a\u7269\u4f53\u7684\u4f4d\u7f6e", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 32, "label": "\u6c8f\u8336\u95ee\u9898", "name": "\u6c8f\u8336\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 33, "label": "\u8def\u7ebf\u56fe", "name": "\u8def\u7ebf\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 34, "label": "\u63b7\u4e00\u63b7", "name": "\u63b7\u4e00\u63b7", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 35, "label": "\u6253\u7535\u8bdd", "name": "\u6253\u7535\u8bdd", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 36, "label": "\u5206\u6570\u9664\u6cd5", "name": "\u5206\u6570\u9664\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 37, "label": "\u6570\u8868\u4e2d\u7684\u89c4\u5f8b", "name": "\u6570\u8868\u4e2d\u7684\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 38, "label": "\u5206\u6570\u4e58\u6cd5\u5e94\u7528\u9898", "name": "\u5206\u6570\u4e58\u6cd5\u5e94\u7528\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 39, "label": "\u706b\u8f66\u8fc7\u6865\u95ee\u9898", "name": "\u706b\u8f66\u8fc7\u6865\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 40, "label": "\u5c0f\u6570\u4e0e\u5206\u6570\u7684\u4e92\u5316", "name": "\u5c0f\u6570\u4e0e\u5206\u6570\u7684\u4e92\u5316", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 41, "label": "\u4e8b\u4ef6\u7684\u786e\u5b9a\u6027\u4e0e\u4e0d\u786e\u5b9a\u6027", "name": "\u4e8b\u4ef6\u7684\u786e\u5b9a\u6027\u4e0e\u4e0d\u786e\u5b9a\u6027", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 42, "label": "\u6570\u5bf9\u4e0e\u4f4d\u7f6e", "name": "\u6570\u5bf9\u4e0e\u4f4d\u7f6e", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 486, "label": "\u7edf\u8ba1\u4e0e\u6982\u7387", "name": "\u7edf\u8ba1\u4e0e\u6982\u7387", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 45, "label": "\u590d\u5f0f\u7edf\u8ba1\u8868", "name": "\u590d\u5f0f\u7edf\u8ba1\u8868", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 46, "label": "\u6570\u5b57\u7f16\u7801", "name": "\u6570\u5b57\u7f16\u7801", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 47, "label": "\u4e58\u6cd5\u7684\u5e94\u7528", "name": "\u4e58\u6cd5\u7684\u5e94\u7528", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 48, "label": "\u89d2\u7684\u5ea6\u91cf", "name": "\u89d2\u7684\u5ea6\u91cf", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 49, "label": "\u8fd0\u7528\u5e73\u79fb\u3001\u5bf9\u79f0\u548c\u65cb\u8f6c\u8bbe\u8ba1\u56fe\u6848", "name": "\u8fd0\u7528\u5e73\u79fb\u3001\u5bf9\u79f0\u548c\u65cb\u8f6c\u8bbe\u8ba1\u56fe\u6848", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 50, "label": "\u8d28\u91cf\u53ca\u8d28\u91cf\u7684\u5e38\u7528\u5355\u4f4d", "name": "\u8d28\u91cf\u53ca\u8d28\u91cf\u7684\u5e38\u7528\u5355\u4f4d", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 51, "label": "\u89c2\u5bdf\u7684\u8303\u56f4", "name": "\u89c2\u5bdf\u7684\u8303\u56f4", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 52, "label": "\u6bd4\u7684\u8bfb\u6cd5\u3001\u5199\u6cd5\u53ca\u5404\u90e8\u5206\u7684\u540d\u79f0", "name": "\u6bd4\u7684\u8bfb\u6cd5\u3001\u5199\u6cd5\u53ca\u5404\u90e8\u5206\u7684\u540d\u79f0", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 53, "label": "\u751f\u6d3b\u4e2d\u7684\u53ef\u80fd\u6027\u73b0\u8c61", "name": "\u751f\u6d3b\u4e2d\u7684\u53ef\u80fd\u6027\u73b0\u8c61", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 54, "label": "\u5e73\u884c\u56db\u8fb9\u5f62\u7684\u7279\u5f81\u53ca\u6027\u8d28", "name": "\u5e73\u884c\u56db\u8fb9\u5f62\u7684\u7279\u5f81\u53ca\u6027\u8d28", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 56, "label": "\u56fe\u4e0a\u8ddd\u79bb\u4e0e\u5b9e\u9645\u8ddd\u79bb\u7684\u6362\u7b97", "name": "\u56fe\u4e0a\u8ddd\u79bb\u4e0e\u5b9e\u9645\u8ddd\u79bb\u7684\u6362\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 57, "label": "\u753b\u5706", "name": "\u753b\u5706", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 58, "label": "\u6b63\u3001\u8d1f\u6570\u5927\u5c0f\u7684\u6bd4\u8f83", "name": "\u6b63\u3001\u8d1f\u6570\u5927\u5c0f\u7684\u6bd4\u8f83", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 59, "label": "\u690d\u6811\u95ee\u9898", "name": "\u690d\u6811\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 61, "label": "\u8868\u5185\u9664\u6cd5", "name": "\u8868\u5185\u9664\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 62, "label": "\u76f4\u7ebf\u3001\u7ebf\u6bb5\u548c\u5c04\u7ebf\u7684\u8ba4\u8bc6", "name": "\u76f4\u7ebf\u3001\u7ebf\u6bb5\u548c\u5c04\u7ebf\u7684\u8ba4\u8bc6", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 63, "label": "\u53ef\u80fd\u6027\u7684\u5927\u5c0f", "name": "\u53ef\u80fd\u6027\u7684\u5927\u5c0f", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 64, "label": "\u6c42\u6bd4\u503c\u548c\u5316\u7b80\u6bd4", "name": "\u6c42\u6bd4\u503c\u548c\u5316\u7b80\u6bd4", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 65, "label": "\u516c\u56e0\u6570\u548c\u516c\u500d\u6570\u5e94\u7528\u9898", "name": "\u516c\u56e0\u6570\u548c\u516c\u500d\u6570\u5e94\u7528\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 66, "label": "\u8f74\u5bf9\u79f0", "name": "\u8f74\u5bf9\u79f0", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 67, "label": "\u753b\u6307\u5b9a\u5ea6\u6570\u7684\u89d2", "name": "\u753b\u6307\u5b9a\u5ea6\u6570\u7684\u89d2", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 68, "label": "\u6e38\u620f\u89c4\u5219\u7684\u516c\u5e73\u6027", "name": "\u6e38\u620f\u89c4\u5219\u7684\u516c\u5e73\u6027", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 69, "label": "\u6570\u8f74\u7684\u8ba4\u8bc6", "name": "\u6570\u8f74\u7684\u8ba4\u8bc6", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 70, "label": "\u5706\u9525\u7684\u4fa7\u9762\u79ef\u548c\u8868\u9762\u79ef", "name": "\u5706\u9525\u7684\u4fa7\u9762\u79ef\u548c\u8868\u9762\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 71, "label": "\u5706\u67f1\u7684\u7279\u5f81", "name": "\u5706\u67f1\u7684\u7279\u5f81", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 72, "label": "\u5728\u5e73\u9762\u56fe\u4e0a\u6807\u51fa\u7269\u4f53\u7684\u4f4d\u7f6e", "name": "\u5728\u5e73\u9762\u56fe\u4e0a\u6807\u51fa\u7269\u4f53\u7684\u4f4d\u7f6e", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 73, "label": "\u753b\u8f74\u5bf9\u79f0\u56fe\u5f62\u7684\u5bf9\u79f0\u8f74", "name": "\u753b\u8f74\u5bf9\u79f0\u56fe\u5f62\u7684\u5bf9\u79f0\u8f74", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 74, "label": "\u586b\u4e00\u586b,\u8bf4\u4e00\u8bf4", "name": "\u586b\u4e00\u586b,\u8bf4\u4e00\u8bf4", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 75, "label": "\u65f6\u3001\u5206\u3001\u79d2\u53ca\u5176\u5173\u7cfb\u3001\u5355\u4f4d\u6362\u7b97\u4e0e\u8ba1\u7b97", "name": "\u65f6\u3001\u5206\u3001\u79d2\u53ca\u5176\u5173\u7cfb\u3001\u5355\u4f4d\u6362\u7b97\u4e0e\u8ba1\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 76, "label": "\u5706\u67f1\u7684\u4fa7\u9762\u79ef\u3001\u8868\u9762\u79ef\u548c\u4f53\u79ef", "name": "\u5706\u67f1\u7684\u4fa7\u9762\u79ef\u3001\u8868\u9762\u79ef\u548c\u4f53\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 458, "label": "\u7efc\u5408\u4e0e\u5b9e\u8df5", "name": "\u7efc\u5408\u4e0e\u5b9e\u8df5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 79, "label": "\u957f\u65b9\u4f53\u7684\u5c55\u5f00\u56fe", "name": "\u957f\u65b9\u4f53\u7684\u5c55\u5f00\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 80, "label": "\u5f52\u4e00\u5f52\u603b\u95ee\u9898", "name": "\u5f52\u4e00\u5f52\u603b\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 81, "label": "\u6570\u7684\u4f30\u7b97", "name": "\u6570\u7684\u4f30\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 82, "label": "\u5706\u9525\u7684\u4f53\u79ef", "name": "\u5706\u9525\u7684\u4f53\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 83, "label": "\u7b80\u5355\u8c03\u67e5\u8868\u7684\u8bbe\u8ba1", "name": "\u7b80\u5355\u8c03\u67e5\u8868\u7684\u8bbe\u8ba1", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 84, "label": "\u4f5c\u65cb\u8f6c\u4e00\u5b9a\u89d2\u5ea6\u540e\u7684\u56fe\u5f62", "name": "\u4f5c\u65cb\u8f6c\u4e00\u5b9a\u89d2\u5ea6\u540e\u7684\u56fe\u5f62", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 85, "label": "\u4e2d\u4f4d\u6570\u7684\u610f\u4e49\u53ca\u6c42\u89e3\u65b9\u6cd5", "name": "\u4e2d\u4f4d\u6570\u7684\u610f\u4e49\u53ca\u6c42\u89e3\u65b9\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 86, "label": "\u6839\u636e\u60c5\u666f\u9009\u62e9\u5408\u9002\u7684\u8ba1\u91cf\u5355\u4f4d", "name": "\u6839\u636e\u60c5\u666f\u9009\u62e9\u5408\u9002\u7684\u8ba1\u91cf\u5355\u4f4d", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 87, "label": "\u6392\u5217\u7ec4\u5408", "name": "\u6392\u5217\u7ec4\u5408", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 88, "label": "\u76c8\u4e8f\u95ee\u9898", "name": "\u76c8\u4e8f\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 89, "label": "\u6c42\u51e0\u4e2a\u6570\u7684\u6700\u5927\u516c\u56e0\u6570\u7684\u65b9\u6cd5", "name": "\u6c42\u51e0\u4e2a\u6570\u7684\u6700\u5927\u516c\u56e0\u6570\u7684\u65b9\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 90, "label": "\u4f5c\u4e09\u89d2\u5f62\u7684\u9ad8", "name": "\u4f5c\u4e09\u89d2\u5f62\u7684\u9ad8", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 91, "label": "\u4e58\u6cd5\u8fd0\u7b97\u5b9a\u5f8b", "name": "\u4e58\u6cd5\u8fd0\u7b97\u5b9a\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 92, "label": "1\u4ebf\u6709\u591a\u5927", "name": "1\u4ebf\u6709\u591a\u5927", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 93, "label": "\u7b80\u5355\u7684\u7edf\u8ba1\u8868", "name": "\u7b80\u5355\u7684\u7edf\u8ba1\u8868", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 94, "label": "\u6446\u4e00\u6446,\u60f3\u4e00\u60f3", "name": "\u6446\u4e00\u6446,\u60f3\u4e00\u60f3", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 95, "label": "\u5de7\u7b97\u5468\u957f", "name": "\u5de7\u7b97\u5468\u957f", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 96, "label": "\u6709\u591a\u91cd", "name": "\u6709\u591a\u91cd", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 97, "label": "\u5c0f\u6570\u70b9\u4f4d\u7f6e\u7684\u79fb\u52a8\u4e0e\u5c0f\u6570\u5927\u5c0f\u7684\u53d8\u5316\u89c4\u5f8b", "name": "\u5c0f\u6570\u70b9\u4f4d\u7f6e\u7684\u79fb\u52a8\u4e0e\u5c0f\u6570\u5927\u5c0f\u7684\u53d8\u5316\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 98, "label": "\u786e\u5b9a\u8d77\u8dd1\u7ebf", "name": "\u786e\u5b9a\u8d77\u8dd1\u7ebf", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 99, "label": "\u4e8b\u7269\u7684\u95f4\u9694\u6392\u5217\u89c4\u5f8b", "name": "\u4e8b\u7269\u7684\u95f4\u9694\u6392\u5217\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 100, "label": "\u901a\u8fc7\u64cd\u4f5c\u5b9e\u9a8c\u63a2\u7d22\u89c4\u5f8b", "name": "\u901a\u8fc7\u64cd\u4f5c\u5b9e\u9a8c\u63a2\u7d22\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 101, "label": "\u96c6\u5408", "name": "\u96c6\u5408", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 102, "label": "\u4e0d\u7b49\u5f0f\u7684\u610f\u4e49\u53ca\u89e3\u6cd5", "name": "\u4e0d\u7b49\u5f0f\u7684\u610f\u4e49\u53ca\u89e3\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 103, "label": "\u5dee\u500d\u95ee\u9898", "name": "\u5dee\u500d\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 104, "label": "\u9732\u5728\u5916\u9762\u7684\u9762", "name": "\u9732\u5728\u5916\u9762\u7684\u9762", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 105, "label": "\u955c\u9762\u5bf9\u79f0", "name": "\u955c\u9762\u5bf9\u79f0", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 106, "label": "\u4e09\u89d2\u5f62\u7684\u9762\u79ef", "name": "\u4e09\u89d2\u5f62\u7684\u9762\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 107, "label": "\u6574\u6570\u7684\u4e58\u6cd5\u53ca\u5e94\u7528", "name": "\u6574\u6570\u7684\u4e58\u6cd5\u53ca\u5e94\u7528", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 108, "label": "\u5c0f\u6570\u4e58\u6cd5", "name": "\u5c0f\u6570\u4e58\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 109, "label": "\u4f5c\u68af\u5f62\u7684\u9ad8", "name": "\u4f5c\u68af\u5f62\u7684\u9ad8", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 110, "label": "\u63e1\u624b\u95ee\u9898", "name": "\u63e1\u624b\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 111, "label": "\u7b80\u5355\u7684\u7acb\u65b9\u4f53\u5207\u62fc\u95ee\u9898", "name": "\u7b80\u5355\u7684\u7acb\u65b9\u4f53\u5207\u62fc\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 112, "label": "\u8fd0\u7b97\u5b9a\u5f8b\u4e0e\u7b80\u4fbf\u8fd0\u7b97", "name": "\u8fd0\u7b97\u5b9a\u5f8b\u4e0e\u7b80\u4fbf\u8fd0\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 113, "label": "\u91cf\u4e00\u91cf \u627e\u89c4\u5f8b", "name": "\u91cf\u4e00\u91cf \u627e\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 115, "label": "\u5217\u65b9\u7a0b\u89e3\u5e94\u7528\u9898", "name": "\u5217\u65b9\u7a0b\u89e3\u5e94\u7528\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 116, "label": "\u6700\u7b80\u5206\u6570", "name": "\u6700\u7b80\u5206\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 117, "label": "\u6982\u7387\u7684\u8ba4\u8bc6", "name": "\u6982\u7387\u7684\u8ba4\u8bc6", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 118, "label": "\u957f\u65b9\u4f53\u548c\u6b63\u65b9\u4f53\u7684\u8868\u9762\u79ef", "name": "\u957f\u65b9\u4f53\u548c\u6b63\u65b9\u4f53\u7684\u8868\u9762\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 119, "label": "\u79ef\u7684\u53d8\u5316\u89c4\u5f8b", "name": "\u79ef\u7684\u53d8\u5316\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 120, "label": "\u7403\u7684\u7403\u9762\u9762\u79ef\u548c\u4f53\u79ef", "name": "\u7403\u7684\u7403\u9762\u9762\u79ef\u548c\u4f53\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 121, "label": "\u76c8\u4e8f\u95ee\u9898", "name": "\u76c8\u4e8f\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 123, "label": "\u5c0f\u6570\u7684\u6027\u8d28\u53ca\u6539\u5199", "name": "\u5c0f\u6570\u7684\u6027\u8d28\u53ca\u6539\u5199", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 124, "label": "\u5468\u671f\u95ee\u9898", "name": "\u5468\u671f\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 125, "label": "2\u30013\u30015\u7684\u500d\u6570\u7279\u5f81", "name": "2\u30013\u30015\u7684\u500d\u6570\u7279\u5f81", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 126, "label": "\u89e3\u6bd4\u4f8b", "name": "\u89e3\u6bd4\u4f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 127, "label": "\u4e09\u89d2\u5f62\u7684\u5206\u7c7b", "name": "\u4e09\u89d2\u5f62\u7684\u5206\u7c7b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 128, "label": "\u4f60\u5bc4\u8fc7\u8d3a\u5361\u5417", "name": "\u4f60\u5bc4\u8fc7\u8d3a\u5361\u5417", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 129, "label": "\u63a2\u7d22\u67d0\u4e9b\u5b9e\u7269\u4f53\u79ef\u7684\u6d4b\u91cf\u65b9\u6cd5", "name": "\u63a2\u7d22\u67d0\u4e9b\u5b9e\u7269\u4f53\u79ef\u7684\u6d4b\u91cf\u65b9\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 130, "label": "\u590d\u5f0f\u6298\u7ebf\u7edf\u8ba1\u56fe", "name": "\u590d\u5f0f\u6298\u7ebf\u7edf\u8ba1\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 131, "label": "\u7528\u5b57\u6bcd\u8868\u793a\u6570", "name": "\u7528\u5b57\u6bcd\u8868\u793a\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 132, "label": "\u4ee5\u4e00\u5f53\u4e8c\u7684\u6761\u5f62\u7edf\u8ba1\u56fe", "name": "\u4ee5\u4e00\u5f53\u4e8c\u7684\u6761\u5f62\u7edf\u8ba1\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 133, "label": "\u5c06\u7b80\u5355\u56fe\u5f62\u5e73\u79fb\u6216\u65cb\u8f6c\u4e00\u5b9a\u7684\u5ea6\u6570", "name": "\u5c06\u7b80\u5355\u56fe\u5f62\u5e73\u79fb\u6216\u65cb\u8f6c\u4e00\u5b9a\u7684\u5ea6\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 134, "label": "\u65e5\u671f\u548c\u65f6\u95f4\u7684\u63a8\u7b97", "name": "\u65e5\u671f\u548c\u65f6\u95f4\u7684\u63a8\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 135, "label": "\u5206\u6570\u4e58\u6cd5", "name": "\u5206\u6570\u4e58\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 136, "label": "\u5947\u6570\u4e0e\u5076\u6570\u7684\u521d\u6b65\u8ba4\u8bc6", "name": "\u5947\u6570\u4e0e\u5076\u6570\u7684\u521d\u6b65\u8ba4\u8bc6", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 137, "label": "\u4f53\u79ef\u548c\u4f53\u79ef\u5355\u4f4d", "name": "\u4f53\u79ef\u548c\u4f53\u79ef\u5355\u4f4d", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 138, "label": "\u4e09\u89d2\u5f62\u7684\u9762\u79ef(\u5f85\u5220\u9664 )", "name": "\u4e09\u89d2\u5f62\u7684\u9762\u79ef(\u5f85\u5220\u9664 )", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 139, "label": "\u548c\u500d\u95ee\u9898", "name": "\u548c\u500d\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 140, "label": "\u5c0f\u6570\u70b9\u7684\u79fb\u52a8\u5f15\u8d77\u5c0f\u6570\u7684\u5927\u5c0f\u53d8\u5316", "name": "\u5c0f\u6570\u70b9\u7684\u79fb\u52a8\u5f15\u8d77\u5c0f\u6570\u7684\u5927\u5c0f\u53d8\u5316", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 141, "label": "\u957f\u65b9\u5f62\u7684\u7279\u5f81\u53ca\u6027\u8d28", "name": "\u957f\u65b9\u5f62\u7684\u7279\u5f81\u53ca\u6027\u8d28", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 142, "label": "\u5e73\u5747\u6570\u3001\u4e2d\u4f4d\u6570\u3001\u4f17\u6570\u7684\u5f02\u540c\u53ca\u8fd0\u7528", "name": "\u5e73\u5747\u6570\u3001\u4e2d\u4f4d\u6570\u3001\u4f17\u6570\u7684\u5f02\u540c\u53ca\u8fd0\u7528", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 143, "label": "\u65b9\u7a0b\u7684\u89e3\u548c\u89e3\u65b9\u7a0b", "name": "\u65b9\u7a0b\u7684\u89e3\u548c\u89e3\u65b9\u7a0b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 145, "label": "\u8868\u5185\u4e58\u6cd5", "name": "\u8868\u5185\u4e58\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 146, "label": "\u6574\u6570\u3001\u5206\u6570\u3001\u5c0f\u6570\u3001\u767e\u5206\u6570\u3001\u56db\u5219\u6df7\u5408\u8fd0\u7b97", "name": "\u6574\u6570\u3001\u5206\u6570\u3001\u5c0f\u6570\u3001\u767e\u5206\u6570\u3001\u56db\u5219\u6df7\u5408\u8fd0\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 147, "label": "\u7b49\u91cf\u4ee3\u6362", "name": "\u7b49\u91cf\u4ee3\u6362", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 148, "label": "\u6bd4\u4e0e\u5206\u6570\u3001\u9664\u6cd5\u7684\u5173\u7cfb", "name": "\u6bd4\u4e0e\u5206\u6570\u3001\u9664\u6cd5\u7684\u5173\u7cfb", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 149, "label": "\u786e\u5b9a\u8f74\u5bf9\u79f0\u56fe\u5f62\u7684\u5bf9\u79f0\u8f74\u6761\u6570\u53ca\u4f4d\u7f6e", "name": "\u786e\u5b9a\u8f74\u5bf9\u79f0\u56fe\u5f62\u7684\u5bf9\u79f0\u8f74\u6761\u6570\u53ca\u4f4d\u7f6e", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 150, "label": "\u9762\u79ef\u5355\u4f4d\u95f4\u7684\u8fdb\u7387\u53ca\u5355\u4f4d\u6362\u7b97", "name": "\u9762\u79ef\u5355\u4f4d\u95f4\u7684\u8fdb\u7387\u53ca\u5355\u4f4d\u6362\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 151, "label": "\u4f30\u6d4b", "name": "\u4f30\u6d4b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 153, "label": "\u7b97\u672f\u4e2d\u7684\u89c4\u5f8b", "name": "\u7b97\u672f\u4e2d\u7684\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 154, "label": "\u5355\u5f0f\u6298\u7ebf\u7edf\u8ba1\u56fe", "name": "\u5355\u5f0f\u6298\u7ebf\u7edf\u8ba1\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 155, "label": "\u56e0\u6570\u3001\u516c\u56e0\u6570\u548c\u6700\u5927\u516c\u56e0\u6570", "name": "\u56e0\u6570\u3001\u516c\u56e0\u6570\u548c\u6700\u5927\u516c\u56e0\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 156, "label": "\u8ba1\u7b97\u5668\u4e0e\u590d\u6742\u7684\u8fd0\u7b97", "name": "\u8ba1\u7b97\u5668\u4e0e\u590d\u6742\u7684\u8fd0\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 157, "label": "\u6574\u6570\u7684\u6539\u5199\u548c\u8fd1\u4f3c\u6570", "name": "\u6574\u6570\u7684\u6539\u5199\u548c\u8fd1\u4f3c\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 158, "label": "\u6bd4\u4f8b\u7684\u5e94\u7528", "name": "\u6bd4\u4f8b\u7684\u5e94\u7528", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 159, "label": "\u5e73\u5747\u5206", "name": "\u5e73\u5747\u5206", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 160, "label": "\u6bd4\u4f8b\u7684\u610f\u4e49\u548c\u57fa\u672c\u6027\u8d28", "name": "\u6bd4\u4f8b\u7684\u610f\u4e49\u548c\u57fa\u672c\u6027\u8d28", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 161, "label": "\u6574\u9664\u7684\u6027\u8d28\u53ca\u5e94\u7528", "name": "\u6574\u9664\u7684\u6027\u8d28\u53ca\u5e94\u7528", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 162, "label": "\u957f\u5ea6\u53ca\u957f\u5ea6\u7684\u5e38\u7528\u5355\u4f4d", "name": "\u957f\u5ea6\u53ca\u957f\u5ea6\u7684\u5e38\u7528\u5355\u4f4d", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 164, "label": "\u4f5c\u7b80\u5355\u56fe\u5f62\u7684\u4e09\u89c6\u56fe", "name": "\u4f5c\u7b80\u5355\u56fe\u5f62\u7684\u4e09\u89c6\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 165, "label": "\u6574\u6570\u56db\u5219\u6df7\u5408\u8fd0\u7b97", "name": "\u6574\u6570\u56db\u5219\u6df7\u5408\u8fd0\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 166, "label": "\u4e24\u70b9\u95f4\u7ebf\u6bb5\u6700\u77ed\u4e0e\u4e24\u70b9\u95f4\u7684\u8ddd\u79bb", "name": "\u4e24\u70b9\u95f4\u7ebf\u6bb5\u6700\u77ed\u4e0e\u4e24\u70b9\u95f4\u7684\u8ddd\u79bb", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 167, "label": "\u5e26\u62ec\u53f7\u7684\u8fd0\u7b97", "name": "\u5e26\u62ec\u53f7\u7684\u8fd0\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 168, "label": "\u8ffd\u53ca\u95ee\u9898", "name": "\u8ffd\u53ca\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 169, "label": "\u753b\u6307\u5b9a\u9762\u79ef\u7684\u957f\u65b9\u5f62\u3001\u6b63\u65b9\u5f62\u3001\u4e09\u89d2\u5f62", "name": "\u753b\u6307\u5b9a\u9762\u79ef\u7684\u957f\u65b9\u5f62\u3001\u6b63\u65b9\u5f62\u3001\u4e09\u89d2\u5f62", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 170, "label": "\u81ea\u7136\u6570\u7684\u8ba4\u8bc6", "name": "\u81ea\u7136\u6570\u7684\u8ba4\u8bc6", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 171, "label": "\u5206\u6570\u7684\u56db\u5219\u6df7\u5408\u8fd0\u7b97", "name": "\u5206\u6570\u7684\u56db\u5219\u6df7\u5408\u8fd0\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 172, "label": "\u5de7\u7b9724\u70b9", "name": "\u5de7\u7b9724\u70b9", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 173, "label": "\u5bc6\u94fa", "name": "\u5bc6\u94fa", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 174, "label": "\u627e\u6b21\u54c1", "name": "\u627e\u6b21\u54c1", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 175, "label": "\u591a\u6b21\u76f8\u9047\u95ee\u9898", "name": "\u591a\u6b21\u76f8\u9047\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 177, "label": "\u5236\u4f5c\u5e74\u5386", "name": "\u5236\u4f5c\u5e74\u5386", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 178, "label": "\u56db\u8fb9\u5f62\u7684\u7279\u70b9\u3001\u5206\u7c7b\u53ca\u8bc6\u522b", "name": "\u56db\u8fb9\u5f62\u7684\u7279\u70b9\u3001\u5206\u7c7b\u53ca\u8bc6\u522b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 179, "label": "\u5bf9\u7b56\u8bba", "name": "\u5bf9\u7b56\u8bba", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 180, "label": "\u56e0\u6570\u548c\u500d\u6570\u7684\u610f\u4e49", "name": "\u56e0\u6570\u548c\u500d\u6570\u7684\u610f\u4e49", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 181, "label": "\u5947\u5076\u6027\u95ee\u9898", "name": "\u5947\u5076\u6027\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 182, "label": "\u8d27\u5e01\u3001\u4eba\u6c11\u5e01\u53ca\u5176\u5e38\u7528\u5355\u4f4d", "name": "\u8d27\u5e01\u3001\u4eba\u6c11\u5e01\u53ca\u5176\u5e38\u7528\u5355\u4f4d", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 183, "label": "\u76f8\u9047\u95ee\u9898", "name": "\u76f8\u9047\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 184, "label": "\u6b63\u3001\u8d1f\u6570\u7684\u8fd0\u7b97", "name": "\u6b63\u3001\u8d1f\u6570\u7684\u8fd0\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 185, "label": "\u56fe\u5f62\u7684\u5bc6\u94fa", "name": "\u56fe\u5f62\u7684\u5bc6\u94fa", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 186, "label": "\u4e24\u79cd\u4e0d\u540c\u5f62\u5f0f\u7684\u590d\u5f0f\u6761\u5f62\u7edf\u8ba1\u56fe", "name": "\u4e24\u79cd\u4e0d\u540c\u5f62\u5f0f\u7684\u590d\u5f0f\u6761\u5f62\u7edf\u8ba1\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 354, "label": "\u6bd4\u7684\u610f\u4e49", "name": "\u6bd4\u7684\u610f\u4e49", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 298, "label": "\u68af\u5f62\u7684\u7279\u5f81\u53ca\u5206\u7c7b", "name": "\u68af\u5f62\u7684\u7279\u5f81\u53ca\u5206\u7c7b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 299, "label": "\u5341\u8fdb\u5236\u8ba1\u6570\u6cd5", "name": "\u5341\u8fdb\u5236\u8ba1\u6570\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 341, "label": "\u6700\u4f73\u65b9\u6cd5\u95ee\u9898", "name": "\u6700\u4f73\u65b9\u6cd5\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 342, "label": "\u7b80\u5355\u5468\u671f\u73b0\u8c61\u4e2d\u7684\u89c4\u5f8b", "name": "\u7b80\u5355\u5468\u671f\u73b0\u8c61\u4e2d\u7684\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 343, "label": "\u91cd\u53e0\u95ee\u9898", "name": "\u91cd\u53e0\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 344, "label": "\u5206\u6570\u3001\u767e\u5206\u6570\u590d\u5408\u5e94\u7528\u9898", "name": "\u5206\u6570\u3001\u767e\u5206\u6570\u590d\u5408\u5e94\u7528\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 345, "label": "\u627e\u4e00\u4e2a\u6570\u7684\u500d\u6570\u7684\u65b9\u6cd5", "name": "\u627e\u4e00\u4e2a\u6570\u7684\u500d\u6570\u7684\u65b9\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 346, "label": "\u8d27\u5e01\u3001\u4eba\u6c11\u5e01\u7684\u5355\u4f4d\u6362\u7b97", "name": "\u8d27\u5e01\u3001\u4eba\u6c11\u5e01\u7684\u5355\u4f4d\u6362\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 347, "label": "\u5408\u6570\u4e0e\u8d28\u6570", "name": "\u5408\u6570\u4e0e\u8d28\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 348, "label": "\u6574\u6570\u7684\u9664\u6cd5\u53ca\u5e94\u7528", "name": "\u6574\u6570\u7684\u9664\u6cd5\u53ca\u5e94\u7528", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 349, "label": "\u7acb\u4f53\u56fe\u5f62\u7684\u5206\u7c7b\u53ca\u8bc6\u522b", "name": "\u7acb\u4f53\u56fe\u5f62\u7684\u5206\u7c7b\u53ca\u8bc6\u522b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 350, "label": "\u6570\u72ec", "name": "\u6570\u72ec", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 351, "label": "\u6709\u7406\u6570\u7684\u4e58\u65b9", "name": "\u6709\u7406\u6570\u7684\u4e58\u65b9", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 352, "label": "\u4e09\u89d2\u5f62\u7684\u7279\u6027", "name": "\u4e09\u89d2\u5f62\u7684\u7279\u6027", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 353, "label": "\u5c0f\u5c0f\u5546\u5e97", "name": "\u5c0f\u5c0f\u5546\u5e97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 355, "label": "\u6247\u5f62\u7684\u9762\u79ef", "name": "\u6247\u5f62\u7684\u9762\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 356, "label": "\u65b9\u7a0b\u9700\u8981\u6ee1\u8db3\u7684\u6761\u4ef6", "name": "\u65b9\u7a0b\u9700\u8981\u6ee1\u8db3\u7684\u6761\u4ef6", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 358, "label": "\u56e0\u6570\u4e0e\u500d\u6570", "name": "\u56e0\u6570\u4e0e\u500d\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 359, "label": "\u5e73\u9762\u56fe\u5f62\u7684\u5206\u7c7b\u53ca\u8bc6\u522b", "name": "\u5e73\u9762\u56fe\u5f62\u7684\u5206\u7c7b\u53ca\u8bc6\u522b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 360, "label": "\u52a0\u6cd5\u548c\u51cf\u6cd5\u7684\u5173\u7cfb", "name": "\u52a0\u6cd5\u548c\u51cf\u6cd5\u7684\u5173\u7cfb", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 361, "label": "\u5c0f\u6570\u5927\u5c0f\u7684\u6bd4\u8f83", "name": "\u5c0f\u6570\u5927\u5c0f\u7684\u6bd4\u8f83", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 363, "label": "\u56db\u5219\u6df7\u5408\u8fd0\u7b97\u4e2d\u7684\u5de7\u7b97", "name": "\u56db\u5219\u6df7\u5408\u8fd0\u7b97\u4e2d\u7684\u5de7\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 364, "label": "\u6bd4\u4f8b\u5c3a\u5e94\u7528\u9898", "name": "\u6bd4\u4f8b\u5c3a\u5e94\u7528\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 365, "label": "\u6211\u957f\u9ad8\u4e86", "name": "\u6211\u957f\u9ad8\u4e86", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 366, "label": "\u8fc7\u76f4\u7ebf\u5916\u4e00\u70b9\u4f5c\u5df2\u77e5\u76f4\u7ebf\u7684\u5e73\u884c\u7ebf", "name": "\u8fc7\u76f4\u7ebf\u5916\u4e00\u70b9\u4f5c\u5df2\u77e5\u76f4\u7ebf\u7684\u5e73\u884c\u7ebf", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 367, "label": "\u8fdb\u4f4d\u52a0\u6cd5", "name": "\u8fdb\u4f4d\u52a0\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 368, "label": "\u65b9\u5411", "name": "\u65b9\u5411", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 369, "label": "\u767e\u5206\u6570\u7684\u52a0\u51cf\u4e58\u9664\u8fd0\u7b97", "name": "\u767e\u5206\u6570\u7684\u52a0\u51cf\u4e58\u9664\u8fd0\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 370, "label": "\u4e8b\u7269\u7684\u7b80\u5355\u642d\u914d\u89c4\u5f8b", "name": "\u4e8b\u7269\u7684\u7b80\u5355\u642d\u914d\u89c4\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 371, "label": "\u5706\u3001\u5706\u73af\u7684\u9762\u79ef", "name": "\u5706\u3001\u5706\u73af\u7684\u9762\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 372, "label": "\u68af\u5f62\u7684\u5468\u957f", "name": "\u68af\u5f62\u7684\u5468\u957f", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 373, "label": "\u5faa\u73af\u5c0f\u6570", "name": "\u5faa\u73af\u5c0f\u6570", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 374, "label": "\u957f\u5ea6\u7684\u6d4b\u91cf\u65b9\u6cd5", "name": "\u957f\u5ea6\u7684\u6d4b\u91cf\u65b9\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 375, "label": "\u4e8b\u4ef6\u53d1\u751f\u7684\u53ef\u80fd\u6027\u5927\u5c0f\u8bed\u8a00\u63cf\u8ff0", "name": "\u4e8b\u4ef6\u53d1\u751f\u7684\u53ef\u80fd\u6027\u5927\u5c0f\u8bed\u8a00\u63cf\u8ff0", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 376, "label": "\u4e09\u89d2\u5f62\u7684\u5468\u957f", "name": "\u4e09\u89d2\u5f62\u7684\u5468\u957f", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 377, "label": "\u6c42\u51e0\u4e2a\u6570\u7684\u6700\u5c0f\u516c\u500d\u6570\u7684\u65b9\u6cd5", "name": "\u6c42\u51e0\u4e2a\u6570\u7684\u6700\u5c0f\u516c\u500d\u6570\u7684\u65b9\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 378, "label": "\u5012\u6570\u7684\u8ba4\u8bc6", "name": "\u5012\u6570\u7684\u8ba4\u8bc6", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 379, "label": "\u5c0f\u6570\u9664\u6cd5", "name": "\u5c0f\u6570\u9664\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 380, "label": "\u8fc7\u76f4\u7ebf\u4e0a\u6216\u76f4\u7ebf\u5916\u4e00\u70b9\u4f5c\u76f4\u7ebf\u7684\u5782\u7ebf", "name": "\u8fc7\u76f4\u7ebf\u4e0a\u6216\u76f4\u7ebf\u5916\u4e00\u70b9\u4f5c\u76f4\u7ebf\u7684\u5782\u7ebf", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 381, "label": "\u957f\u65b9\u5f62\u3001\u6b63\u65b9\u5f62\u7684\u9762\u79ef", "name": "\u957f\u65b9\u5f62\u3001\u6b63\u65b9\u5f62\u7684\u9762\u79ef", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 382, "label": "\u957f\u65b9\u4f53\u7684\u7279\u5f81", "name": "\u957f\u65b9\u4f53\u7684\u7279\u5f81", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 383, "label": "\u5c0f\u7ba1\u5bb6", "name": "\u5c0f\u7ba1\u5bb6", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 384, "label": "\u7b80\u5355\u7684\u5de5\u7a0b\u95ee\u9898", "name": "\u7b80\u5355\u7684\u5de5\u7a0b\u95ee\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 385, "label": "\u5e73\u884c\u56db\u8fb9\u5f62\u7684\u5468\u957f", "name": "\u5e73\u884c\u56db\u8fb9\u5f62\u7684\u5468\u957f", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 386, "label": "\u4f53\u79ef\u3001\u5bb9\u79ef\u53ca\u5176\u5355\u4f4d", "name": "\u4f53\u79ef\u3001\u5bb9\u79ef\u53ca\u5176\u5355\u4f4d", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 387, "label": "\u7b49\u79ef\u53d8\u5f62\uff08\u4f4d\u79fb\u3001\u5272\u8865\uff09", "name": "\u7b49\u79ef\u53d8\u5f62\uff08\u4f4d\u79fb\u3001\u5272\u8865\uff09", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 388, "label": "\u4e09\u89d2\u5f62\u7684\u7279\u5f81", "name": "\u4e09\u89d2\u5f62\u7684\u7279\u5f81", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 389, "label": "\u6574\u6570\u7684\u8bfb\u6cd5\u548c\u5199\u6cd5", "name": "\u6574\u6570\u7684\u8bfb\u6cd5\u548c\u5199\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 390, "label": "\u7ed8\u5236\u6247\u5f62\u7edf\u8ba1\u56fe", "name": "\u7ed8\u5236\u6247\u5f62\u7edf\u8ba1\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 391, "label": "\u56fe\u5f62\u7684\u653e\u5927\u4e0e\u7f29\u5c0f", "name": "\u56fe\u5f62\u7684\u653e\u5927\u4e0e\u7f29\u5c0f", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 392, "label": "\u4f4d\u7f6e", "name": "\u4f4d\u7f6e", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 393, "label": "\u5206\u6570\u52a0\u51cf\u6cd5\u5e94\u7528\u9898", "name": "\u5206\u6570\u52a0\u51cf\u6cd5\u5e94\u7528\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 394, "label": "\u957f\u5ea6\u7684\u5355\u4f4d\u6362\u7b97", "name": "\u957f\u5ea6\u7684\u5355\u4f4d\u6362\u7b97", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 395, "label": "\u56fe\u5f62\u7684\u62fc\u7ec4", "name": "\u56fe\u5f62\u7684\u62fc\u7ec4", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 396, "label": "\u6709\u5173\u5706\u7684\u5e94\u7528\u9898", "name": "\u6709\u5173\u5706\u7684\u5e94\u7528\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 397, "label": "\u5206\u6570\u9664\u6cd5\u5e94\u7528\u9898", "name": "\u5206\u6570\u9664\u6cd5\u5e94\u7528\u9898", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 398, "label": "\u767e\u5206\u6570\u7684\u610f\u4e49\u3001\u8bfb\u5199\u53ca\u5e94\u7528", "name": "\u767e\u5206\u6570\u7684\u610f\u4e49\u3001\u8bfb\u5199\u53ca\u5e94\u7528", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 399, "label": "\u4f5c\u6700\u77ed\u7ebf\u8def\u56fe", "name": "\u4f5c\u6700\u77ed\u7ebf\u8def\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 400, "label": "\u5206\u6570\u7684\u52a0\u6cd5\u548c\u51cf\u6cd5", "name": "\u5206\u6570\u7684\u52a0\u6cd5\u548c\u51cf\u6cd5", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 401, "label": "\u4e24\u79cd\u4e0d\u540c\u5f62\u5f0f\u7684\u5355\u5f0f\u6761\u5f62\u7edf\u8ba1\u56fe", "name": "\u4e24\u79cd\u4e0d\u540c\u5f62\u5f0f\u7684\u5355\u5f0f\u6761\u5f62\u7edf\u8ba1\u56fe", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 402, "label": "\u52a0\u6cd5\u8fd0\u7b97\u5b9a\u5f8b", "name": "\u52a0\u6cd5\u8fd0\u7b97\u5b9a\u5f8b", "shape": "dot"}, {"color": "#97c2fc", "font": {"face": "SimHei", "size": 14}, "id": 403, "label": "\u65b9\u9635\u95ee\u9898", "name": "\u65b9\u9635\u95ee\u9898", "shape": "dot"}]); + edges = new vis.DataSet([{"from": 432, "title": "HAS_SUB_POINT", "to": 404}, {"from": 44, "title": "HAS_SUB_POINT", "to": 405}, {"from": 122, "title": "HAS_SUB_POINT", "to": 406}, {"from": 152, "title": "HAS_SUB_POINT", "to": 432}, {"from": 78, "title": "HAS_SUB_POINT", "to": 433}, {"from": 432, "title": "HAS_SUB_POINT", "to": 434}, {"from": 78, "title": "HAS_SUB_POINT", "to": 435}, {"from": 122, "title": "HAS_SUB_POINT", "to": 436}, {"from": 55, "title": "HAS_SUB_POINT", "to": 437}, {"from": 60, "title": "HAS_SUB_POINT", "to": 438}, {"from": 44, "title": "HAS_SUB_POINT", "to": 439}, {"from": 163, "title": "HAS_SUB_POINT", "to": 440}, {"from": 78, "title": "HAS_SUB_POINT", "to": 441}, {"from": 77, "title": "HAS_SUB_POINT", "to": 442}, {"from": 480, "title": "HAS_SUB_POINT", "to": 443}, {"from": 144, "title": "HAS_SUB_POINT", "to": 444}, {"from": 163, "title": "HAS_SUB_POINT", "to": 445}, {"from": 114, "title": "HAS_SUB_POINT", "to": 446}, {"from": 122, "title": "HAS_SUB_POINT", "to": 447}, {"from": 114, "title": "HAS_SUB_POINT", "to": 448}, {"from": 77, "title": "HAS_SUB_POINT", "to": 449}, {"from": 176, "title": "HAS_SUB_POINT", "to": 450}, {"from": 78, "title": "HAS_SUB_POINT", "to": 451}, {"from": 114, "title": "HAS_SUB_POINT", "to": 452}, {"from": 43, "title": "HAS_SUB_POINT", "to": 453}, {"from": 77, "title": "HAS_SUB_POINT", "to": 454}, {"from": 55, "title": "HAS_SUB_POINT", "to": 455}, {"from": 44, "title": "HAS_SUB_POINT", "to": 456}, {"from": 78, "title": "HAS_SUB_POINT", "to": 457}, {"from": 114, "title": "HAS_SUB_POINT", "to": 459}, {"from": 78, "title": "HAS_SUB_POINT", "to": 460}, {"from": 498, "title": "HAS_SUB_POINT", "to": 461}, {"from": 432, "title": "HAS_SUB_POINT", "to": 462}, {"from": 122, "title": "HAS_SUB_POINT", "to": 463}, {"from": 78, "title": "HAS_SUB_POINT", "to": 464}, {"from": 144, "title": "HAS_SUB_POINT", "to": 465}, {"from": 78, "title": "HAS_SUB_POINT", "to": 466}, {"from": 122, "title": "HAS_SUB_POINT", "to": 467}, {"from": 60, "title": "HAS_SUB_POINT", "to": 468}, {"from": 122, "title": "HAS_SUB_POINT", "to": 469}, {"from": 122, "title": "HAS_SUB_POINT", "to": 470}, {"from": 432, "title": "HAS_SUB_POINT", "to": 471}, {"from": 77, "title": "HAS_SUB_POINT", "to": 472}, {"from": 362, "title": "HAS_SUB_POINT", "to": 473}, {"from": 122, "title": "HAS_SUB_POINT", "to": 474}, {"from": 43, "title": "HAS_SUB_POINT", "to": 475}, {"from": 163, "title": "HAS_SUB_POINT", "to": 476}, {"from": 44, "title": "HAS_SUB_POINT", "to": 477}, {"from": 432, "title": "HAS_SUB_POINT", "to": 478}, {"from": 480, "title": "HAS_SUB_POINT", "to": 479}, {"from": 357, "title": "HAS_SUB_POINT", "to": 480}, {"from": 78, "title": "HAS_SUB_POINT", "to": 481}, {"from": 432, "title": "HAS_SUB_POINT", "to": 482}, {"from": 77, "title": "HAS_SUB_POINT", "to": 483}, {"from": 144, "title": "HAS_SUB_POINT", "to": 484}, {"from": 163, "title": "HAS_SUB_POINT", "to": 485}, {"from": 78, "title": "HAS_SUB_POINT", "to": 487}, {"from": 432, "title": "HAS_SUB_POINT", "to": 488}, {"from": 114, "title": "HAS_SUB_POINT", "to": 489}, {"from": 114, "title": "HAS_SUB_POINT", "to": 490}, {"from": 114, "title": "HAS_SUB_POINT", "to": 491}, {"from": 44, "title": "HAS_SUB_POINT", "to": 492}, {"from": 432, "title": "HAS_SUB_POINT", "to": 493}, {"from": 44, "title": "HAS_SUB_POINT", "to": 494}, {"from": 163, "title": "HAS_SUB_POINT", "to": 495}, {"from": 122, "title": "HAS_SUB_POINT", "to": 496}, {"from": 114, "title": "HAS_SUB_POINT", "to": 497}, {"from": 152, "title": "HAS_SUB_POINT", "to": 498}, {"from": 78, "title": "HAS_SUB_POINT", "to": 499}, {"from": 43, "title": "HAS_SUB_POINT", "to": 500}, {"from": 432, "title": "HAS_SUB_POINT", "to": 501}, {"from": 77, "title": "HAS_SUB_POINT", "to": 502}, {"from": 122, "title": "HAS_SUB_POINT", "to": 503}, {"from": 114, "title": "HAS_SUB_POINT", "to": 504}, {"from": 44, "title": "HAS_SUB_POINT", "to": 505}, {"from": 163, "title": "HAS_SUB_POINT", "to": 506}, {"from": 144, "title": "HAS_SUB_POINT", "to": 507}, {"from": 44, "title": "HAS_SUB_POINT", "to": 508}, {"from": 77, "title": "HAS_SUB_POINT", "to": 509}, {"from": 122, "title": "HAS_SUB_POINT", "to": 510}, {"from": 432, "title": "HAS_SUB_POINT", "to": 511}, {"from": 78, "title": "HAS_SUB_POINT", "to": 512}, {"from": 144, "title": "HAS_SUB_POINT", "to": 513}, {"from": 480, "title": "HAS_SUB_POINT", "to": 514}, {"from": 362, "title": "HAS_SUB_POINT", "to": 515}, {"from": 78, "title": "HAS_SUB_POINT", "to": 516}, {"from": 432, "title": "HAS_SUB_POINT", "to": 517}, {"from": 78, "title": "HAS_SUB_POINT", "to": 518}, {"from": 122, "title": "HAS_SUB_POINT", "to": 519}, {"from": 60, "title": "HAS_SUB_POINT", "to": 520}, {"from": 163, "title": "HAS_SUB_POINT", "to": 521}, {"from": 122, "title": "HAS_SUB_POINT", "to": 522}, {"from": 432, "title": "HAS_SUB_POINT", "to": 523}, {"from": 163, "title": "HAS_SUB_POINT", "to": 524}, {"from": 77, "title": "HAS_SUB_POINT", "to": 525}, {"from": 44, "title": "HAS_SUB_POINT", "to": 526}, {"from": 122, "title": "HAS_SUB_POINT", "to": 527}, {"from": 78, "title": "HAS_SUB_POINT", "to": 528}, {"from": 44, "title": "HAS_SUB_POINT", "to": 529}, {"from": 122, "title": "HAS_SUB_POINT", "to": 530}, {"from": 163, "title": "HAS_SUB_POINT", "to": 531}, {"from": 44, "title": "HAS_SUB_POINT", "to": 532}, {"from": 114, "title": "HAS_SUB_POINT", "to": 533}, {"from": 480, "title": "HAS_SUB_POINT", "to": 534}, {"from": 78, "title": "HAS_SUB_POINT", "to": 535}, {"from": 122, "title": "HAS_SUB_POINT", "to": 536}, {"from": 362, "title": "HAS_SUB_POINT", "to": 537}, {"from": 60, "title": "HAS_SUB_POINT", "to": 538}, {"from": 44, "title": "HAS_SUB_POINT", "to": 539}, {"from": 43, "title": "HAS_SUB_POINT", "to": 540}, {"from": 163, "title": "HAS_SUB_POINT", "to": 0}, {"from": 44, "title": "HAS_SUB_POINT", "to": 1}, {"from": 163, "title": "HAS_SUB_POINT", "to": 2}, {"from": 44, "title": "HAS_SUB_POINT", "to": 3}, {"from": 44, "title": "HAS_SUB_POINT", "to": 4}, {"from": 122, "title": "HAS_SUB_POINT", "to": 5}, {"from": 362, "title": "HAS_SUB_POINT", "to": 6}, {"from": 78, "title": "HAS_SUB_POINT", "to": 7}, {"from": 77, "title": "HAS_SUB_POINT", "to": 8}, {"from": 114, "title": "HAS_SUB_POINT", "to": 9}, {"from": 78, "title": "HAS_SUB_POINT", "to": 10}, {"from": 77, "title": "HAS_SUB_POINT", "to": 11}, {"from": 432, "title": "HAS_SUB_POINT", "to": 12}, {"from": 163, "title": "HAS_SUB_POINT", "to": 13}, {"from": 55, "title": "HAS_SUB_POINT", "to": 14}, {"from": 144, "title": "HAS_SUB_POINT", "to": 15}, {"from": 122, "title": "HAS_SUB_POINT", "to": 16}, {"from": 362, "title": "HAS_SUB_POINT", "to": 17}, {"from": 122, "title": "HAS_SUB_POINT", "to": 18}, {"from": 144, "title": "HAS_SUB_POINT", "to": 19}, {"from": 480, "title": "HAS_SUB_POINT", "to": 20}, {"from": 144, "title": "HAS_SUB_POINT", "to": 21}, {"from": 498, "title": "HAS_SUB_POINT", "to": 22}, {"from": 432, "title": "HAS_SUB_POINT", "to": 23}, {"from": 77, "title": "HAS_SUB_POINT", "to": 24}, {"from": 114, "title": "HAS_SUB_POINT", "to": 25}, {"from": 176, "title": "HAS_SUB_POINT", "to": 26}, {"from": 163, "title": "HAS_SUB_POINT", "to": 27}, {"from": 78, "title": "HAS_SUB_POINT", "to": 28}, {"from": 122, "title": "HAS_SUB_POINT", "to": 29}, {"from": 78, "title": "HAS_SUB_POINT", "to": 30}, {"from": 498, "title": "HAS_SUB_POINT", "to": 31}, {"from": 114, "title": "HAS_SUB_POINT", "to": 32}, {"from": 498, "title": "HAS_SUB_POINT", "to": 33}, {"from": 77, "title": "HAS_SUB_POINT", "to": 34}, {"from": 77, "title": "HAS_SUB_POINT", "to": 35}, {"from": 163, "title": "HAS_SUB_POINT", "to": 36}, {"from": 43, "title": "HAS_SUB_POINT", "to": 37}, {"from": 163, "title": "HAS_SUB_POINT", "to": 38}, {"from": 362, "title": "HAS_SUB_POINT", "to": 39}, {"from": 78, "title": "HAS_SUB_POINT", "to": 40}, {"from": 176, "title": "HAS_SUB_POINT", "to": 41}, {"from": 498, "title": "HAS_SUB_POINT", "to": 42}, {"from": 357, "title": "HAS_SUB_POINT", "to": 43}, {"from": 486, "title": "HAS_SUB_POINT", "to": 44}, {"from": 44, "title": "HAS_SUB_POINT", "to": 45}, {"from": 114, "title": "HAS_SUB_POINT", "to": 46}, {"from": 163, "title": "HAS_SUB_POINT", "to": 47}, {"from": 122, "title": "HAS_SUB_POINT", "to": 48}, {"from": 55, "title": "HAS_SUB_POINT", "to": 49}, {"from": 144, "title": "HAS_SUB_POINT", "to": 50}, {"from": 432, "title": "HAS_SUB_POINT", "to": 51}, {"from": 480, "title": "HAS_SUB_POINT", "to": 52}, {"from": 176, "title": "HAS_SUB_POINT", "to": 53}, {"from": 432, "title": "HAS_SUB_POINT", "to": 54}, {"from": 152, "title": "HAS_SUB_POINT", "to": 55}, {"from": 498, "title": "HAS_SUB_POINT", "to": 56}, {"from": 122, "title": "HAS_SUB_POINT", "to": 57}, {"from": 78, "title": "HAS_SUB_POINT", "to": 58}, {"from": 114, "title": "HAS_SUB_POINT", "to": 59}, {"from": 357, "title": "HAS_SUB_POINT", "to": 60}, {"from": 163, "title": "HAS_SUB_POINT", "to": 61}, {"from": 432, "title": "HAS_SUB_POINT", "to": 62}, {"from": 176, "title": "HAS_SUB_POINT", "to": 63}, {"from": 480, "title": "HAS_SUB_POINT", "to": 64}, {"from": 78, "title": "HAS_SUB_POINT", "to": 65}, {"from": 55, "title": "HAS_SUB_POINT", "to": 66}, {"from": 122, "title": "HAS_SUB_POINT", "to": 67}, {"from": 176, "title": "HAS_SUB_POINT", "to": 68}, {"from": 78, "title": "HAS_SUB_POINT", "to": 69}, {"from": 122, "title": "HAS_SUB_POINT", "to": 70}, {"from": 432, "title": "HAS_SUB_POINT", "to": 71}, {"from": 498, "title": "HAS_SUB_POINT", "to": 72}, {"from": 122, "title": "HAS_SUB_POINT", "to": 73}, {"from": 77, "title": "HAS_SUB_POINT", "to": 74}, {"from": 144, "title": "HAS_SUB_POINT", "to": 75}, {"from": 122, "title": "HAS_SUB_POINT", "to": 76}, {"from": 458, "title": "HAS_SUB_POINT", "to": 77}, {"from": 357, "title": "HAS_SUB_POINT", "to": 78}, {"from": 432, "title": "HAS_SUB_POINT", "to": 79}, {"from": 114, "title": "HAS_SUB_POINT", "to": 80}, {"from": 163, "title": "HAS_SUB_POINT", "to": 81}, {"from": 122, "title": "HAS_SUB_POINT", "to": 82}, {"from": 44, "title": "HAS_SUB_POINT", "to": 83}, {"from": 122, "title": "HAS_SUB_POINT", "to": 84}, {"from": 44, "title": "HAS_SUB_POINT", "to": 85}, {"from": 144, "title": "HAS_SUB_POINT", "to": 86}, {"from": 114, "title": "HAS_SUB_POINT", "to": 87}, {"from": 480, "title": "HAS_SUB_POINT", "to": 88}, {"from": 78, "title": "HAS_SUB_POINT", "to": 89}, {"from": 122, "title": "HAS_SUB_POINT", "to": 90}, {"from": 163, "title": "HAS_SUB_POINT", "to": 91}, {"from": 77, "title": "HAS_SUB_POINT", "to": 92}, {"from": 44, "title": "HAS_SUB_POINT", "to": 93}, {"from": 77, "title": "HAS_SUB_POINT", "to": 94}, {"from": 122, "title": "HAS_SUB_POINT", "to": 95}, {"from": 77, "title": "HAS_SUB_POINT", "to": 96}, {"from": 78, "title": "HAS_SUB_POINT", "to": 97}, {"from": 77, "title": "HAS_SUB_POINT", "to": 98}, {"from": 43, "title": "HAS_SUB_POINT", "to": 99}, {"from": 43, "title": "HAS_SUB_POINT", "to": 100}, {"from": 114, "title": "HAS_SUB_POINT", "to": 101}, {"from": 60, "title": "HAS_SUB_POINT", "to": 102}, {"from": 114, "title": "HAS_SUB_POINT", "to": 103}, {"from": 122, "title": "HAS_SUB_POINT", "to": 104}, {"from": 55, "title": "HAS_SUB_POINT", "to": 105}, {"from": 122, "title": "HAS_SUB_POINT", "to": 106}, {"from": 163, "title": "HAS_SUB_POINT", "to": 107}, {"from": 163, "title": "HAS_SUB_POINT", "to": 108}, {"from": 122, "title": "HAS_SUB_POINT", "to": 109}, {"from": 114, "title": "HAS_SUB_POINT", "to": 110}, {"from": 432, "title": "HAS_SUB_POINT", "to": 111}, {"from": 163, "title": "HAS_SUB_POINT", "to": 112}, {"from": 77, "title": "HAS_SUB_POINT", "to": 113}, {"from": 458, "title": "HAS_SUB_POINT", "to": 114}, {"from": 60, "title": "HAS_SUB_POINT", "to": 115}, {"from": 78, "title": "HAS_SUB_POINT", "to": 116}, {"from": 176, "title": "HAS_SUB_POINT", "to": 117}, {"from": 122, "title": "HAS_SUB_POINT", "to": 118}, {"from": 163, "title": "HAS_SUB_POINT", "to": 119}, {"from": 122, "title": "HAS_SUB_POINT", "to": 120}, {"from": 114, "title": "HAS_SUB_POINT", "to": 121}, {"from": 152, "title": "HAS_SUB_POINT", "to": 122}, {"from": 78, "title": "HAS_SUB_POINT", "to": 123}, {"from": 114, "title": "HAS_SUB_POINT", "to": 124}, {"from": 78, "title": "HAS_SUB_POINT", "to": 125}, {"from": 480, "title": "HAS_SUB_POINT", "to": 126}, {"from": 432, "title": "HAS_SUB_POINT", "to": 127}, {"from": 77, "title": "HAS_SUB_POINT", "to": 128}, {"from": 122, "title": "HAS_SUB_POINT", "to": 129}, {"from": 44, "title": "HAS_SUB_POINT", "to": 130}, {"from": 60, "title": "HAS_SUB_POINT", "to": 131}, {"from": 44, "title": "HAS_SUB_POINT", "to": 132}, {"from": 55, "title": "HAS_SUB_POINT", "to": 133}, {"from": 144, "title": "HAS_SUB_POINT", "to": 134}, {"from": 163, "title": "HAS_SUB_POINT", "to": 135}, {"from": 78, "title": "HAS_SUB_POINT", "to": 136}, {"from": 122, "title": "HAS_SUB_POINT", "to": 137}, {"from": 122, "title": "HAS_SUB_POINT", "to": 138}, {"from": 114, "title": "HAS_SUB_POINT", "to": 139}, {"from": 78, "title": "HAS_SUB_POINT", "to": 140}, {"from": 432, "title": "HAS_SUB_POINT", "to": 141}, {"from": 44, "title": "HAS_SUB_POINT", "to": 142}, {"from": 60, "title": "HAS_SUB_POINT", "to": 143}, {"from": 357, "title": "HAS_SUB_POINT", "to": 144}, {"from": 163, "title": "HAS_SUB_POINT", "to": 145}, {"from": 163, "title": "HAS_SUB_POINT", "to": 146}, {"from": 114, "title": "HAS_SUB_POINT", "to": 147}, {"from": 480, "title": "HAS_SUB_POINT", "to": 148}, {"from": 55, "title": "HAS_SUB_POINT", "to": 149}, {"from": 144, "title": "HAS_SUB_POINT", "to": 150}, {"from": 122, "title": "HAS_SUB_POINT", "to": 151}, {"from": 43, "title": "HAS_SUB_POINT", "to": 153}, {"from": 44, "title": "HAS_SUB_POINT", "to": 154}, {"from": 78, "title": "HAS_SUB_POINT", "to": 155}, {"from": 163, "title": "HAS_SUB_POINT", "to": 156}, {"from": 78, "title": "HAS_SUB_POINT", "to": 157}, {"from": 480, "title": "HAS_SUB_POINT", "to": 158}, {"from": 163, "title": "HAS_SUB_POINT", "to": 159}, {"from": 480, "title": "HAS_SUB_POINT", "to": 160}, {"from": 163, "title": "HAS_SUB_POINT", "to": 161}, {"from": 144, "title": "HAS_SUB_POINT", "to": 162}, {"from": 357, "title": "HAS_SUB_POINT", "to": 163}, {"from": 122, "title": "HAS_SUB_POINT", "to": 164}, {"from": 163, "title": "HAS_SUB_POINT", "to": 165}, {"from": 432, "title": "HAS_SUB_POINT", "to": 166}, {"from": 163, "title": "HAS_SUB_POINT", "to": 167}, {"from": 362, "title": "HAS_SUB_POINT", "to": 168}, {"from": 122, "title": "HAS_SUB_POINT", "to": 169}, {"from": 78, "title": "HAS_SUB_POINT", "to": 170}, {"from": 163, "title": "HAS_SUB_POINT", "to": 171}, {"from": 114, "title": "HAS_SUB_POINT", "to": 172}, {"from": 114, "title": "HAS_SUB_POINT", "to": 173}, {"from": 114, "title": "HAS_SUB_POINT", "to": 174}, {"from": 362, "title": "HAS_SUB_POINT", "to": 175}, {"from": 486, "title": "HAS_SUB_POINT", "to": 176}, {"from": 77, "title": "HAS_SUB_POINT", "to": 177}, {"from": 432, "title": "HAS_SUB_POINT", "to": 178}, {"from": 114, "title": "HAS_SUB_POINT", "to": 179}, {"from": 78, "title": "HAS_SUB_POINT", "to": 180}, {"from": 78, "title": "HAS_SUB_POINT", "to": 181}, {"from": 144, "title": "HAS_SUB_POINT", "to": 182}, {"from": 362, "title": "HAS_SUB_POINT", "to": 183}, {"from": 78, "title": "HAS_SUB_POINT", "to": 184}, {"from": 432, "title": "HAS_SUB_POINT", "to": 185}, {"from": 44, "title": "HAS_SUB_POINT", "to": 186}, {"from": 354, "title": "PREREQUISITE", "to": 534}, {"from": 354, "title": "PREREQUISITE", "to": 52}, {"from": 443, "title": "PREREQUISITE", "to": 534}, {"from": 354, "title": "RELATED", "to": 20}, {"from": 432, "title": "HAS_SUB_POINT", "to": 298}, {"from": 78, "title": "HAS_SUB_POINT", "to": 299}, {"from": 122, "title": "HAS_SUB_POINT", "to": 341}, {"from": 43, "title": "HAS_SUB_POINT", "to": 342}, {"from": 122, "title": "HAS_SUB_POINT", "to": 343}, {"from": 78, "title": "HAS_SUB_POINT", "to": 344}, {"from": 78, "title": "HAS_SUB_POINT", "to": 345}, {"from": 144, "title": "HAS_SUB_POINT", "to": 346}, {"from": 78, "title": "HAS_SUB_POINT", "to": 347}, {"from": 163, "title": "HAS_SUB_POINT", "to": 348}, {"from": 432, "title": "HAS_SUB_POINT", "to": 349}, {"from": 114, "title": "HAS_SUB_POINT", "to": 350}, {"from": 163, "title": "HAS_SUB_POINT", "to": 351}, {"from": 432, "title": "HAS_SUB_POINT", "to": 352}, {"from": 77, "title": "HAS_SUB_POINT", "to": 353}, {"from": 480, "title": "HAS_SUB_POINT", "to": 354}, {"from": 122, "title": "HAS_SUB_POINT", "to": 355}, {"from": 60, "title": "HAS_SUB_POINT", "to": 356}, {"from": 78, "title": "HAS_SUB_POINT", "to": 358}, {"from": 432, "title": "HAS_SUB_POINT", "to": 359}, {"from": 163, "title": "HAS_SUB_POINT", "to": 360}, {"from": 78, "title": "HAS_SUB_POINT", "to": 361}, {"from": 77, "title": "HAS_SUB_POINT", "to": 362}, {"from": 163, "title": "HAS_SUB_POINT", "to": 363}, {"from": 498, "title": "HAS_SUB_POINT", "to": 364}, {"from": 77, "title": "HAS_SUB_POINT", "to": 365}, {"from": 122, "title": "HAS_SUB_POINT", "to": 366}, {"from": 163, "title": "HAS_SUB_POINT", "to": 367}, {"from": 498, "title": "HAS_SUB_POINT", "to": 368}, {"from": 78, "title": "HAS_SUB_POINT", "to": 369}, {"from": 43, "title": "HAS_SUB_POINT", "to": 370}, {"from": 122, "title": "HAS_SUB_POINT", "to": 371}, {"from": 122, "title": "HAS_SUB_POINT", "to": 372}, {"from": 78, "title": "HAS_SUB_POINT", "to": 373}, {"from": 122, "title": "HAS_SUB_POINT", "to": 374}, {"from": 176, "title": "HAS_SUB_POINT", "to": 375}, {"from": 122, "title": "HAS_SUB_POINT", "to": 376}, {"from": 78, "title": "HAS_SUB_POINT", "to": 377}, {"from": 78, "title": "HAS_SUB_POINT", "to": 378}, {"from": 163, "title": "HAS_SUB_POINT", "to": 379}, {"from": 122, "title": "HAS_SUB_POINT", "to": 380}, {"from": 122, "title": "HAS_SUB_POINT", "to": 381}, {"from": 432, "title": "HAS_SUB_POINT", "to": 382}, {"from": 77, "title": "HAS_SUB_POINT", "to": 383}, {"from": 163, "title": "HAS_SUB_POINT", "to": 384}, {"from": 122, "title": "HAS_SUB_POINT", "to": 385}, {"from": 144, "title": "HAS_SUB_POINT", "to": 386}, {"from": 122, "title": "HAS_SUB_POINT", "to": 387}, {"from": 432, "title": "HAS_SUB_POINT", "to": 388}, {"from": 78, "title": "HAS_SUB_POINT", "to": 389}, {"from": 44, "title": "HAS_SUB_POINT", "to": 390}, {"from": 55, "title": "HAS_SUB_POINT", "to": 391}, {"from": 498, "title": "HAS_SUB_POINT", "to": 392}, {"from": 163, "title": "HAS_SUB_POINT", "to": 393}, {"from": 144, "title": "HAS_SUB_POINT", "to": 394}, {"from": 432, "title": "HAS_SUB_POINT", "to": 395}, {"from": 122, "title": "HAS_SUB_POINT", "to": 396}, {"from": 163, "title": "HAS_SUB_POINT", "to": 397}, {"from": 78, "title": "HAS_SUB_POINT", "to": 398}, {"from": 122, "title": "HAS_SUB_POINT", "to": 399}, {"from": 163, "title": "HAS_SUB_POINT", "to": 400}, {"from": 44, "title": "HAS_SUB_POINT", "to": 401}, {"from": 163, "title": "HAS_SUB_POINT", "to": 402}, {"from": 114, "title": "HAS_SUB_POINT", "to": 403}]); nodeColors = {}; allNodes = nodes.get({ returnType: "Object" });