有向图构建

核心代码

/**
*
* @return 招聘岗位群需求能力点展示
*/
public String findMajorCrowdAbility(){
try {
try {
Long fuzerenChooseId = UtilSession.getFuzerenChooseId();
Map<String,Integer> postCrowdMap=majorCrowdService.findMajorCrowdAbility(fuzerenChooseId);
List<Integer> countList=new ArrayList<>();
postCrowdMap=sortByValueDescending(postCrowdMap);
for(Entry<String, Integer> vo : postCrowdMap.entrySet()){
postList.add(vo.getKey());
countList.add(vo.getValue());
}
int total=0;
for (Integer integer : countList) {
total=total+integer;
}
for (int i = 0; i < 5; i++) {
String[] s=new String[2];
s[0]=postList.get(i);
s[1]=formatData(total,countList.get(i))+"%";
totalMap.add(s);
}
Map majorMap = new HashMap();
majorMap.put("postList", postList);
majorMap.put("countList", countList);
JSONArray jsonArray = JSONArray.fromObject(majorMap);
jsonData=jsonArray.toString();
} catch (Exception e) {
e.printStackTrace();
}
return "list";
}catch (UtilException e){
return INPUT;
}
}

/**
*
* @return 专业群专业能力点汇总分析
*/
public String majorCrowdSkill(){
try {
userId = String.valueOf(UtilSession.getUserId());
String filePath=ServletActionContext.getServletContext().getRealPath("/")+"attached/majorCrowdSkill"+userId+".gexf";
File file = new File(filePath);
if (file.exists()) {
file.delete();
}
//目录不存在 则创建
if (!file.getParentFile().exists()) {
boolean mkdir = file.getParentFile().mkdirs();
if (!mkdir) {
throw new RuntimeException("创建目标文件所在目录失败!");
}
}


Gexf gexf = new GexfImpl();
Calendar date = Calendar.getInstance();

gexf.getMetadata()
.setLastModified(date.getTime())
.setCreator("Gephi.org")
.setDescription("A Web network");
gexf.setVisualization(true);

Graph graph = gexf.getGraph();
graph.setDefaultEdgeType(EdgeType.UNDIRECTED).setMode(Mode.STATIC);

AttributeList attrList = new AttributeListImpl(AttributeClass.NODE);
graph.getAttributeLists().add(attrList);

Attribute attUrl = attrList.createAttribute("modularity_class", AttributeType.INTEGER, "Modularity Class");


Position p=new Position() {

@Override
public Position setZ(float z) {
// TODO Auto-generated method stub
return null;
}

@Override
public Position setY(float y) {
// TODO Auto-generated method stub
return null;
}

@Override
public Position setX(float x) {
// TODO Auto-generated method stub
return null;
}

@Override
public float getZ() {
// TODO Auto-generated method stub
return 0.0f;
}

@Override
public float getY() {
// TODO Auto-generated method stub
return nextDouble();
}

@Override
public float getX() {
// TODO Auto-generated method stub
return nextDouble();
}
};
Color c=new Color() {

@Override
public Color setR(int r) {
// TODO Auto-generated method stub
return null;
}

@Override
public Color setG(int g) {
// TODO Auto-generated method stub
return null;
}

@Override
public Color setB(int b) {
// TODO Auto-generated method stub
return null;
}

@Override
public int getR() {
// TODO Auto-generated method stub
return nextInt();
}

@Override
public int getG() {
// TODO Auto-generated method stub
return nextInt();
}

@Override
public int getB() {
// TODO Auto-generated method stub
return nextInt();
}
};

Color c1=new Color() {

@Override
public Color setR(int r) {
// TODO Auto-generated method stub
return null;
}

@Override
public Color setG(int g) {
// TODO Auto-generated method stub
return null;
}

@Override
public Color setB(int b) {
// TODO Auto-generated method stub
return null;
}

@Override
public int getR() {
// TODO Auto-generated method stub
return 231;
}

@Override
public int getG() {
// TODO Auto-generated method stub
return 111;
}

@Override
public int getB() {
// TODO Auto-generated method stub
return 23;
}
};
Color c2=new Color() {

@Override
public Color setR(int r) {
// TODO Auto-generated method stub
return null;
}

@Override
public Color setG(int g) {
// TODO Auto-generated method stub
return null;
}

@Override
public Color setB(int b) {
// TODO Auto-generated method stub
return null;
}

@Override
public int getR() {
// TODO Auto-generated method stub
return 111;
}

@Override
public int getG() {
// TODO Auto-generated method stub
return 111;
}

@Override
public int getB() {
// TODO Auto-generated method stub
return 231;
}
};
Long fuzerenChooseId = UtilSession.getFuzerenChooseId();

List<MajorCrowdEntity> majorCrowdList=majorCrowdService.findPropMajorCrowdByProfessionId(fuzerenChooseId);
for (MajorCrowdEntity majorCrowdEntity : majorCrowdList) {
String professionIds = majorCrowdEntity.getProfessionIds();
String majorCrowdName = majorCrowdEntity.getName();
Long majorCrowdId = majorCrowdEntity.getId();
Node gephi = graph.createNode(majorCrowdId.toString());
gephi
.setLabel(majorCrowdName)
.getAttributeValues()
.addValue(attUrl, majorCrowdId.toString());

gephi.setPosition(p);
gephi.setColor(c);
gephi.setSize(150f);

String[] split = professionIds.split(",");
for (String string : split) {
SysProfessionEntity sysProfessionEntity = sysProfessionService.getById(Long.parseLong(string));
String code = sysProfessionEntity.getCode();
String title = sysProfessionEntity.getTitle();

Node webatlas = graph.createNode(string);
webatlas
.setLabel(title)
.getAttributeValues()
.addValue(attUrl, majorCrowdId.toString());
webatlas.setPosition(p);
webatlas.setColor(c);
webatlas.setSize(nextFloat());
gephi.connectTo(majorCrowdId.toString(), webatlas).setWeight(3f);

//4为查询skill,其他查询ability
List<HashMap<String, Object>> spiderSkillList = zykIndustryService.findSpiderAbilityByCondition(4,code);
Set<String> postSet=new HashSet<>();
for (HashMap<String, Object> map : spiderSkillList) {
Set<Entry<String,Object>> entrySet = map.entrySet();
for (Entry<String, Object> entry : entrySet) {
postSet.add(entry.getKey());
}

}
List<String> postList=new ArrayList<>(postSet);

for (int i = 0; i < postList.size(); i++) {
Node webatlass = graph.createNode(String.valueOf(i+1008610086));
webatlass
.setLabel(postList.get(i))
.getAttributeValues()
.addValue(attUrl, majorCrowdId.toString());
webatlass.setPosition(p);
webatlass.setColor(c2);
webatlass.setSize(nextFloat());
webatlas.connectTo(string, webatlass).setWeight(0.8f);
}
}

}
/*Node gephi = graph.createNode("0");
gephi
.setLabel("郝大通")
.getAttributeValues()
.addValue(attUrl, "3");

gephi.setPosition(p);
gephi.setColor(c);
gephi.setSize(nextFloat());
Node webatlas = graph.createNode("1");
webatlas
.setLabel("郝大通1")
.getAttributeValues()
.addValue(attUrl, "3");
webatlas.setPosition(p);
webatlas.setColor(c);
webatlas.setSize(nextFloat());
gephi.connectTo("0", webatlas).setWeight(0.8f);


Node webatlass = graph.createNode("2");
webatlass
.setLabel("郝大通2")
.getAttributeValues()
.addValue(attUrl, "4");
webatlass.setPosition(p);
webatlass.setColor(c);
webatlass.setSize(nextFloat());
gephi.connectTo("0", webatlass).setWeight(0.8f);

Node webatlasss = graph.createNode("3");
webatlasss
.setLabel("郝大通3")
.getAttributeValues()
.addValue(attUrl, "5");
webatlasss.setPosition(p);
webatlasss.setColor(c);
webatlasss.setSize(nextFloat());
gephi.connectTo("0", webatlasss).setWeight(3f);

Node webatlassss = graph.createNode("4");
webatlassss
.setLabel("郝大通4")
.getAttributeValues()
.addValue(attUrl, "6");
webatlassss.setPosition(p);
webatlassss.setColor(c);
webatlassss.setSize(nextFloat());
gephi.connectTo("0", webatlassss).setWeight(5f);*/

StaxGraphWriter graphWriter = new StaxGraphWriter();
Writer out;
try {
out = new FileWriter(file, false);
graphWriter.writeToStream(gexf, out, "UTF-8");

//System.out.println(file.getAbsolutePath());
} catch (IOException e) {
e.printStackTrace();
}
return "list";
}catch (UtilException e){
return INPUT;
}

/*ProjectController pc = Lookup.getDefault().lookup(ProjectController.class);
pc.newProject();
Workspace workspace = pc.getCurrentWorkspace();

//Generate a new random graph into a container
Container container = Lookup.getDefault().lookup(Container.Factory.class).newContainer();

GraphModel graphModel = Lookup.getDefault().lookup(GraphController.class).getGraphModel();
DirectedGraph graph = graphModel.getDirectedGraph();

Node n0 = graphModel.factory().newNode("n0");
n0.setLabel("n0");
Node n1 = graphModel.factory().newNode("n1");
n1.setLabel("n1");
Edge edge = graphModel.factory().newEdge(n0, n1, true);


graph.addNode(n0);
graph.addNode(n1);
graph.addEdge(edge);


for(int i = 0 ; i < 100; i++) {
Node ntmp = graphModel.factory().newNode("tmp" + i);
Edge edgetmp = graphModel.factory().newEdge(n0, ntmp, true);

graph.addNode(ntmp);
graph.addEdge(edgetmp);
}

System.out.println("Nodes: " + graph.getNodeCount());
System.out.println("Edges: " + graph.getEdgeCount());

//Layout for 15 seconds
AutoLayout autoLayout = new AutoLayout(20, TimeUnit.SECONDS);
autoLayout.setGraphModel(graphModel);
YifanHuLayout firstLayout = new YifanHuLayout(null, new StepDisplacement(1f));
ForceAtlasLayout secondLayout = new ForceAtlasLayout(null);
AutoLayout.DynamicProperty adjustBySizeProperty = AutoLayout.createDynamicProperty("forceAtlas.adjustSizes.name", Boolean.TRUE, 0.1f);//True after 10% of layout time
AutoLayout.DynamicProperty repulsionProperty = AutoLayout.createDynamicProperty("forceAtlas.repulsionStrength.name", new Double(500.), 0f);//500 for the complete period
autoLayout.addLayout(firstLayout, 0.9f);
autoLayout.addLayout(secondLayout, 0.1f, new AutoLayout.DynamicProperty[]{adjustBySizeProperty, repulsionProperty});
autoLayout.execute();

//Export pdf & gexf
ExportController ec = Lookup.getDefault().lookup(ExportController.class);
try {
String filePath=ServletActionContext.getServletContext().getRealPath("/")+"attached";
File pdfFile = new File(filePath+"/tmp/data.pdf");
File gexfFile = new File(filePath+"/tmp/data.gexf");

pdfFile.getParentFile().mkdirs();
gexfFile.getParentFile().mkdirs();
ec.exportFile(pdfFile);
ec.exportFile(gexfFile);
} catch (IOException ex) {
ex.printStackTrace();
}
*/
}

//降序排序
public static <K, V extends Comparable<? super V>> Map<K, V> sortByValueDescending(Map<K, V> map)
{
List<Map.Entry<K, V>> list = new LinkedList<Map.Entry<K, V>>(map.entrySet());
Collections.sort(list, new Comparator<Map.Entry<K, V>>()
{
@Override
public int compare(Map.Entry<K, V> o1, Map.Entry<K, V> o2)
{
int compare = (o1.getValue()).compareTo(o2.getValue());
return -compare;
}
});

Map<K, V> result = new LinkedHashMap<K, V>();
for (Map.Entry<K, V> entry : list) {
result.put(entry.getKey(), entry.getValue());
}
return result;
}

public String formatData(int total,int data) {
DecimalFormat df = new DecimalFormat("0.00");
return df.format((float) data*100/total);
}


/**
* 生成-500到500范围的浮点数
* */
public static float nextDouble() {
double min=-500;
double max=500;
return (float)(min + ((max - min) * new Random().nextDouble()));
}

/**
* 生成0到255范围的整数
* */
public static int nextInt() {
double min=0;
double max=255;
return (int) (min + ((max - min) * new Random().nextDouble()));
}


/**
* 生成0到50范围的浮点数
* */
public static float nextFloat() {
double min=0;
double max=50;
return (float)(min + ((max - min) * new Random().nextDouble()));
}

/**
* 获取map中第一个key值
*
* @param map 数据源
* @return
*/
private static String getKeyOrNull(Map<String, Object> map) {
String obj = null;
for (Entry<String, Object> entry : map.entrySet()) {
obj = entry.getKey();
if (obj != null) {
break;
}
}
return obj;
}

页面

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ include file="/common/taglibs.jsp" %>
<%
String contextpath = request.getContextPath();
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
<script src="${ctx}/modules/specialistCheck/assets/js/echarts.min.js"></script>
<script src="${ctx}/commonPage/js/jquery.min.js"></script>
<script src="${ctx}/modules/majorCrowd/assets/js/dataTool.min.js"></script>

</head>
<body style="overflow:auto;">
<div class="e-content clear nui-scroll">
<div class="e-wrap" >
<div class="e-title" style="color: black;" >专业群专业能力点汇总分析</div>
<div class="e-chart-wrap clear" >
<div class="fl" style="width: 100%;height:800px">
<div id="echart3" class="e-box" style="width: 100%;height:800px" >

</div>
</div>
</div>
</div>
</div>
<script >
var myChart = echarts.init(document.getElementById("echart3"));
myChart.showLoading();
$.get('${ctx}/attached/majorCrowdSkill'+'${userId}'+'.gexf', function (xml) {
myChart.hideLoading();

var graph = echarts.dataTool.gexf.parse(xml);
/* var categories = [];
for (var i = 0; i < graph.nodes.length; i++) {
categories[i] = {
name: '类目' + i
};
} */
graph.nodes.forEach(function (node) {
// node.itemStyle = null;
node.value = node.symbolSize;
node.symbolSize /= 1.5;
node.label = {
show: node.symbolSize > 30
};
node.category = node.attributes.modularity_class;
});
option = {
title: {
text: 'Les Miserables',
subtext: 'Default layout',
top: 'bottom',
left: 'right'
},
tooltip: {},
/* legend: [{
// selectedMode: 'single',
data: categories.map(function (a) {
return a.name;
})
}], */
animationDuration: 1500,
animationEasingUpdate: 'quinticInOut',
series : [
{
name: 'Les Miserables',
type: 'graph',
layout: 'none',
data: graph.nodes,
links: graph.links,
/* categories: categories, */
roam: true,
focusNodeAdjacency: true,
itemStyle: {
borderColor: '#fff',
borderWidth: 1,
shadowBlur: 10,
shadowColor: 'rgba(0, 0, 0, 0.3)'
},
label: {
position: 'right',
formatter: '{b}'
},
lineStyle: {
color: 'source',
curveness: 0.3
},
emphasis: {
lineStyle: {
width: 10
}
}
}
]
};

myChart.setOption(option,true);
}, 'xml');

<%-- $(function () {
var datas1=new Array();
var datas2=new Array();
$.get("<%=contextpath%>/industry/statThree.action",{"professionType":1,"id":"","professionCode":"${sysProfessionEntity.code}"},function(data){
if(data){
var temp=data.stat;
var trendData=temp.stat_trend;
if(temp){//不为空
if(trendData && trendData!="" && trendData.name.length>0 && trendData.trendValue.length>0 ){
var name=trendData.name;
var value=trendData.trendValue;
var sum=0;
for (var i = 0; i <name.length; i++) {
datas1.push(name[i]);
datas2.push(parseFloat(value[i]));
sum += parseFloat(value[i]);
}
var mean = sum / name.length;
$("#publishTextShow").empty();
$("#publishTextShow").append('<p>该${sysProfessionEntity.title }专业的岗位需求量显示数据如下:</p>');
$("#publishTextShow").append('<p>1.该专业日均需求量:'+parseInt(mean)+'个</p>');
$("#publishTextShow").append('<p>2.该专业日均最高需求量:'+eval("Math.max(" + value.toString() + ')')+'个</p>');
$("#publishTextShow").append('<p>3.该专业日均最低需求量:'+eval("Math.min(" + value.toString() + ')')+'个</p>');
var options = $.extend(true, {}, lineOption);
//options.xAxis.data = ["2019-06-24","2019-06-25","2019-06-26","2019-06-27","2019-06-28","2019-06-29","2019-06-30"];
//options.series[0].data = ["8927","14791","9967","1494","7554","3062","8372"];
options.xAxis.data = datas1;
options.series[0].data = datas2;
options.series[0].name = "岗位需求量";
echart3.setOption(options);
}
}
}
});
}); --%>

</script>

</body>

</html>

gexf文件

<?xml version='1.0' encoding='UTF-8'?>
<gexf xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http://www.gexf.net/1.2draft/viz" version="1.2">
<meta lastmodifieddate="2020-04-24">
<creator>Gephi.org</creator>
<description>A Web network</description>
</meta>
<graph defaultedgetype="undirected" idtype="string" mode="static">
<attributes class="node" mode="static">
<attribute id="modularity_class" title="Modularity Class" type="integer"/>
</attributes>
<nodes count="263">
<node id="6" label="汽车制造与装配技术">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="59" g="9" b="141"/>
<viz:position x="28.554688" y="-420.86362" z="0.0"/>
<viz:size value="150.0"/>
</node>
<node id="11349" label="机械制造与自动化">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="242" g="80" b="41"/>
<viz:position x="-132.9165" y="-387.39407" z="0.0"/>
<viz:size value="28.179281"/>
</node>
<node id="11433" label="机电一体化技术">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="210" g="73" b="244"/>
<viz:position x="-99.697105" y="-213.05223" z="0.0"/>
<viz:size value="43.32076"/>
</node>
<node id="11547" label="汽车制造与装配技术">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="164" g="57" b="6"/>
<viz:position x="-356.93503" y="-441.7718" z="0.0"/>
<viz:size value="14.506098"/>
</node>
<node id="1008610086" label="车身内饰">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="227.7923" y="159.85464" z="0.0"/>
<viz:size value="28.771536"/>
</node>
<node id="1008610087" label="超声波焊">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-214.69147" y="406.38538" z="0.0"/>
<viz:size value="4.8594365"/>
</node>
<node id="1008610088" label="机械加工">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-498.11966" y="-161.32874" z="0.0"/>
<viz:size value="0.5835714"/>
</node>
<node id="1008610089" label="变速箱">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="383.2764" y="280.14685" z="0.0"/>
<viz:size value="18.844576"/>
</node>
<node id="1008610090" label="汽车匹配">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-54.67621" y="425.84637" z="0.0"/>
<viz:size value="17.411915"/>
</node>
<node id="1008610091" label="弱磁控制">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-333.75577" y="240.29787" z="0.0"/>
<viz:size value="22.381767"/>
</node>
<node id="1008610092" label="C语言编程">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-95.09267" y="301.78827" z="0.0"/>
<viz:size value="41.054512"/>
</node>
<node id="1008610093" label="模具成型">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-172.64429" y="428.59296" z="0.0"/>
<viz:size value="27.16023"/>
</node>
<node id="1008610094" label="汽车诊断">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-439.57043" y="-31.861164" z="0.0"/>
<viz:size value="5.9383545"/>
</node>
<node id="1008610095" label="汽车传感器">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="443.78894" y="250.65164" z="0.0"/>
<viz:size value="26.103815"/>
</node>
<node id="1008610096" label="液压">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-66.03839" y="196.12257" z="0.0"/>
<viz:size value="2.814013"/>
</node>
<node id="1008610097" label="汽车电子控制技术">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="281.82864" y="289.85162" z="0.0"/>
<viz:size value="16.040329"/>
</node>
<node id="1008610098" label="底盘结构设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-192.8473" y="-104.387825" z="0.0"/>
<viz:size value="0.6110726"/>
</node>
<node id="1008610099" label="模具设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="381.28415" y="100.4099" z="0.0"/>
<viz:size value="21.59417"/>
</node>
<node id="1008610100" label="相位调制波形">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="482.45944" y="408.5578" z="0.0"/>
<viz:size value="31.588251"/>
</node>
<node id="1008610101" label="汽车造型设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="83.930115" y="370.99484" z="0.0"/>
<viz:size value="1.9560828"/>
</node>
<node id="1008610102" label="二氧化碳焊">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-298.03052" y="-232.58984" z="0.0"/>
<viz:size value="17.468277"/>
</node>
<node id="1008610103" label="汽车构造">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="457.6921" y="-265.1217" z="0.0"/>
<viz:size value="2.720533"/>
</node>
<node id="1008610104" label="文档撰写">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="62.64202" y="282.11606" z="0.0"/>
<viz:size value="33.26942"/>
</node>
<node id="1008610105" label="高分子材料">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="476.17288" y="162.6448" z="0.0"/>
<viz:size value="3.2297742"/>
</node>
<node id="1008610106" label="汽车结构">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-318.36038" y="8.198824" z="0.0"/>
<viz:size value="32.805027"/>
</node>
<node id="1008610107" label="电机控制技术">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-155.17548" y="73.477875" z="0.0"/>
<viz:size value="32.67698"/>
</node>
<node id="1008610108" label="零件工艺">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="26.7193" y="102.81847" z="0.0"/>
<viz:size value="47.97897"/>
</node>
<node id="1008610109" label="痕迹检验">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="161.71657" y="-416.2119" z="0.0"/>
<viz:size value="30.876728"/>
</node>
<node id="1008610110" label="新能源汽车动力系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="354.3164" y="-433.2636" z="0.0"/>
<viz:size value="0.048656724"/>
</node>
<node id="1008610111" label="电机驱动逆变器">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="175.07195" y="-130.3742" z="0.0"/>
<viz:size value="7.2878017"/>
</node>
<node id="1008610112" label="空气弹簧系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="349.89697" y="-464.61127" z="0.0"/>
<viz:size value="33.900215"/>
</node>
<node id="1008610113" label="物流自动化">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-77.39653" y="315.73468" z="0.0"/>
<viz:size value="16.328392"/>
</node>
<node id="1008610114" label="底盘开发">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-477.71475" y="41.171673" z="0.0"/>
<viz:size value="47.31369"/>
</node>
<node id="1008610115" label="FREESCALE单片机">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-375.07367" y="405.53452" z="0.0"/>
<viz:size value="46.4526"/>
</node>
<node id="1008610116" label="TS16949质量管理体系">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="480.87973" y="-9.389663" z="0.0"/>
<viz:size value="6.335404"/>
</node>
<node id="1008610117" label="饰件制造">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-99.99318" y="-319.1993" z="0.0"/>
<viz:size value="44.143356"/>
</node>
<node id="1008610118" label="燃油系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-394.64362" y="235.20633" z="0.0"/>
<viz:size value="5.493049"/>
</node>
<node id="1008610119" label="汽车灯具">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="420.5381" y="373.5956" z="0.0"/>
<viz:size value="35.1108"/>
</node>
<node id="1008610120" label="车辆底盘结构">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="264.07068" y="227.53" z="0.0"/>
<viz:size value="18.296637"/>
</node>
<node id="1008610121" label="车载电源">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="419.09982" y="-455.6874" z="0.0"/>
<viz:size value="20.421375"/>
</node>
<node id="1008610122" label="新能源汽车电器">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-171.83052" y="-430.67496" z="0.0"/>
<viz:size value="43.81534"/>
</node>
<node id="1008610123" label="动力学分析软件">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="297.39542" y="15.851259" z="0.0"/>
<viz:size value="21.815538"/>
</node>
<node id="1008610124" label="PLM系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="324.7086" y="349.82672" z="0.0"/>
<viz:size value="22.380047"/>
</node>
<node id="1008610125" label="充电模块控制">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-88.71924" y="402.04517" z="0.0"/>
<viz:size value="5.9233623"/>
</node>
<node id="1008610126" label="整车电气原理图">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-26.388218" y="-456.07413" z="0.0"/>
<viz:size value="4.5164924"/>
</node>
<node id="1008610127" label="3D设计软件">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-210.96928" y="-305.4534" z="0.0"/>
<viz:size value="37.204144"/>
</node>
<node id="1008610128" label="电力行业结构设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="183.67622" y="86.22652" z="0.0"/>
<viz:size value="29.69204"/>
</node>
<node id="1008610129" label="BOM编制">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-298.57996" y="-403.0842" z="0.0"/>
<viz:size value="35.236134"/>
</node>
<node id="1008610130" label="车辆喷漆">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-332.54434" y="65.235916" z="0.0"/>
<viz:size value="18.962591"/>
</node>
<node id="1008610131" label="内饰工艺">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-355.60242" y="-17.020067" z="0.0"/>
<viz:size value="33.472458"/>
</node>
<node id="1008610132" label="数控切割">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="0.6655154" y="-429.8786" z="0.0"/>
<viz:size value="34.24035"/>
</node>
<node id="1008610133" label="机械设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="299.716" y="418.22086" z="0.0"/>
<viz:size value="14.726479"/>
</node>
<node id="1008610134" label="汽车部品">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-127.04393" y="225.77065" z="0.0"/>
<viz:size value="44.39591"/>
</node>
<node id="1008610135" label="总线通讯知识">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="253.23251" y="165.72098" z="0.0"/>
<viz:size value="5.17881"/>
</node>
<node id="1008610136" label="汽车开发流程">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-474.8447" y="168.11205" z="0.0"/>
<viz:size value="8.859824"/>
</node>
<node id="1008610137" label="内外饰">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-197.59523" y="489.49185" z="0.0"/>
<viz:size value="48.809765"/>
</node>
<node id="1008610138" label="产品造型设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="172.88335" y="-105.681335" z="0.0"/>
<viz:size value="33.180996"/>
</node>
<node id="1008610139" label="发动机">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-67.047066" y="3.3322978" z="0.0"/>
<viz:size value="16.725924"/>
</node>
<node id="1008610140" label="汽车娱乐系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-53.45127" y="390.5403" z="0.0"/>
<viz:size value="42.32264"/>
</node>
<node id="1008610141" label="开车">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-380.04675" y="359.23566" z="0.0"/>
<viz:size value="29.946127"/>
</node>
<node id="1008610142" label="底盘电控系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-132.03615" y="82.57281" z="0.0"/>
<viz:size value="30.455036"/>
</node>
<node id="1008610143" label="汽车行业质量体系">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-381.03018" y="-194.123" z="0.0"/>
<viz:size value="19.12876"/>
</node>
<node id="1008610144" label="整车调试">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="118.05162" y="-433.26096" z="0.0"/>
<viz:size value="13.857668"/>
</node>
<node id="1008610145" label="汽车电子控制器">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-111.15234" y="-390.34708" z="0.0"/>
<viz:size value="40.23548"/>
</node>
<node id="1008610146" label="电动车">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="124.79914" y="23.941338" z="0.0"/>
<viz:size value="31.812346"/>
</node>
<node id="1008610147" label="弹性体">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-395.60037" y="-30.367643" z="0.0"/>
<viz:size value="4.521073"/>
</node>
<node id="1008610148" label="多媒体技术">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="338.92133" y="207.0229" z="0.0"/>
<viz:size value="29.052614"/>
</node>
<node id="1008610149" label="整车电气原理">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="150.46004" y="-217.28236" z="0.0"/>
<viz:size value="49.79324"/>
</node>
<node id="1008610150" label="模具结构">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="450.9571" y="287.1681" z="0.0"/>
<viz:size value="40.426067"/>
</node>
<node id="1008610151" label="车载硬件">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-245.23865" y="-88.69559" z="0.0"/>
<viz:size value="9.405549"/>
</node>
<node id="1008610152" label="汽车电缆制造">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="40.84458" y="-297.74274" z="0.0"/>
<viz:size value="19.996231"/>
</node>
<node id="1008610153" label="DFSS">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-345.75208" y="-197.83739" z="0.0"/>
<viz:size value="39.472874"/>
</node>
<node id="1008610154" label="CATIA">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-305.33615" y="477.9554" z="0.0"/>
<viz:size value="20.3118"/>
</node>
<node id="1008610155" label="内外饰件设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="40.166016" y="-300.11868" z="0.0"/>
<viz:size value="47.4394"/>
</node>
<node id="1008610156" label="内饰">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-491.6607" y="-402.00992" z="0.0"/>
<viz:size value="33.336643"/>
</node>
<node id="1008610157" label="汽车产品塑胶内外饰件工艺成本分析">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="102.68432" y="-439.67828" z="0.0"/>
<viz:size value="22.204039"/>
</node>
<node id="1008610158" label="悬架">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="305.66632" y="-68.43928" z="0.0"/>
<viz:size value="46.038834"/>
</node>
<node id="1008610159" label="应用框架">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-444.77325" y="111.78217" z="0.0"/>
<viz:size value="41.758835"/>
</node>
<node id="1008610160" label="摩擦焊">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="222.96962" y="-403.70905" z="0.0"/>
<viz:size value="42.45767"/>
</node>
<node id="1008610161" label="底盘类">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="77.44498" y="-428.9517" z="0.0"/>
<viz:size value="13.239263"/>
</node>
<node id="1008610162" label="电机的电磁理论">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-61.46604" y="181.07939" z="0.0"/>
<viz:size value="28.48656"/>
</node>
<node id="1008610163" label="GPS">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-406.9723" y="-91.71352" z="0.0"/>
<viz:size value="41.003567"/>
</node>
<node id="1008610164" label="车辆线束开发">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-269.13922" y="-484.08557" z="0.0"/>
<viz:size value="20.486517"/>
</node>
<node id="1008610165" label="工艺调试">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="221.47478" y="-129.00806" z="0.0"/>
<viz:size value="38.213623"/>
</node>
<node id="1008610166" label="汽车线束设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="313.89148" y="166.58214" z="0.0"/>
<viz:size value="29.002924"/>
</node>
<node id="1008610167" label="风窗洗涤系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-317.7472" y="-245.27615" z="0.0"/>
<viz:size value="19.95669"/>
</node>
<node id="1008610168" label="APQP">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="271.9703" y="23.998833" z="0.0"/>
<viz:size value="7.2541656"/>
</node>
<node id="1008610169" label="UG">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="357.90744" y="302.4302" z="0.0"/>
<viz:size value="39.63805"/>
</node>
<node id="1008610170" label="齿轴设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="435.88507" y="365.31213" z="0.0"/>
<viz:size value="4.469"/>
</node>
<node id="1008610171" label="装配设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-423.85858" y="270.21686" z="0.0"/>
<viz:size value="22.670595"/>
</node>
<node id="1008610172" label="数控机床">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="347.3103" y="-237.87529" z="0.0"/>
<viz:size value="26.729605"/>
</node>
<node id="1008610173" label="ISO14001">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-293.5594" y="462.58063" z="0.0"/>
<viz:size value="37.683075"/>
</node>
<node id="1008610174" label="车门锁系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="44.19418" y="-146.40129" z="0.0"/>
<viz:size value="30.33896"/>
</node>
<node id="1008610175" label="耐压测试仪">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-61.601547" y="117.62478" z="0.0"/>
<viz:size value="13.781485"/>
</node>
<node id="1008610176" label="显示器">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="18.041698" y="-448.66827" z="0.0"/>
<viz:size value="6.06628"/>
</node>
<node id="1008610177" label="结构设计工具">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-176.8499" y="-496.76236" z="0.0"/>
<viz:size value="38.02497"/>
</node>
<node id="1008610178" label="汽车钣金">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="362.04672" y="-467.56723" z="0.0"/>
<viz:size value="28.512897"/>
</node>
<node id="1008610179" label="万用电表">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="171.44264" y="-378.9716" z="0.0"/>
<viz:size value="47.188225"/>
</node>
<node id="1008610180" label="电机结构">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-149.22952" y="-454.7779" z="0.0"/>
<viz:size value="12.56881"/>
</node>
<node id="1008610181" label="热板焊">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-317.64648" y="369.14392" z="0.0"/>
<viz:size value="44.155037"/>
</node>
<node id="1008610182" label="电机结构设计工具">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-36.44656" y="403.5284" z="0.0"/>
<viz:size value="10.391913"/>
</node>
<node id="1008610183" label="SPI总线">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="381.94366" y="-305.48288" z="0.0"/>
<viz:size value="34.979664"/>
</node>
<node id="1008610184" label="汽车涂装">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="332.31787" y="-8.1220875" z="0.0"/>
<viz:size value="18.317062"/>
</node>
<node id="1008610185" label="电机控制原理">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-418.21957" y="467.6707" z="0.0"/>
<viz:size value="26.863615"/>
</node>
<node id="1008610186" label="车辆故障分析">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="479.64343" y="-222.37115" z="0.0"/>
<viz:size value="1.1860931"/>
</node>
<node id="1008610187" label="汽车维修">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="114.202866" y="483.86014" z="0.0"/>
<viz:size value="13.668238"/>
</node>
<node id="1008610188" label="整车试制">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-37.177807" y="-335.9827" z="0.0"/>
<viz:size value="23.65519"/>
</node>
<node id="1008610189" label="铸造工艺">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-368.24612" y="-197.52213" z="0.0"/>
<viz:size value="23.720957"/>
</node>
<node id="1008610190" label="汽车维修经验">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-16.28327" y="329.88605" z="0.0"/>
<viz:size value="46.69425"/>
</node>
<node id="1008610191" label="电动汽车充电">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-413.00192" y="-48.153187" z="0.0"/>
<viz:size value="39.258316"/>
</node>
<node id="1008610192" label="动力电池性能要求">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-73.29359" y="115.71294" z="0.0"/>
<viz:size value="18.508894"/>
</node>
<node id="1008610193" label="产品原型设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="280.49634" y="-173.2122" z="0.0"/>
<viz:size value="16.866491"/>
</node>
<node id="1008610194" label="车辆控制单元的开发">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-156.48718" y="-60.896652" z="0.0"/>
<viz:size value="16.124228"/>
</node>
<node id="1008610195" label="质量控制方法">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-299.96805" y="-296.92828" z="0.0"/>
<viz:size value="5.6822944"/>
</node>
<node id="1008610196" label="弧焊">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-123.35005" y="-181.25467" z="0.0"/>
<viz:size value="41.086224"/>
</node>
<node id="1008610197" label="技术方案">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="125.3946" y="-470.07376" z="0.0"/>
<viz:size value="10.287925"/>
</node>
<node id="1008610198" label="开关电源设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-364.92053" y="-188.17696" z="0.0"/>
<viz:size value="40.813076"/>
</node>
<node id="1008610199" label="铝热交换器生产工艺流程">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="337.1719" y="-351.49817" z="0.0"/>
<viz:size value="5.1061335"/>
</node>
<node id="1008610200" label="冷却系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-359.5049" y="-68.314415" z="0.0"/>
<viz:size value="1.1055549"/>
</node>
<node id="1008610201" label="测试方案">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-209.23131" y="-296.25366" z="0.0"/>
<viz:size value="49.176422"/>
</node>
<node id="1008610202" label="主动减振器系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-31.68274" y="-104.95021" z="0.0"/>
<viz:size value="49.56285"/>
</node>
<node id="1008610203" label="ANSYS">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="129.90056" y="285.00107" z="0.0"/>
<viz:size value="16.414118"/>
</node>
<node id="1008610204" label="车辆改装">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-191.08295" y="347.85645" z="0.0"/>
<viz:size value="3.8504744"/>
</node>
<node id="1008610205" label="汽车零部件设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-355.8035" y="-309.79797" z="0.0"/>
<viz:size value="9.107875"/>
</node>
<node id="1008610206" label="燃烧器">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="306.42523" y="-143.69475" z="0.0"/>
<viz:size value="21.843351"/>
</node>
<node id="1008610207" label="空气悬架系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="7.2066245" y="328.5789" z="0.0"/>
<viz:size value="41.39216"/>
</node>
<node id="1008610208" label="汽车电子电器系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-63.882706" y="-144.34697" z="0.0"/>
<viz:size value="20.41076"/>
</node>
<node id="1008610209" label="汽车电控系统控制原理">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-142.81927" y="-273.294" z="0.0"/>
<viz:size value="46.682735"/>
</node>
<node id="1008610210" label="运动控制">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="45.474937" y="-331.11957" z="0.0"/>
<viz:size value="42.040844"/>
</node>
<node id="1008610211" label="树脂部品">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-338.3191" y="70.36331" z="0.0"/>
<viz:size value="8.547576"/>
</node>
<node id="1008610212" label="零部件结构">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-248.05827" y="48.661236" z="0.0"/>
<viz:size value="9.289466"/>
</node>
<node id="1008610213" label="行车记录仪">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-399.32254" y="194.55785" z="0.0"/>
<viz:size value="6.7507114"/>
</node>
<node id="1008610214" label="主被动安全系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="177.82512" y="-409.68134" z="0.0"/>
<viz:size value="19.712978"/>
</node>
<node id="1008610215" label="车辆检测维修">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-485.3889" y="285.4562" z="0.0"/>
<viz:size value="2.5313926"/>
</node>
<node id="1008610216" label="车架">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-499.21655" y="387.26712" z="0.0"/>
<viz:size value="7.7008433"/>
</node>
<node id="1008610217" label="底盘设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="42.07684" y="-88.148254" z="0.0"/>
<viz:size value="35.29638"/>
</node>
<node id="1008610218" label="开发流程">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="82.01223" y="-159.48157" z="0.0"/>
<viz:size value="1.3010244"/>
</node>
<node id="1008610219" label="信息安全技术">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-370.7346" y="34.039936" z="0.0"/>
<viz:size value="40.219296"/>
</node>
<node id="1008610220" label="常规驱动">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="234.82988" y="-439.7597" z="0.0"/>
<viz:size value="0.45437217"/>
</node>
<node id="1008610221" label="PROCAST">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="97.12539" y="-355.6896" z="0.0"/>
<viz:size value="12.103198"/>
</node>
<node id="1008610222" label="电机产品的总体设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-97.515755" y="209.46745" z="0.0"/>
<viz:size value="5.536822"/>
</node>
<node id="1008610223" label="变速箱装配">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="341.8273" y="-139.51653" z="0.0"/>
<viz:size value="28.48813"/>
</node>
<node id="1008610224" label="汽车冲压">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-459.55252" y="195.4645" z="0.0"/>
<viz:size value="14.130623"/>
</node>
<node id="1008610225" label="汽修">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-175.31686" y="-264.77118" z="0.0"/>
<viz:size value="11.793299"/>
</node>
<node id="1008610226" label="整车生产">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-247.04231" y="255.71565" z="0.0"/>
<viz:size value="16.45033"/>
</node>
<node id="1008610227" label="齿轮设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="425.67725" y="243.93599" z="0.0"/>
<viz:size value="41.96506"/>
</node>
<node id="1008610228" label="电子电气系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-334.45047" y="-189.88744" z="0.0"/>
<viz:size value="12.192792"/>
</node>
<node id="1008610229" label="底盘装配工艺">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="363.67007" y="55.782284" z="0.0"/>
<viz:size value="37.29532"/>
</node>
<node id="1008610230" label="粗糙度仪">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="250.98752" y="-202.59967" z="0.0"/>
<viz:size value="31.534622"/>
</node>
<node id="1008610231" label="底盘布置">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="380.72955" y="305.19247" z="0.0"/>
<viz:size value="36.376156"/>
</node>
<node id="1008610232" label="芯片性能指标">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-130.6453" y="-200.83081" z="0.0"/>
<viz:size value="16.884754"/>
</node>
<node id="1008610233" label="整车电子架构">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="443.7723" y="361.30386" z="0.0"/>
<viz:size value="21.948086"/>
</node>
<node id="1008610234" label="HYPERWORKS">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-440.4529" y="324.629" z="0.0"/>
<viz:size value="32.048916"/>
</node>
<node id="1008610235" label="车身设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="59.567074" y="-429.46207" z="0.0"/>
<viz:size value="29.448744"/>
</node>
<node id="1008610236" label="汽车车身">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="282.8593" y="-489.53998" z="0.0"/>
<viz:size value="38.663136"/>
</node>
<node id="1008610237" label="设计工装夹具">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="171.09055" y="-240.14275" z="0.0"/>
<viz:size value="32.593838"/>
</node>
<node id="1008610238" label="汽车产品工程">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-494.4309" y="-140.11739" z="0.0"/>
<viz:size value="26.136692"/>
</node>
<node id="1008610239" label="整车电气">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="458.59592" y="-352.0526" z="0.0"/>
<viz:size value="26.121874"/>
</node>
<node id="1008610240" label="自动控制原理">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-464.7228" y="-141.05571" z="0.0"/>
<viz:size value="31.170677"/>
</node>
<node id="1008610241" label="新能源电池装配">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="316.88937" y="-12.974638" z="0.0"/>
<viz:size value="34.63526"/>
</node>
<node id="1008610242" label="汽车主机厂涂装设备">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="339.77164" y="-387.34195" z="0.0"/>
<viz:size value="32.1524"/>
</node>
<node id="1008610243" label="底盘控制系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-23.610292" y="-159.95003" z="0.0"/>
<viz:size value="33.56037"/>
</node>
<node id="1008610244" label="整车控制策路原理">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="389.63345" y="469.07248" z="0.0"/>
<viz:size value="38.165707"/>
</node>
<node id="1008610245" label="汽车制造四大工艺">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="322.1398" y="308.67548" z="0.0"/>
<viz:size value="38.92773"/>
</node>
<node id="1008610246" label="离散闭环控制">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="142.82591" y="24.605509" z="0.0"/>
<viz:size value="6.328254"/>
</node>
<node id="1008610247" label="CREO">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-193.98074" y="-279.48248" z="0.0"/>
<viz:size value="17.048855"/>
</node>
<node id="1008610248" label="ENGINEER">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="130.16695" y="400.9871" z="0.0"/>
<viz:size value="8.928781"/>
</node>
<node id="1008610249" label="电力系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="198.36365" y="-339.86246" z="0.0"/>
<viz:size value="14.149993"/>
</node>
<node id="1008610250" label="整车电器原理图">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-362.48605" y="354.243" z="0.0"/>
<viz:size value="32.389896"/>
</node>
<node id="1008610251" label="ABACUS">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-320.9836" y="-89.070496" z="0.0"/>
<viz:size value="12.465865"/>
</node>
<node id="1008610252" label="整车结构">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-176.40219" y="213.30945" z="0.0"/>
<viz:size value="0.21094714"/>
</node>
<node id="1008610253" label="汽车电气系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-295.68124" y="112.744545" z="0.0"/>
<viz:size value="22.747908"/>
</node>
<node id="1008610254" label="制动系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="142.74802" y="271.34598" z="0.0"/>
<viz:size value="38.41554"/>
</node>
<node id="1008610255" label="整车装配">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="48.840023" y="113.1896" z="0.0"/>
<viz:size value="18.894814"/>
</node>
<node id="1008610256" label="约束系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="81.956215" y="-479.27048" z="0.0"/>
<viz:size value="18.05168"/>
</node>
<node id="1008610257" label="工业设计专用油泥">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-183.97983" y="232.49623" z="0.0"/>
<viz:size value="16.510853"/>
</node>
<node id="1008610258" label="整车电气系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="307.68182" y="112.34901" z="0.0"/>
<viz:size value="9.903341"/>
</node>
<node id="1008610259" label="质量试验">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-89.15222" y="86.48443" z="0.0"/>
<viz:size value="44.28961"/>
</node>
<node id="1008610260" label="电机驱动">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="409.35217" y="-83.8396" z="0.0"/>
<viz:size value="14.378536"/>
</node>
<node id="1008610261" label="车身点焊">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="386.6512" y="-44.13149" z="0.0"/>
<viz:size value="40.20087"/>
</node>
<node id="1008610262" label="新能源汽车构造原理">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="9.896215" y="189.93158" z="0.0"/>
<viz:size value="23.394041"/>
</node>
<node id="1008610263" label="新能源电机装配">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="34.18098" y="325.05588" z="0.0"/>
<viz:size value="29.410053"/>
</node>
<node id="1008610264" label="发动机线束原理">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-487.43777" y="79.97963" z="0.0"/>
<viz:size value="48.43771"/>
</node>
<node id="1008610265" label="电磁性能分析仿真">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="426.0654" y="201.89261" z="0.0"/>
<viz:size value="25.656805"/>
</node>
<node id="1008610266" label="2D图纸">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-273.20636" y="300.5906" z="0.0"/>
<viz:size value="15.518117"/>
</node>
<node id="1008610267" label="驱动电机控制器">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="233.73254" y="-295.2124" z="0.0"/>
<viz:size value="20.764406"/>
</node>
<node id="1008610268" label="零件评估">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-196.24481" y="-183.91179" z="0.0"/>
<viz:size value="47.853313"/>
</node>
<node id="1008610269" label="单片机开发">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-358.081" y="-300.9159" z="0.0"/>
<viz:size value="18.01133"/>
</node>
<node id="1008610270" label="燃料电池系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-440.77383" y="252.52097" z="0.0"/>
<viz:size value="35.803387"/>
</node>
<node id="1008610271" label="塑料尾门">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="8.239151" y="472.32788" z="0.0"/>
<viz:size value="7.585465"/>
</node>
<node id="1008610272" label="门护板">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="353.56595" y="426.62405" z="0.0"/>
<viz:size value="45.65329"/>
</node>
<node id="1008610273" label="PROE">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="243.78326" y="-472.52936" z="0.0"/>
<viz:size value="3.5411248"/>
</node>
<node id="1008610274" label="整车布置设计开发">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-483.30676" y="-190.48053" z="0.0"/>
<viz:size value="13.3366995"/>
</node>
<node id="1008610275" label="整车拼装">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-261.81863" y="-170.55408" z="0.0"/>
<viz:size value="12.842388"/>
</node>
<node id="1008610276" label="磁路分析方法">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="358.2678" y="383.9269" z="0.0"/>
<viz:size value="18.63378"/>
</node>
<node id="1008610277" label="FMEA">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="208.32094" y="-266.61337" z="0.0"/>
<viz:size value="27.97979"/>
</node>
<node id="1008610278" label="车载通信与诊断">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-285.6948" y="388.8758" z="0.0"/>
<viz:size value="31.936958"/>
</node>
<node id="1008610279" label="智能驾驶系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-94.27458" y="-484.82312" z="0.0"/>
<viz:size value="37.38379"/>
</node>
<node id="1008610280" label="润滑油">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-313.06897" y="82.48496" z="0.0"/>
<viz:size value="2.5723855"/>
</node>
<node id="1008610281" label="测试分析软件">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-251.06529" y="305.026" z="0.0"/>
<viz:size value="0.5246089"/>
</node>
<node id="1008610282" label="保险杠">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="152.62" y="-59.694157" z="0.0"/>
<viz:size value="22.112814"/>
</node>
<node id="1008610283" label="汽车内饰产品设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="317.38477" y="224.78519" z="0.0"/>
<viz:size value="3.4905448"/>
</node>
<node id="1008610284" label="非标自动化">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="278.02087" y="-95.40222" z="0.0"/>
<viz:size value="13.673484"/>
</node>
<node id="1008610285" label="交流异步电机原理">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="367.04712" y="-147.60368" z="0.0"/>
<viz:size value="0.8988818"/>
</node>
<node id="1008610286" label="汽车电驱控制系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="408.2387" y="-291.57547" z="0.0"/>
<viz:size value="23.22167"/>
</node>
<node id="1008610287" label="新能源电机">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="295.4558" y="-446.7889" z="0.0"/>
<viz:size value="25.928171"/>
</node>
<node id="1008610288" label="数控编程">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-194.18192" y="-77.23662" z="0.0"/>
<viz:size value="47.983597"/>
</node>
<node id="1008610289" label="空调热管理">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-484.14996" y="368.2594" z="0.0"/>
<viz:size value="41.586475"/>
</node>
<node id="1008610290" label="车身冲压">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-56.730885" y="-202.77005" z="0.0"/>
<viz:size value="20.26277"/>
</node>
<node id="1008610291" label="底盘工艺">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-180.2959" y="231.94608" z="0.0"/>
<viz:size value="24.081036"/>
</node>
<node id="1008610292" label="电机控制软件">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-165.27048" y="436.4906" z="0.0"/>
<viz:size value="43.00534"/>
</node>
<node id="1008610293" label="阻抗设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-261.85968" y="21.315191" z="0.0"/>
<viz:size value="19.907648"/>
</node>
<node id="1008610294" label="铝合金压铸">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-152.7178" y="-355.5063" z="0.0"/>
<viz:size value="37.375507"/>
</node>
<node id="1008610295" label="整车电子电器架构">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="59.604942" y="114.30477" z="0.0"/>
<viz:size value="48.31157"/>
</node>
<node id="1008610296" label="充电机">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-404.31653" y="36.94189" z="0.0"/>
<viz:size value="40.076107"/>
</node>
<node id="1008610297" label="隔膜">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="446.4426" y="-406.58707" z="0.0"/>
<viz:size value="27.853567"/>
</node>
<node id="1008610298" label="低压电气控制系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-129.89673" y="-393.55875" z="0.0"/>
<viz:size value="25.00919"/>
</node>
<node id="1008610299" label="电机分析软件">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-309.5343" y="-166.60545" z="0.0"/>
<viz:size value="44.532825"/>
</node>
<node id="1008610300" label="气路图">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="38.367413" y="382.74158" z="0.0"/>
<viz:size value="18.596306"/>
</node>
<node id="1008610301" label="汽车装配技术标准">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="54.131447" y="106.08131" z="0.0"/>
<viz:size value="4.4503255"/>
</node>
<node id="1008610302" label="整车碰撞">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-67.31192" y="-328.9286" z="0.0"/>
<viz:size value="2.0225422"/>
</node>
<node id="1008610303" label="CAD">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="239.1149" y="-140.98515" z="0.0"/>
<viz:size value="9.444575"/>
</node>
<node id="1008610304" label="后视镜">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-238.1536" y="2.1881251" z="0.0"/>
<viz:size value="14.506375"/>
</node>
<node id="1008610305" label="底盘系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-16.341124" y="-348.58536" z="0.0"/>
<viz:size value="15.930355"/>
</node>
<node id="1008610306" label="驾驶">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-380.55716" y="153.1028" z="0.0"/>
<viz:size value="21.942192"/>
</node>
<node id="1008610307" label="试制验证">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-63.870823" y="450.45255" z="0.0"/>
<viz:size value="41.592228"/>
</node>
<node id="1008610308" label="动力系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="397.85858" y="232.16232" z="0.0"/>
<viz:size value="47.698853"/>
</node>
<node id="1008610309" label="汽车零部件开发">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-16.53147" y="-342.36423" z="0.0"/>
<viz:size value="0.7426408"/>
</node>
<node id="1008610310" label="驱动轴">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-21.583677" y="17.480318" z="0.0"/>
<viz:size value="36.66648"/>
</node>
<node id="1008610311" label="电驱动系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-435.0743" y="177.47159" z="0.0"/>
<viz:size value="19.360498"/>
</node>
<node id="1008610312" label="电机驱动软件">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-165.98314" y="118.42755" z="0.0"/>
<viz:size value="27.109997"/>
</node>
<node id="1008610313" label="汽车内饰设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="433.13538" y="-161.2824" z="0.0"/>
<viz:size value="0.6031145"/>
</node>
<node id="1008610314" label="流体分析软件">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="486.5523" y="-128.32959" z="0.0"/>
<viz:size value="32.770447"/>
</node>
<node id="1008610315" label="动力总成">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-271.93225" y="403.37598" z="0.0"/>
<viz:size value="22.731432"/>
</node>
<node id="1008610316" label="电机电磁设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-413.89896" y="-145.14548" z="0.0"/>
<viz:size value="7.084552"/>
</node>
<node id="1008610317" label="动力底盘">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-457.77463" y="-245.06284" z="0.0"/>
<viz:size value="13.148203"/>
</node>
<node id="1008610318" label="储能系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="408.1567" y="-183.77702" z="0.0"/>
<viz:size value="37.78339"/>
</node>
<node id="1008610319" label="ERP系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-207.2974" y="-461.36942" z="0.0"/>
<viz:size value="23.90641"/>
</node>
<node id="1008610320" label="液压气动">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="15.488725" y="-10.933877" z="0.0"/>
<viz:size value="36.260498"/>
</node>
<node id="1008610321" label="车灯设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-389.73477" y="318.93442" z="0.0"/>
<viz:size value="14.76411"/>
</node>
<node id="1008610322" label="发动机装配">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="307.37833" y="-42.5488" z="0.0"/>
<viz:size value="40.148655"/>
</node>
<node id="1008610323" label="数值传热学">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="457.7024" y="284.92044" z="0.0"/>
<viz:size value="37.813274"/>
</node>
<node id="1008610324" label="市场分析">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-469.62643" y="72.65515" z="0.0"/>
<viz:size value="32.220234"/>
</node>
<node id="1008610325" label="离合器设计">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-271.50406" y="305.78036" z="0.0"/>
<viz:size value="24.70027"/>
</node>
<node id="1008610326" label="SOLIDWORKS">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="203.05692" y="-335.53998" z="0.0"/>
<viz:size value="21.880817"/>
</node>
<node id="1008610327" label="AUTOCAD">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="147.7078" y="152.06471" z="0.0"/>
<viz:size value="34.571945"/>
</node>
<node id="1008610328" label="汽车零部件注塑">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="410.38376" y="-28.556166" z="0.0"/>
<viz:size value="38.692467"/>
</node>
<node id="1008610329" label="刹车系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="169.30151" y="449.1683" z="0.0"/>
<viz:size value="18.07279"/>
</node>
<node id="1008610330" label="汽车转向系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="171.00111" y="368.11694" z="0.0"/>
<viz:size value="5.269729"/>
</node>
<node id="1008610331" label="变速箱标定">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-93.518524" y="-478.6288" z="0.0"/>
<viz:size value="30.949457"/>
</node>
<node id="1008610332" label="汽车电控系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-259.23923" y="309.93066" z="0.0"/>
<viz:size value="6.25609"/>
</node>
<node id="1008610333" label="驱动轴总成">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-176.48569" y="200.35034" z="0.0"/>
<viz:size value="28.98069"/>
</node>
<node id="1008610334" label="软件开发生命周期">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-124.66537" y="203.02289" z="0.0"/>
<viz:size value="3.2158492"/>
</node>
<node id="1008610335" label="汽车GPS安装">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="284.4646" y="304.83072" z="0.0"/>
<viz:size value="14.5971"/>
</node>
<node id="1008610336" label="汽车内外饰系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="86.69163" y="344.3957" z="0.0"/>
<viz:size value="49.697876"/>
</node>
<node id="1008610337" label="传动系统">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-438.1151" y="-84.53988" z="0.0"/>
<viz:size value="15.72951"/>
</node>
<node id="1008610338" label="加油口盖模块">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-3.422328" y="97.52702" z="0.0"/>
<viz:size value="44.07414"/>
</node>
<node id="1008610339" label="底盘结构">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="395.1994" y="399.4495" z="0.0"/>
<viz:size value="19.797066"/>
</node>
<node id="1008610340" label="整车布置">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-224.32462" y="-427.73804" z="0.0"/>
<viz:size value="37.2929"/>
</node>
<node id="1008610341" label="新能源汽车构造">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="212.00952" y="494.46738" z="0.0"/>
<viz:size value="16.582167"/>
</node>
<node id="1008610342" label="整车检验">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="-66.66489" y="323.80136" z="0.0"/>
<viz:size value="2.0624378"/>
</node>
<node id="1008610343" label="底盘电控">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="111" g="111" b="231"/>
<viz:position x="257.90723" y="344.33585" z="0.0"/>
<viz:size value="18.560661"/>
</node>
<node id="11548" label="汽车检测与维修技术">
<attvalues>
<attvalue for="modularity_class" value="6"/>
</attvalues>
<viz:color r="190" g="143" b="205"/>
<viz:position x="116.18593" y="117.307014" z="0.0"/>
<viz:size value="14.617177"/>
</node>
</nodes>
<edges count="262">
<edge id="6" source="6" target="11349" type="undirected" weight="3.0"/>
<edge id="6" source="6" target="11433" type="undirected" weight="3.0"/>
<edge id="6" source="6" target="11547" type="undirected" weight="3.0"/>
<edge id="6" source="6" target="11548" type="undirected" weight="3.0"/>
<edge id="11547" source="11547" target="1008610086" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610087" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610088" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610089" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610090" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610091" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610092" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610093" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610094" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610095" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610096" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610097" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610098" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610099" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610100" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610101" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610102" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610103" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610104" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610105" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610106" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610107" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610108" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610109" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610110" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610111" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610112" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610113" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610114" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610115" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610116" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610117" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610118" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610119" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610120" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610121" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610122" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610123" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610124" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610125" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610126" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610127" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610128" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610129" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610130" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610131" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610132" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610133" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610134" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610135" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610136" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610137" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610138" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610139" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610140" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610141" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610142" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610143" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610144" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610145" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610146" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610147" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610148" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610149" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610150" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610151" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610152" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610153" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610154" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610155" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610156" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610157" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610158" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610159" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610160" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610161" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610162" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610163" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610164" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610165" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610166" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610167" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610168" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610169" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610170" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610171" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610172" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610173" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610174" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610175" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610176" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610177" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610178" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610179" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610180" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610181" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610182" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610183" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610184" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610185" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610186" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610187" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610188" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610189" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610190" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610191" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610192" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610193" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610194" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610195" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610196" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610197" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610198" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610199" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610200" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610201" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610202" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610203" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610204" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610205" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610206" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610207" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610208" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610209" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610210" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610211" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610212" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610213" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610214" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610215" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610216" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610217" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610218" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610219" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610220" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610221" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610222" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610223" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610224" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610225" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610226" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610227" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610228" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610229" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610230" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610231" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610232" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610233" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610234" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610235" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610236" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610237" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610238" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610239" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610240" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610241" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610242" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610243" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610244" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610245" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610246" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610247" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610248" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610249" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610250" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610251" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610252" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610253" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610254" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610255" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610256" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610257" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610258" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610259" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610260" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610261" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610262" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610263" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610264" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610265" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610266" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610267" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610268" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610269" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610270" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610271" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610272" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610273" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610274" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610275" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610276" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610277" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610278" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610279" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610280" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610281" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610282" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610283" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610284" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610285" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610286" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610287" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610288" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610289" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610290" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610291" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610292" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610293" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610294" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610295" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610296" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610297" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610298" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610299" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610300" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610301" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610302" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610303" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610304" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610305" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610306" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610307" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610308" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610309" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610310" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610311" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610312" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610313" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610314" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610315" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610316" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610317" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610318" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610319" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610320" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610321" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610322" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610323" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610324" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610325" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610326" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610327" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610328" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610329" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610330" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610331" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610332" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610333" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610334" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610335" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610336" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610337" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610338" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610339" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610340" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610341" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610342" type="undirected" weight="0.8"/>
<edge id="11547" source="11547" target="1008610343" type="undirected" weight="0.8"/>
</edges>
</graph>
</gexf>

参考

https://cloud.tencent.com/developer/article/1482983

猜你喜欢

转载自www.cnblogs.com/heracles-Mercury/p/12769163.html